From d86894653716994dcab5086f3ac7657e61aee639 Mon Sep 17 00:00:00 2001 From: Erik Date: Fri, 22 May 2026 11:58:05 +0200 Subject: [PATCH] =?UTF-8?q?ship(phys):=20A6.P3=20slice=202=20=E2=80=94=20L?= =?UTF-8?q?622=20seed=20investigation=20+=20#98=20filed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Slice 2 v1 (`892019b`) attempted to close issue #96 by removing the PhysicsEngine.cs L622 per-tick CP seed. v1 build/test green, CP-write count dropped 91% in scen3 re-capture, BUT user happy-test surfaced a regression: BSP step_up at the last step of stairs failed because sub-step 1's AdjustOffset had no ContactPlane to compute the lift direction. Slice 2 v2 (`f8d669b`) reverted the seed removal + added a no-op-if- unchanged guard inside CollisionInfo.SetContactPlane. The guard early-returns when called with values matching current ci state. Outcome: - #96 PARTIALLY ADDRESSED, scope updated in ISSUES.md to "accepted as documented retail divergence." The seed is load-bearing for step_up; closing #96 fully would require deeper refactor (AdjustOffset fallback to body.ContactPlane). Guard is benign improvement. - Slice 2 v2 verification capture (scen3_inn_2nd_floor_slice2v2/ acdream.log) committed as evidence — 226,464 cp-writes from L624 seed confirms guard doesn't trigger for fresh-ci-per-tick pattern. - Slice 2 v1 verification capture (scen3_inn_2nd_floor_slice2/ acdream.log) also committed — confirms v1 actually reduced cp-writes (2,690 total) but the step_up regression made it unshippable. NEW M1.5 BLOCKER FILED — issue #98: cellar ascent stuck at last step. Evidence in slice2v2 capture's cell-transit chain: 0xA9B4014B → 0xA9B4014A → 0xA9B4013F → 0xA9B4014A → 0xA9B4014B → ... (Z stable ~96.4; CellId ping-pongs every tick) This is Finding 3 family (cell-resolver hysteresis missing) — same root cause as #90 workaround + scen4 sling-out. Retail oracle: CObjCell::find_cell_list Position-variant at acclient_2013_pseudo_c.txt:308742-308783. NEXT — A6.P3 slice 3: - Port retail's cell-array hysteresis into ResolveCellId + CheckBuildingTransit. - Closes #98 (cellar-up), possibly #97 (phantom collisions same instability family), enables #90 workaround removal. Documents updated: - ISSUES.md — #96 scope updated, #98 filed - docs/plans/2026-04-11-roadmap.md — A6.P3 slice 2 marked SHIPPED, slice 3 scope added - CLAUDE.md — Currently-working-toward block updated to slice 3 Test suite: 1148 pass + 8 pre-existing fail (baseline maintained). Co-Authored-By: Claude Opus 4.7 (1M context) --- CLAUDE.md | 40 +- docs/ISSUES.md | 74 +- docs/plans/2026-04-11-roadmap.md | 38 +- .../scen3_inn_2nd_floor_slice2/acdream.log | 22193 ++ .../scen3_inn_2nd_floor_slice2v2/acdream.log | 257668 +++++++++++++++ 5 files changed, 279969 insertions(+), 44 deletions(-) create mode 100644 docs/research/2026-05-21-a6-captures/scen3_inn_2nd_floor_slice2/acdream.log create mode 100644 docs/research/2026-05-21-a6-captures/scen3_inn_2nd_floor_slice2v2/acdream.log diff --git a/CLAUDE.md b/CLAUDE.md index 0d4adb0..16b4624 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -727,28 +727,34 @@ render identically to pre-O. Spec: **Currently working toward: M1.5 — Indoor world feels right** (resumed from 2026-05-20 baseline after Phase O ship). **A6.P1 + A6.P2 + A6.P3 -slice 1 SHIPPED 2026-05-21** (this session). Slice 1's strip-synthesis -+ Mechanism B (LKCP restore) fix unblocked stairs + cellar descent in -acdream (user happy-test confirmed walking up/down stairs and into -cellar) — confirms A6.P2's hypothesis that Finding 1 (dispatcher -frequency mismatch) was a secondary effect of Finding 2 (CP-write -blowup). Current A6 phase: **A6.P3 slice 2 — gate L622 per-tick CP -seed (issue #96)**. Slice 2 closes the remaining 99.3% of post-fix CP -writes that come from the body-CP seed at -`PhysicsEngine.ResolveWithTransition:622` (retail equivalent fires zero -calls). After slice 2, re-test phantom collisions + occasional -fall-through on 2nd floor (issue #97, hypothesized side-effect of #96). +slice 1 SHIPPED 2026-05-21.** **A6.P3 slice 2 v2 SHIPPED 2026-05-22** +(commit `f8d669b`): tried removing the L622 per-tick CP seed +(`892019b` v1) but it broke BSP step_up at the last step of stairs; +reverted + added a benign no-op-if-unchanged guard inside +`CollisionInfo.SetContactPlane`. Slice 2 outcome: **#96 partially +addressed — accepted as documented retail divergence** (the per-tick +seed is load-bearing for `AdjustOffset` slope-projection on sub-step 1 +which BSP step_up depends on; matching retail would require deeper +refactor of AdjustOffset). Slice 2 verification surfaced a NEW +M1.5-blocking bug: **user cannot walk UP out of cottage cellar — stuck +at last step due to cell-resolver ping-pong (filed as issue #98, +Finding 3 family).** Current A6 phase: **A6.P3 slice 3 — Finding 3 +cell-resolver stickiness (issue #98 + #90 workaround removal + +possibly closes #97)**. Retail oracle: `CObjCell::find_cell_list` +Position-variant at `acclient_2013_pseudo_c.txt:308742-308783`. Findings doc: [`docs/research/2026-05-21-a6-cdb-capture-findings.md`](docs/research/2026-05-21-a6-cdb-capture-findings.md). Original demo scenario (Holtburg Sewer end-to-end) is unreachable: sewer doesn't exist on this server, and **issue #95** (portal-graph visibility blowup) blocks any substitute dungeon. Revised M1.5 demo split into -building/cellar half (ACHIEVABLE NOW — slice 1 unblocked the physics) + -dungeon half (blocked on #95). Issues in scope: #80, #81, #83, #88, #90 -(workaround removal), **#95** (visibility blowup; not A6 scope), **#96** -(L622 seed, slice 2), **#97** (phantom collisions + fall-through; #96 -side-effect), L-indoor, L-spotlight, indoor sling-out (Finding 3), and -the `TryFindIndoorWalkablePlane` definition deletion (A6.P4). **M2 +building/cellar half (PARTIALLY ACHIEVABLE post-slice-1; cellar-ascent +blocked on #98) + dungeon half (blocked on #95). Issues in scope: #80, +#81, #83, #88, #90 (workaround removal after slice 3), **#95** +(visibility; not A6 scope), **#96** (L622 seed; retail divergence +accepted), **#97** (phantom collisions; may close as #98 side-effect), +**#98** (cellar-ascent stuck; A6.P3 slice 3 target), L-indoor, +L-spotlight, indoor sling-out (Finding 3 family with #98), and the +`TryFindIndoorWalkablePlane` definition deletion (A6.P4). **M2 ("Kill a drudge") is deferred until M1.5 lands.** Full M1.5 writeup at the corresponding block in `docs/plans/2026-05-12-milestones.md`. diff --git a/docs/ISSUES.md b/docs/ISSUES.md index e49217d..0579cbd 100644 --- a/docs/ISSUES.md +++ b/docs/ISSUES.md @@ -602,33 +602,33 @@ Retail oracle for cell-id hysteresis: `acclient_2013_pseudo_c.txt:308742-308783` --- -## #96 — Per-tick PhysicsEngine.ResolveWithTransition CP seed contributes 99.3% of post-slice-1 CP writes +## #96 — Per-tick PhysicsEngine.ResolveWithTransition CP seed (retail divergence) -**Status:** OPEN — **A6.P3 slice 2 target** -**Severity:** MEDIUM (functional code works; symptom is CP-write-rate mismatch vs retail; suspected cause of #97 phantom collisions) +**Status:** PARTIALLY ADDRESSED — accepted as documented retail divergence +**Severity:** LOW (cosmetic — CP-write counter inflates but behavior is correct) **Filed:** 2026-05-21 **Component:** physics, ContactPlane retention **Description:** After A6.P3 slice 1 (commits `5aba071` + `5f7722a` + `39fc037`) stripped the `TryFindIndoorWalkablePlane` synthesis path from `Transition.FindEnvCollisions` indoor branch, scen3 post-fix re-capture showed acdream still writes ContactPlane fields 25,082 times during a flat-floor walk — 24,906 of those (99.3%) come from `PhysicsEngine.ResolveWithTransition` line 622, which seeds `ci.ContactPlane` from `body.ContactPlane` at every transition start when the body is grounded. Retail's equivalent code path fires `set_contact_plane` zero times during the same flat-floor walk (scen3 retail BP7 = 0). -**Root cause / status:** The L622 seed is per-tick infrastructure (every transition tick that's grounded), writing the same plane value repeatedly. Retail does NOT seed `ci.ContactPlane` at transition start — it relies on Mechanism A (Path-6 land write inside `BSPQuery.FindCollisions`) and Mechanism B (LKCP restore inside `validate_transition`, ported in slice 1 commit `5aba071`) to populate `ci.ContactPlane` only when needed. +**Slice 2 attempt + outcome (2026-05-22, commits `892019b` + `f8d669b`):** -The L622 seed comment claims it preserves slope-walking continuity. Need to verify whether removing it (relying on Mechanism B for cross-tick CP propagation) breaks slope walking, or whether the seed is redundant infrastructure left over from before Mechanism B existed. +- **v1 attempt (`892019b`):** Removed the L622 seed entirely to match retail's `CTransition::init` clear-at-start behavior. Verified per-rebuild that the change deployed. CP-write count dropped 91% (30,420 → 2,690). **But broke BSP step_up at the last step of stairs** — sub-step 1's `AdjustOffset` had no ContactPlane to compute the lift direction, BSP step_up thrashed (12,489 push-back-disp + 2,226 push-back-cell signal). User confirmed: "I can't pass the last step of the stairs." +- **v2 fix (`f8d669b`):** Reverted the seed removal + added no-op-if-unchanged guard inside `CollisionInfo.SetContactPlane`. The guard early-returns when called with values identical to current state. **The guard doesn't trigger for the L622 seed** because each tick gets a fresh `Transition` (so `ci.ContactPlaneValid=false` on entry → guard fails → write fires). So slice 2 v2 didn't actually reduce CP-write count for the seed case. It does dedupe within-tick redundant writes (e.g. Mechanism B restoring LKCP that equals current ci.CP), which is a small benign improvement. -**Fix sketch (slice 2 candidates):** -- Option A: Remove the L622 seed entirely. Rely on Mechanism A + Mechanism B for CP propagation. Verify slope walking still works (uphill/downhill, walking up stairs). -- Option B: Gate the L622 seed to fire only when `body.ContactPlane` has changed since last seed (track last-seeded plane). Most ticks would skip writes. -- Option C: Hybrid — keep the seed but route it through a no-op-if-unchanged guard inside `CollisionInfo.SetContactPlane` itself (also applies to all other call sites). +**Root cause / status (updated 2026-05-22):** The L622 seed IS load-bearing for `AdjustOffset` slope projection on sub-step 1, which BSP step_up depends on. Retail uses a different architecture (no seed; first sub-step has no CP and BSP path-6 establishes it). Matching retail would require a deeper refactor — making `AdjustOffset` fall back to `body.ContactPlane` when `ci.ContactPlane` is invalid, OR re-architecting the sub-step loop to not require CP for the first iteration. Both are non-trivial. -**Evidence (committed):** -- `docs/research/2026-05-21-a6-captures/scen3_inn_2nd_floor_postfix/acdream.log` — shows 24,906 cp-write entries with `caller=PhysicsEngine.ResolveWithTransition:622`. -- A6.P2 findings doc: per-unit-of-activity CP-write rate dropped 63× from slice 1 strip, but absolute count remains high. +**Accepting the divergence:** the per-tick seed call is functionally correct — it propagates the player's current contact plane to the transition. The cost is a noisy CP-write counter (cosmetic) but the BEHAVIOR matches retail (player stays grounded on the correct plane, slope-snap works, step_up works). Closing #96 fully is deferred to a future refactor or accepted as is. + +**Lessons learned:** +- A counter-based metric (CP-write count) is not always a direct proxy for "behavior matches retail." Retail's set_contact_plane firing rate differs from ours because the call-site structure differs, not because the behavior differs. +- The slice 1 hypothesis "Finding 1 (dispatcher entry frequency) may close as side-effect of Finding 2 (CP-write)" was confirmed by stairs+cellar working post-slice-1. But the slice 2 follow-up assumption "remaining 99.3% of CP writes are also a problem" was partially wrong — those writes are correct state propagation. **Files:** -- `src/AcDream.Core/Physics/PhysicsEngine.cs:622` (the seed call site) -- `src/AcDream.Core/Physics/TransitionTypes.cs:251-270` (`CollisionInfo.SetContactPlane` — candidate for no-op-if-unchanged guard, Option C) +- `src/AcDream.Core/Physics/PhysicsEngine.cs:620-626` (the seed call site, retained with updated comment) +- `src/AcDream.Core/Physics/TransitionTypes.cs:259-279` (`CollisionInfo.SetContactPlane` no-op guard, retained as small improvement) -**Acceptance:** scen3 re-capture shows acdream cp-write count ≤ 100 (matching retail's BP7 ~0 with small tolerance for legitimate Mechanism A/B fires). Slope walking + stair-climb + cellar descent still work in visual verification. +**If revisited:** investigate `AdjustOffset` fallback to `body.ContactPlane` when `ci.ContactPlane` is invalid — that would let us safely remove the seed. Or investigate retail's exact first-sub-step behavior to see if there's a different missing piece in our BSP step_up that would let it work without a seeded CP. --- @@ -664,6 +664,50 @@ Falsifiable: if #96 fix closes #97 as a side-effect, the hypothesis is confirmed --- +## #98 — Cellar ascent stuck at last step (cell-resolver ping-pong; Finding 3 manifestation) + +**Status:** OPEN — **A6.P3 slice 3 target** (Finding 3 family) +**Severity:** HIGH (blocks M1.5 demo cellar half — user can descend but cannot return) +**Filed:** 2026-05-22 +**Component:** physics, cell resolver (ResolveCellId + CheckBuildingTransit) + +**Description:** Walking UP from a Holtburg cottage cellar in acdream gets stuck "just almost at the last step up." Stairs going UP elsewhere (inn 2nd floor) work fine post-A6.P3 slice 1. Cellar DESCENT works. Only the cellar ASCENT from the bottom back to ground level fails — specifically at the last step where the player should transition from the indoor cellar cell to the cottage ground-floor cell. + +**Evidence:** captured in slice 2 v2 verification at `docs/research/2026-05-21-a6-captures/scen3_inn_2nd_floor_slice2v2/acdream.log`. Cell-transit chain shows the resolver ping-ponging between three adjacent cells: + +``` +0xA9B4014B → 0xA9B4014A → 0xA9B4013F → 0xA9B4014A → 0xA9B4014B → ... +(Z stays ~96.4 throughout the ping-pong — vertical position stable but cell classification oscillating) +``` + +Eventually the player gives up and returns down: `0xA9B4013F → 0xA9B40143 (Z drops to 94.020) → 0xA9B40146 (Z 93.426) → ...` + +Each cell-transit event has `reason=resolver`, meaning `PhysicsEngine.ResolveCellId` is making the decision. The resolver classifies the position into a different cell each tick → `AdjustOffset` operates against a different cell's geometry each tick → can't accumulate forward motion → stuck. + +**Root cause / status:** Same family as scen4 sling-out (A6.P2 Finding 3) and issue #90 cell-id ping-pong (which has a workaround). The retail oracle is `CObjCell::find_cell_list` Position-variant at `acclient_2013_pseudo_c.txt:308742-308783`. Retail uses cell-array hysteresis / stickiness to prevent flipping CellId on adjacent-cell boundaries when the sphere is on the boundary. + +Our `ResolveCellId` + `CheckBuildingTransit` lack this stickiness — every tick they re-classify based on current position, ignoring "we were already in cell X last tick; if the new position is still close to X, stay in X." + +**Fix sketch (slice 3):** +1. Port retail's cell-array hysteresis from `CObjCell::find_cell_list`. +2. Modify `ResolveCellId` to prefer the previous tick's CellId when the sphere is close to (but slightly outside) the previous cell's CellBSP volume. +3. Modify `CheckBuildingTransit` similarly for building-shell transitions. +4. May obsolete issue #90's workaround (the same stickiness mechanism would handle the doorway ping-pong too). + +**Related issues:** +- Issue #90 — Cell-id ping-pong at indoor doorway threshold (existing workaround; should be removed if Finding 3 fix lands cleanly) +- Issue #97 — Phantom collisions + fall-through on 2nd floor (may also be the same cell-resolver instability) +- A6.P2 Finding 3 — Indoor cell-resolver sling-out (scen4) + +**Files:** +- `src/AcDream.Core/Physics/PhysicsEngine.cs` (`ResolveCellId`) +- `src/AcDream.Core/Physics/CellPhysics.cs` (`CheckBuildingTransit`) +- `src/AcDream.Core/Physics/CellTransit.cs` (cell list iteration; may need stickiness here) + +**Acceptance:** User can walk up out of a Holtburg cottage cellar without getting stuck at the last step. Cell-transit log shows no ping-pong on the cellar boundary. Issue #90 workaround can be removed (verified by ping-pong staying absent at the inn doorway too). + +--- + **Status:** DONE diff --git a/docs/plans/2026-04-11-roadmap.md b/docs/plans/2026-04-11-roadmap.md index cc1855c..e811f82 100644 --- a/docs/plans/2026-04-11-roadmap.md +++ b/docs/plans/2026-04-11-roadmap.md @@ -192,18 +192,32 @@ successfully 2026-04-30 for the steep-roof case. Matching binaries PARTIALLY CLOSED — 99.3% of remaining cp-writes come from L622 per-tick body-CP seed at `PhysicsEngine.ResolveWithTransition:622` (filed as issue #96 for slice 2). - - **A6.P3 slice 2 — Gate L622 per-tick CP seed** (issue #96, - ~1 day). Either remove the L622 seed entirely (rely on Mechanism - A + Mechanism B for CP propagation) OR gate it to fire only on - `body.ContactPlane` change. Verify slope walking + stair-climb + - cellar still work. Target: scen3 cp-write ≤ 100 (matches retail - BP7 ~0). Re-test phantom collisions + fall-through (issue #97, - hypothesized side-effect of #96) post-slice-2. - - **A6.P3 slice 3 — Finding 3 (cell-resolver sling-out)** (if not - closed as side-effect of slice 1+2). Re-capture scen4 first to - confirm whether sling-out persists. Otherwise: narrow fix in - `ResolveCellId` + `CheckBuildingTransit` cell-stickiness; remove - #90 workaround. + - **✓ SHIPPED — A6.P3 slice 2 — L622 seed investigation + no-op guard** + (2026-05-22, commits `892019b` v1 + `f8d669b` v2). v1 removed the + L622 seed entirely; broke BSP step_up at the last step of stairs + (user happy-test surfaced the regression). v2 reverted v1 + added + a no-op-if-unchanged guard inside `CollisionInfo.SetContactPlane`. + **#96 PARTIALLY ADDRESSED — accepted as documented retail + divergence.** The seed is load-bearing for `AdjustOffset` + slope-projection on sub-step 1 which BSP step_up depends on. + Matching retail would require deeper refactor (e.g. AdjustOffset + fallback to body.ContactPlane). Guard is benign improvement; + further #96 closure deferred. + - **A6.P3 slice 3 — Finding 3 (cell-resolver stickiness)** (NEXT, + ~1-2 days). New M1.5-blocking bug surfaced during slice 2 + verification: **user cannot walk UP from cottage cellar — stuck + at last step due to cell-resolver ping-pong** (issue #98). Same + family as #90 (existing workaround) + scen4 sling-out (Finding 3 + from A6.P2). Retail oracle: `CObjCell::find_cell_list` + Position-variant at `acclient_2013_pseudo_c.txt:308742-308783`. + Port retail's cell-array hysteresis: prefer previous tick's + CellId when sphere is close to (but slightly outside) previous + cell's CellBSP volume. May close issues #98 (target), #97 + (phantom collisions; same instability family), #90 (workaround + removal), and scen4 sling-out together. **No re-captures + required for slice 3 scope decision** — issue #98 evidence already + captured in `docs/research/2026-05-21-a6-captures/scen3_inn_2nd_floor_slice2v2/acdream.log` + cell-transit chain. - Issue #95 (visibility blowup) NOT in A6.P3 scope — separate work surface. - **A6.P4 — Remove workarounds + visual verification** (~1 day after diff --git a/docs/research/2026-05-21-a6-captures/scen3_inn_2nd_floor_slice2/acdream.log b/docs/research/2026-05-21-a6-captures/scen3_inn_2nd_floor_slice2/acdream.log new file mode 100644 index 0000000..f805695 --- /dev/null +++ b/docs/research/2026-05-21-a6-captures/scen3_inn_2nd_floor_slice2/acdream.log @@ -0,0 +1,22193 @@ +[10:28:07 INF] scanning plugins in C:\Users\erikn\source\repos\acdream\.claude\worktrees\strange-albattani-3fc83c\src\AcDream.App\bin\Debug\net10.0\plugins +[10:28:07 INF] smoke plugin initialized +[10:28:07 INF] loaded plugin acdream.smoke (Smoke Plugin) +[10:28:07 INF] smoke plugin enabled +[10:28:07 INF] smoke plugin sees 0 entities (replay count at subscribe) +spells: loaded 3956 entries from spells.csv +keybinds: loaded 152 bindings from C:\Users\erikn\AppData\Local\acdream\keybinds.json +world-hud font: loaded 442KB, atlas 512x512, lineHeight=17.6px (reserved for D.6 HUD) +audio: OpenAL engine ready (16 voices, 3D positional) +[QUALITY] Preset High ? QualitySettings { NearRadius = 4, FarRadius = 12, MsaaSamples = 4, AnisotropicLevel = 16, AlphaToCoverage = True, MaxCompletionsPerFrame = 4 } +devtools: ImGui panel host ready (VitalsPanel + ChatPanel + DebugPanel + SettingsPanel registered) +loading world view centered on 0xA9B4FFFF +sky: GameTime ZeroTimeOfYear=3600 (was default 3333.75) +sky: loaded Region 0x13000000 ? 20 day groups, SkyDesc.TickSize=0.800000011920929 (throttle, not rate), LightTickSize=15 +sky: PY10 day0 ? DayGroup[16] "Rainy" (Chance=5.00, 19 objects, 13 keyframes, weather=Overcast) +[N.5] modern path capabilities present (bindless + ARB_shader_draw_parameters) +TerrainAtlas: 33 terrain layers at 512x512 (mipmaps+aniso16x) +AlphaAtlas: 8 layers at 512x512 (corners=4, sides=1, roads=3) +TerrainAtlas: anisotropic updated to 16x +[N.5] mesh_modern shader loaded +[N.4+N.5] WB foundation + modern path active ? routing all content through ObjectMeshManager. +streaming: nearRadius=4 (window=9x9) farRadius=12 (window=25x25) +live: connecting to 127.0.0.1:9000 as testaccount +sky: PY117 day4 ? DayGroup[11] "Clear" (Chance=5.00, 7 objects, 11 keyframes, weather=Clear) +live: entering world as 0x5000000A +Acdream +settings: loaded character[+Acdream] preferences +live: in world ? CreateObject stream active (so far: 0 received, 0 hydrated) +chat: SetTurbineChatChannels parsed enabled=True general=0x00000002 trade=0x00000003 lfg=0x00000004 roleplay=0x00000005 society=0x00000000 olthoi=0x0000000A allegiance=0x00000000 +chat: SetTurbineChatChannels parsed enabled=True general=0x00000002 trade=0x00000003 lfg=0x00000004 roleplay=0x00000005 society=0x00000000 olthoi=0x0000000A allegiance=0x00000000 +chat: SetTurbineChatChannels parsed enabled=True general=0x00000002 trade=0x00000003 lfg=0x00000004 roleplay=0x00000005 society=0x00000000 olthoi=0x0000000A allegiance=0x00000000 +live: spawn guid=0x5000000A name="+Acdream" setup=0x02000001 pos=(128.3,8.1,96.4)@0xA9B4014A itemType=0x00000010 animParts=35 texChanges=23 subPalettes=12 +live: spawn guid=0x800004FC name="Agent of Arcanum List" setup=0x02000155 pos=no-pos itemType=0x00002000 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x80000503 name="Refurbisher's Tally" setup=0x02000155 pos=no-pos itemType=0x00002000 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x800005FF name="Pyreal" setup=0x02000B77 pos=no-pos itemType=0x00000040 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x80000600 name="Sack" setup=0x02000181 pos=no-pos itemType=0x00000200 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000601 name="Calling Stone" setup=0x02000179 pos=no-pos itemType=0x00000800 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x800006F7 name="Brimstone" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x800006F8 name="Cadmia" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x800006F9 name="Cinnabar" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x800006FA name="Cobalt" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x800006FB name="Colcothar" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000696 name="Academy Coat" setup=0x020000D4 pos=no-pos itemType=0x00000002 animParts=1 texChanges=6 subPalettes=7 +live: spawn guid=0x800006EC name="Blackthorn Talisman" setup=0x02000307 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x800006F3 name="Poplar Talisman" setup=0x02000307 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x800006F4 name="Rowan Talisman" setup=0x02000307 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x800006F6 name="Yew Talisman" setup=0x02000307 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x800006FC name="Gypsum" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x800006FD name="Quicksilver" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x800006FE name="Realgar" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x800006FF name="Stibnite" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000F1B name="Refurbisher's Tally" setup=0x02000155 pos=no-pos itemType=0x00002000 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x80000700 name="Turpeth" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000701 name="Verdigris" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000F1C name="Agent of Arcanum List" setup=0x02000155 pos=no-pos itemType=0x00002000 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x80000702 name="Vitriol" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000703 name="Amaranth" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000604 name="Ust" setup=0x02000D5C pos=no-pos itemType=0x20000000 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x80000705 name="Comfrey" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000706 name="Damiana" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000605 name="Letter From Home" setup=0x02000155 pos=no-pos itemType=0x00002000 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x80000707 name="Dragonsblood" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000708 name="Eyebright" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000709 name="Frankincense" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x8000070B name="Henbane" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x8000070C name="Hyssop" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000713 name="Yarrow" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000714 name="Powdered Agate" setup=0x02000308 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000715 name="Powdered Amber" setup=0x02000308 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x7A9B3001 name="Holtburg" setup=0x020006EF pos=(27.8,173.8,93.0)@0xA9B30010 itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x80000717 name="Powdered Bloodstone" setup=0x02000308 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000718 name="Powdered Carnelian" setup=0x02000308 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x8000071E name="Powdered Turquoise" setup=0x02000308 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x8000072C name="Chorizite" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000606 name="Blackmoor's Favor" setup=0x02000179 pos=no-pos itemType=0x00000800 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x80000694 name="Oil of Rendering" setup=0x020005FF pos=no-pos itemType=0x00000080 animParts=1 texChanges=2 subPalettes=1 +live: spawn guid=0x80000695 name="Oil of Rendering" setup=0x020005FF pos=no-pos itemType=0x00000080 animParts=1 texChanges=2 subPalettes=1 +live: spawn guid=0x8000070D name="Mandrake" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x8000070E name="Mugwort" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x8000070F name="Myrrh" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000710 name="Saffron" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000711 name="Vervain" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x8000071A name="Powdered Malachite" setup=0x02000308 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80001BB5 name="Pathwarden Robe" setup=0x020001A6 pos=no-pos itemType=0x00000004 animParts=1 texChanges=4 subPalettes=4 +live: spawn guid=0x80001BB6 name="Pathwarden Sollerets" setup=0x020000DE pos=no-pos itemType=0x00000002 animParts=1 texChanges=2 subPalettes=1 +live: spawn guid=0x80001BB8 name="Pathwarden Helm" setup=0x020000DA pos=no-pos itemType=0x00000002 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80001BB7 name="Pathwarden Gauntlets" setup=0x020000D8 pos=no-pos itemType=0x00000002 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x7A9B4015 name="Door" setup=0x020019FF pos=(132.6,17.1,94.1)@0xA9B40029 itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x80001BB4 name="Pathwarden Plate Leggings" setup=0x020001A8 pos=no-pos itemType=0x00000002 animParts=1 texChanges=2 subPalettes=1 +live: spawn guid=0x80001BB3 name="Pathwarden Plate Hauberk" setup=0x020000D4 pos=no-pos itemType=0x00000002 animParts=1 texChanges=6 subPalettes=5 +live: spawn guid=0x7A9B4023 name="Scribe Renald the Younger" setup=0x02000001 pos=(131.4,12.2,94.0)@0xA9B4013F itemType=0x00000010 animParts=37 texChanges=25 subPalettes=9 +live: animated=3 animReject: noCycle=1 fr0=1 1frame=0 partFrames=0 +live: summary recv=60 hydrated=4 drops: noPos=56 noSetup=0 setupMissing=0 noMesh=0 +live: spawn guid=0x7A9B4021 name="Shopkeeper Renald the Elder" setup=0x02000001 pos=(139.2,18.3,94.0)@0xA9B40141 itemType=0x00000010 animParts=35 texChanges=25 subPalettes=9 +live: spawn guid=0x7A9B4013 name="Chest" setup=0x0200007C pos=(135.7,9.9,97.0)@0xA9B4014B itemType=0x00000200 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B4014 name="Chest" setup=0x0200007C pos=(132.5,9.9,97.0)@0xA9B4014B itemType=0x00000200 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x50000001 name="+Je" setup=0x02000001 pos=(128.0,7.5,96.8)@0xA9B4014B itemType=0x00000010 animParts=34 texChanges=16 subPalettes=9 +live: spawn guid=0x8000032A name="Apprentice Alchemist" setup=0x0200004E pos=(139.6,8.1,97.0)@0xA9B4014D itemType=0x00000010 animParts=34 texChanges=23 subPalettes=8 +live: spawn guid=0x7A9B4016 name="Door" setup=0x020019FF pos=(136.3,5.2,94.1)@0xA9B40029 itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B4017 name="Door" setup=0x020019FF pos=(104.1,31.0,94.1)@0xA9B40154 itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B4037 name="Beer Keg" setup=0x02000975 pos=(109.7,33.0,95.0)@0xA9B4015C itemType=0x00400000 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B4018 name="Door" setup=0x020019FF pos=(110.9,31.0,94.1)@0xA9B40154 itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B4019 name="Door" setup=0x020019FF pos=(107.5,31.5,94.1)@0xA9B40155 itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B403B name="Agent of the Arcanum " setup=0x02000B8E pos=(150.5,17.9,94.0)@0xA9B40031 itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B401A name="Door" setup=0x020019FF pos=(97.5,36.0,94.1)@0xA9B40022 itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B401B name="Door" setup=0x020019FF pos=(118.5,36.0,94.1)@0xA9B40022 itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B401C name="Door" setup=0x020019FF pos=(107.5,41.0,97.6)@0xA9B40022 itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B401D name="Chest" setup=0x0200007C pos=(75.8,38.4,94.0)@0xA9B4016A itemType=0x00000200 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B401E name="Door" setup=0x020019FF pos=(75.7,33.7,94.1)@0xA9B4001A itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B401F name="Door" setup=0x020019FF pos=(81.7,33.6,94.1)@0xA9B4001A itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B4022 name="Barkeeper Wilomine" setup=0x0200004E pos=(108.8,34.9,94.0)@0xA9B40155 itemType=0x00000010 animParts=37 texChanges=23 subPalettes=9 +live: spawn guid=0x7A9B4024 name="Fispur Ansel the Grocer" setup=0x02000001 pos=(79.0,38.5,94.0)@0xA9B4016A itemType=0x00000010 animParts=36 texChanges=26 subPalettes=10 +live: spawn guid=0x7A9B402B name="Fispur's Foodstuffs" setup=0x02000290 pos=(83.1,34.4,94.1)@0xA9B4001A itemType=0x00000080 animParts=1 texChanges=1 subPalettes=0 +live: animated=17 animReject: noCycle=4 fr0=13 1frame=0 partFrames=0 +live: summary recv=80 hydrated=24 drops: noPos=56 noSetup=0 setupMissing=0 noMesh=0 +live: spawn guid=0x7A9B402D name="Helm and Shield" setup=0x02000290 pos=(119.1,37.4,94.1)@0xA9B40022 itemType=0x00000080 animParts=1 texChanges=1 subPalettes=0 +live: spawn guid=0x7A9B403A name="Door" setup=0x020019FF pos=(155.4,15.9,94.1)@0xA9B40170 itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B404E name="Novedion the Gem Seller" setup=0x02000A0B pos=(124.8,31.5,94.0)@0xA9B4002A itemType=0x00000010 animParts=8 texChanges=8 subPalettes=1 +live: spawn guid=0x7A9B4041 name="Wedding Planner" setup=0x0200004E pos=(163.0,8.7,94.0)@0xA9B40172 itemType=0x00000010 animParts=34 texChanges=17 subPalettes=7 +live: spawn guid=0x7A9B404F name="Life Stone" setup=0x020002EE pos=(81.3,11.8,94.0)@0xA9B40019 itemType=0x10000000 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B4050 name="Bind Stone" setup=0x020010AC pos=(145.0,41.5,94.0)@0xA9B40032 itemType=0x10000000 animParts=0 texChanges=0 subPalettes=1 +live: spawn guid=0x7A9B4051 name="Holtburg Meeting Hall Portal" setup=0x020001B3 pos=(159.2,39.0,95.9)@0xA9B4017A itemType=0x00010000 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B4072 name="Aluvian Pathwarden Chest" setup=0x0200007C pos=(99.0,29.5,94.0)@0xA9B40022 itemType=0x00000200 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B406E name="Renald the Eldest" setup=0x02000001 pos=(128.5,5.0,94.0)@0xA9B40029 itemType=0x00000010 animParts=37 texChanges=21 subPalettes=8 +live: spawn guid=0x7A9B46A9 name="Contract Broker" setup=0x0200004E pos=(114.2,35.0,94.0)@0xA9B40162 itemType=0x00000010 animParts=41 texChanges=11 subPalettes=18 +live: spawn guid=0x7A9B46AA name="Gawain Cooper" setup=0x02000001 pos=(113.8,33.0,94.0)@0xA9B40162 itemType=0x00000010 animParts=34 texChanges=3 subPalettes=14 +live: spawn guid=0x7A9B46AE name="Royal Guard" setup=0x02000001 pos=(115.3,6.5,94.0)@0xA9B40021 itemType=0x00000010 animParts=44 texChanges=36 subPalettes=15 +live: spawn guid=0x7A9B46B0 name="Royal Guard" setup=0x02000001 pos=(176.7,106.4,65.3)@0xA9B4003D itemType=0x00000010 animParts=44 texChanges=36 subPalettes=15 +live: spawn guid=0x7A9B46B1 name="Bottle" setup=0x02001257 pos=(108.3,39.5,94.0)@0xA9B40155 itemType=0x00000010 animParts=1 texChanges=0 subPalettes=0 +live: spawn guid=0x80000322 name="Cooking Forge" setup=0x0200124B pos=(91.5,37.7,94.0)@0xA9B4001A itemType=0x00000010 animParts=1 texChanges=0 subPalettes=0 +live: spawn guid=0x80000323 name="Lockpick Forge" setup=0x02001248 pos=(122.2,12.0,94.0)@0xA9B40029 itemType=0x00000010 animParts=1 texChanges=0 subPalettes=0 +live: spawn guid=0x8000033B name="Paradox-touched Olthoi Spear" setup=0x02001713 pos=no-pos itemType=0x00000001 animParts=1 texChanges=2 subPalettes=1 +live: spawn guid=0x80000325 name="Flinrala Ryndmad" setup=0x0200004E pos=(103.1,45.7,94.0)@0xA9B40169 itemType=0x00000010 animParts=35 texChanges=15 subPalettes=11 +live: spawn guid=0x80000328 name="Agent of the Arcanum" setup=0x02000001 pos=(163.2,5.8,94.0)@0xA9B40172 itemType=0x00000010 animParts=34 texChanges=15 subPalettes=7 +live: spawn guid=0x8000032E name="Worcer" setup=0x02000001 pos=(107.7,46.1,94.0)@0xA9B40169 itemType=0x00000010 animParts=35 texChanges=19 subPalettes=8 +live: animated=32 animReject: noCycle=5 fr0=16 1frame=1 partFrames=0 +live: summary recv=100 hydrated=43 drops: noPos=57 noSetup=0 setupMissing=0 noMesh=0 +live: spawn guid=0x80000332 name="Alfrin" setup=0x02000001 pos=(108.6,45.2,94.0)@0xA9B40169 itemType=0x00000010 animParts=34 texChanges=21 subPalettes=8 +live: spawn guid=0x80000336 name="Arcanum Refurbisher" setup=0x0200004E pos=(159.7,5.5,94.0)@0xA9B40172 itemType=0x00000010 animParts=34 texChanges=15 subPalettes=7 +live: spawn guid=0x8000033A name="Rand, Game Hunter" setup=0x02000001 pos=(154.6,36.2,96.0)@0xA9B40032 itemType=0x00000010 animParts=35 texChanges=9 subPalettes=19 +live: spawn guid=0x80000341 name="Tirenia" setup=0x0200004E pos=(101.9,20.4,94.0)@0xA9B40021 itemType=0x00000010 animParts=35 texChanges=20 subPalettes=8 +live: spawn guid=0x80000344 name="Alcott" setup=0x02000001 pos=(83.3,14.0,94.0)@0xA9B40019 itemType=0x00000010 animParts=44 texChanges=33 subPalettes=14 +live: spawn guid=0x8000034A name="Pathwarden Thorolf" setup=0x02000001 pos=(97.0,27.0,94.0)@0xA9B40022 itemType=0x00000010 animParts=44 texChanges=33 subPalettes=14 +live: spawn guid=0x80000350 name="Buckminster" setup=0x02000001 pos=(104.4,35.2,94.0)@0xA9B40163 itemType=0x00000010 animParts=44 texChanges=33 subPalettes=14 +live: spawn guid=0x8000035B name="Exploration Marker" setup=0x0200187F pos=(112.2,46.4,94.0)@0xA9B40022 itemType=0x00000010 animParts=1 texChanges=2 subPalettes=1 +live: spawn guid=0x8000029F name="Drudge Slinker" setup=0x020007DD pos=(143.8,95.5,113.9)@0xA9B3002C itemType=0x00000010 animParts=2 texChanges=2 subPalettes=1 +live: spawn guid=0x8000035C name="Sean the Speedy" setup=0x02000001 pos=(114.6,46.4,94.0)@0xA9B40022 itemType=0x00000010 animParts=38 texChanges=23 subPalettes=10 +live: spawn guid=0x80000296 name="Town Crier" setup=0x02000001 pos=(29.3,173.7,93.1)@0xA9B30010 itemType=0x00000010 animParts=45 texChanges=31 subPalettes=12 +live: spawn guid=0x800002A1 name="Simi" setup=0x0200013F pos=no-pos itemType=0x00000001 animParts=1 texChanges=3 subPalettes=1 +live: auto-entry ? applied server skills run=498 jump=453 +physics: player step heights ? StepUp=0.600 m (Setup.StepUpHeight=0.600), StepDown=1.500 m (Setup.StepDownHeight=1.500) +[cell-transit] 0x00000000 -> 0xA9B4014A pos=(128.344,8.122,96.396) reason=teleport +live: auto-entered player mode for 0x5000000A +[cell-cache] envCellId=0xA5B00100 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(1.85,-0.72,1.58) r=9.18 portalCount=3 visibleCells=6 cellBspRoot=ok worldOrigin=(-708.00,-612.00,42.02) +[cell-cache] envCellId=0xA5B00101 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.01,5.99,1.25) r=2.01 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(-708.00,-612.00,42.02) +[cell-cache] envCellId=0xA5B00102 physicsPolyCount=17 resolvedCount=17 bspTotalLeafPolys=17 bspUnmatchedIds=0 bsphere=(1.28,0.38,6.54) r=8.97 portalCount=3 visibleCells=6 cellBspRoot=ok worldOrigin=(-708.00,-612.00,42.02) +[cell-cache] envCellId=0xA5B00103 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.01,5.98,7.52) r=1.20 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(-708.00,-612.00,42.02) +[cell-cache] envCellId=0xA5B00104 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.01,-5.98,7.52) r=1.20 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(-708.00,-612.00,42.02) +[cell-cache] envCellId=0xA5B00105 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.01,-5.99,1.26) r=2.01 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(-708.00,-612.00,42.02) +[cell-cache] envCellId=0xA5B00106 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.93,0.29,3.02) r=4.43 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(-708.00,-612.00,42.02) +[cell-cache] envCellId=0xA5B40100 physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(-2.06,-2.09,2.55) r=7.34 portalCount=4 visibleCells=6 cellBspRoot=ok worldOrigin=(-634.61,62.15,52.02) +[cell-cache] envCellId=0xA5B40101 physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(-0.74,-0.34,4.24) r=5.60 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(-634.61,62.15,52.02) +[cell-cache] envCellId=0xA5B40102 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-0.03,-0.66,1.74) r=1.33 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(-634.61,62.15,52.02) +[cell-cache] envCellId=0xA5B40103 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(1.25,4.43,4.08) r=5.69 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(-634.61,62.15,52.02) +[cell-cache] envCellId=0xA5B40104 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-1.58,0.95,1.25) r=1.59 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(-634.61,62.15,52.02) +[cell-cache] envCellId=0xA5B40105 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(-2.00,1.93,3.13) r=6.60 portalCount=4 visibleCells=6 cellBspRoot=ok worldOrigin=(-634.61,62.15,52.02) +[cell-cache] envCellId=0xA5B40106 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(2.72,0.29,1.29) r=8.49 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(-634.61,62.15,52.02) +[cell-cache] envCellId=0xA5B40107 physicsPolyCount=31 resolvedCount=31 bspTotalLeafPolys=31 bspUnmatchedIds=0 bsphere=(-0.05,0.23,2.72) r=6.96 portalCount=4 visibleCells=4 cellBspRoot=ok worldOrigin=(-592.44,81.47,46.02) +[cell-cache] envCellId=0xA5B40108 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.04,0.26,3.54) r=7.06 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(-592.44,81.47,46.02) +[cell-cache] envCellId=0xA5B40109 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.40,-5.10,1.40) r=1.96 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-592.44,81.47,46.02) +[cell-cache] envCellId=0xA5B4010A physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-4.21,-2.59,1.85) r=1.23 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-592.44,81.47,46.02) +[cell-cache] envCellId=0xA5B4010B physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.20,-1.17,1.23) r=1.71 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-592.44,81.47,46.02) +[cell-cache] envCellId=0xA5B4010C physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-6.14,-0.38,4.76) r=1.07 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(-591.11,60.19,46.02) +[cell-cache] envCellId=0xA5B4010D physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-2.85,-5.40,1.75) r=0.97 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(-591.11,60.19,46.02) +[cell-cache] envCellId=0xA5B4010E physicsPolyCount=19 resolvedCount=19 bspTotalLeafPolys=19 bspUnmatchedIds=0 bsphere=(0.32,-0.71,1.07) r=8.19 portalCount=5 visibleCells=7 cellBspRoot=ok worldOrigin=(-591.11,60.19,46.02) +[cell-cache] envCellId=0xA5B4010F physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(3.45,-5.40,1.75) r=0.97 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(-591.11,60.19,46.02) +[cell-cache] envCellId=0xA5B40110 physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(0.00,-0.30,3.00) r=7.49 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(-591.11,60.19,46.02) +[cell-cache] envCellId=0xA5B40111 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-6.17,2.08,1.24) r=1.56 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(-591.11,60.19,46.02) +[cell-cache] envCellId=0xA5B40112 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.37,-5.62,1.24) r=1.56 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(-591.11,60.19,46.02) +[cell-cache] envCellId=0xA5B40113 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-5.48,-0.50,2.89) r=2.83 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(-591.11,60.19,46.02) +[cell-cache] envCellId=0xA5B40114 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(0.00,-1.50,0.85) r=1.94 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-593.30,125.84,46.02) +[cell-cache] envCellId=0xA5B40115 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-0.02,-2.03,1.24) r=1.63 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-593.30,125.84,46.02) +[cell-cache] envCellId=0xA5B40116 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(0.09,0.74,0.35) r=4.65 portalCount=3 visibleCells=4 cellBspRoot=ok worldOrigin=(-593.30,125.84,46.02) +[cell-cache] envCellId=0xA5B40117 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(2.46,-1.40,-0.02) r=1.95 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(-593.30,125.84,46.02) +[cell-cache] envCellId=0xA5B40118 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(-2.46,-1.18,0.65) r=2.39 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(-593.30,125.84,46.02) +[cell-cache] envCellId=0xA5B40119 physicsPolyCount=26 resolvedCount=26 bspTotalLeafPolys=26 bspUnmatchedIds=0 bsphere=(0.00,0.00,7.40) r=9.32 portalCount=3 visibleCells=3 cellBspRoot=ok worldOrigin=(-684.00,84.00,76.02) +[cell-cache] envCellId=0xA5B4011A physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(2.65,-4.18,9.91) r=1.98 portalCount=2 visibleCells=3 cellBspRoot=ok worldOrigin=(-684.00,84.00,76.02) +[cell-cache] envCellId=0xA5B4011B physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.42,-4.38,1.13) r=2.03 portalCount=2 visibleCells=3 cellBspRoot=ok worldOrigin=(-684.00,84.00,76.02) +[cell-cache] envCellId=0xA5B4011C physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.93,1.29,14.95) r=4.43 portalCount=2 visibleCells=3 cellBspRoot=ok worldOrigin=(-684.00,84.00,76.02) +[cell-cache] envCellId=0xA7B30100 physicsPolyCount=9 resolvedCount=9 bspTotalLeafPolys=9 bspUnmatchedIds=0 bsphere=(0.10,12.28,-4.86) r=9.40 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(-281.80,-56.73,30.02) +[cell-cache] envCellId=0xA7B30101 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-1.34,1.95,-2.64) r=5.87 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-281.80,-56.73,30.02) +[cell-cache] envCellId=0xA7B30102 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.09,1.16,0.05) r=3.56 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-281.80,-56.73,30.02) +[cell-cache] envCellId=0xA7B30103 physicsPolyCount=30 resolvedCount=30 bspTotalLeafPolys=30 bspUnmatchedIds=0 bsphere=(0.83,-0.07,0.43) r=5.18 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-281.80,-56.73,30.02) +[cell-cache] envCellId=0xA7B30104 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.00,-3.47,1.48) r=1.85 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-281.80,-56.73,30.02) +[cell-cache] envCellId=0xA7B40100 physicsPolyCount=31 resolvedCount=31 bspTotalLeafPolys=31 bspUnmatchedIds=0 bsphere=(-0.05,0.23,2.72) r=6.96 portalCount=4 visibleCells=4 cellBspRoot=ok worldOrigin=(-250.11,84.57,28.02) +[cell-cache] envCellId=0xA7B40101 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.04,0.26,3.54) r=7.06 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(-250.11,84.57,28.02) +[cell-cache] envCellId=0xA7B40102 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.40,-5.10,1.40) r=1.96 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-250.11,84.57,28.02) +[cell-cache] envCellId=0xA7B40103 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-4.21,-2.59,1.85) r=1.23 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-250.11,84.57,28.02) +[cell-cache] envCellId=0xA7B40104 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.20,-1.17,1.23) r=1.71 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-250.11,84.57,28.02) +[cell-cache] envCellId=0xA8B00100 physicsPolyCount=26 resolvedCount=26 bspTotalLeafPolys=26 bspUnmatchedIds=0 bsphere=(0.00,0.00,7.40) r=9.32 portalCount=3 visibleCells=3 cellBspRoot=ok worldOrigin=(-36.00,-660.00,74.02) +[cell-cache] envCellId=0xA8B00101 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(2.65,-4.18,9.91) r=1.98 portalCount=2 visibleCells=3 cellBspRoot=ok worldOrigin=(-36.00,-660.00,74.02) +[cell-cache] envCellId=0xA8B00102 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.42,-4.38,1.13) r=2.03 portalCount=2 visibleCells=3 cellBspRoot=ok worldOrigin=(-36.00,-660.00,74.02) +[cell-cache] envCellId=0xA8B00103 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.93,1.29,14.95) r=4.43 portalCount=2 visibleCells=3 cellBspRoot=ok worldOrigin=(-36.00,-660.00,74.02) +[cell-cache] envCellId=0xA8B20100 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(0.00,-1.50,0.85) r=1.94 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-156.00,-300.00,36.02) +[cell-cache] envCellId=0xA8B20101 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-0.02,-2.03,1.24) r=1.63 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-156.00,-300.00,36.02) +[cell-cache] envCellId=0xA8B20102 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(0.09,0.74,0.35) r=4.65 portalCount=3 visibleCells=4 cellBspRoot=ok worldOrigin=(-156.00,-300.00,36.02) +[cell-cache] envCellId=0xA8B20103 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(2.46,-1.40,-0.02) r=1.95 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(-156.00,-300.00,36.02) +[cell-cache] envCellId=0xA8B20104 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(-2.46,-1.18,0.65) r=2.39 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(-156.00,-300.00,36.02) +[cell-cache] envCellId=0xA9B00100 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-6.14,-0.38,4.76) r=1.07 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(36.00,-612.00,58.02) +[cell-cache] envCellId=0xA9B00101 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-2.85,-5.40,1.75) r=0.97 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(36.00,-612.00,58.02) +[cell-cache] envCellId=0xA9B00102 physicsPolyCount=19 resolvedCount=19 bspTotalLeafPolys=19 bspUnmatchedIds=0 bsphere=(0.32,-0.71,1.07) r=8.19 portalCount=5 visibleCells=7 cellBspRoot=ok worldOrigin=(36.00,-612.00,58.02) +[cell-cache] envCellId=0xA9B00103 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(3.45,-5.40,1.75) r=0.97 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(36.00,-612.00,58.02) +[cell-cache] envCellId=0xA9B00104 physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(0.00,-0.30,3.00) r=7.49 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(36.00,-612.00,58.02) +[cell-cache] envCellId=0xA9B00105 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-6.17,2.08,1.24) r=1.56 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(36.00,-612.00,58.02) +[cell-cache] envCellId=0xA9B00106 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.37,-5.62,1.24) r=1.56 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(36.00,-612.00,58.02) +[cell-cache] envCellId=0xA9B00107 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-5.48,-0.50,2.89) r=2.83 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(36.00,-612.00,58.02) +[cell-cache] envCellId=0xA9B00108 physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(-2.06,-2.09,2.55) r=7.34 portalCount=4 visibleCells=6 cellBspRoot=ok worldOrigin=(36.00,-660.00,64.02) +[cell-cache] envCellId=0xA9B00109 physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(-0.74,-0.34,4.24) r=5.60 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(36.00,-660.00,64.02) +[cell-cache] envCellId=0xA9B0010A physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-0.03,-0.66,1.74) r=1.33 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(36.00,-660.00,64.02) +[cell-cache] envCellId=0xA9B0010B physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(1.25,4.43,4.08) r=5.69 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(36.00,-660.00,64.02) +[cell-cache] envCellId=0xA9B0010C physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-1.58,0.95,1.25) r=1.59 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(36.00,-660.00,64.02) +[cell-cache] envCellId=0xA9B0010D physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(-2.00,1.93,3.13) r=6.60 portalCount=4 visibleCells=6 cellBspRoot=ok worldOrigin=(36.00,-660.00,64.02) +[cell-cache] envCellId=0xA9B0010E physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(2.72,0.29,1.29) r=8.49 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(36.00,-660.00,64.02) +[cell-cache] envCellId=0xA9B0010F physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(0.00,-1.50,0.85) r=1.94 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(10.23,-617.66,58.02) +[cell-cache] envCellId=0xA9B00110 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-0.02,-2.03,1.24) r=1.63 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(10.23,-617.66,58.02) +[cell-cache] envCellId=0xA9B00111 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(0.09,0.74,0.35) r=4.65 portalCount=3 visibleCells=4 cellBspRoot=ok worldOrigin=(10.23,-617.66,58.02) +[cell-cache] envCellId=0xA9B00112 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(2.46,-1.40,-0.02) r=1.95 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(10.23,-617.66,58.02) +[cell-cache] envCellId=0xA9B00113 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(-2.46,-1.18,0.65) r=2.39 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(10.23,-617.66,58.02) +[cell-cache] envCellId=0xA9B20102 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.62,-3.85,1.08) r=2.01 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20103 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.88,3.85,1.08) r=2.01 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20104 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.68,-0.40,1.11) r=1.98 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20105 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(6.57,-0.12,0.44) r=5.59 portalCount=4 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20106 physicsPolyCount=26 resolvedCount=26 bspTotalLeafPolys=26 bspUnmatchedIds=0 bsphere=(0.02,0.35,1.46) r=5.37 portalCount=3 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20107 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(9.15,2.14,3.14) r=2.67 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20108 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(9.81,0.10,2.65) r=5.31 portalCount=3 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20109 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(8.89,-0.23,4.07) r=6.30 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B2010A physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(9.25,4.50,1.66) r=2.15 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B2010B physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(7.49,6.57,1.12) r=5.33 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B2010C physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(8.89,-3.44,1.55) r=1.88 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B2010D physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,2.50,1.49) r=4.07 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B2010E physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(0.00,-2.50,1.49) r=4.07 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B2010F physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-4.82,-0.40,4.61) r=1.98 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20110 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.00,2.00,3.50) r=4.23 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20111 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.00,-2.25,3.50) r=4.21 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20112 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.68,-0.40,4.61) r=1.98 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20113 physicsPolyCount=23 resolvedCount=23 bspTotalLeafPolys=23 bspUnmatchedIds=0 bsphere=(-0.23,5.94,4.93) r=8.23 portalCount=6 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20114 physicsPolyCount=22 resolvedCount=22 bspTotalLeafPolys=22 bspUnmatchedIds=0 bsphere=(-0.05,-6.09,3.89) r=6.99 portalCount=5 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20115 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.36,10.52,1.41) r=2.00 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20116 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.02,-9.97,1.26) r=1.67 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20117 physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(-0.38,0.11,4.59) r=6.59 portalCount=4 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20118 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-4.99,3.01,1.69) r=2.25 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20119 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-4.99,-5.50,1.56) r=3.43 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B2011A physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-6.08,-2.10,2.83) r=7.18 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B30100 physicsPolyCount=9 resolvedCount=9 bspTotalLeafPolys=9 bspUnmatchedIds=0 bsphere=(1.87,-0.09,0.32) r=5.49 portalCount=4 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B30101 physicsPolyCount=12 resolvedCount=12 bspTotalLeafPolys=12 bspUnmatchedIds=0 bsphere=(3.63,-4.76,1.07) r=2.69 portalCount=1 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B30102 physicsPolyCount=12 resolvedCount=12 bspTotalLeafPolys=12 bspUnmatchedIds=0 bsphere=(4.09,2.39,0.58) r=4.01 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B30103 physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(-1.23,-0.50,0.24) r=6.80 portalCount=3 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B30104 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.49,-1.06,1.10) r=1.96 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B30105 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.15,-6.37,1.08) r=2.02 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B30106 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(2.00,-3.88,4.25) r=1.55 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B30107 physicsPolyCount=16 resolvedCount=16 bspTotalLeafPolys=16 bspUnmatchedIds=0 bsphere=(-1.13,-3.92,4.99) r=5.37 portalCount=3 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B30108 physicsPolyCount=9 resolvedCount=9 bspTotalLeafPolys=9 bspUnmatchedIds=0 bsphere=(3.90,2.50,4.25) r=3.37 portalCount=5 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B30109 physicsPolyCount=3 resolvedCount=3 bspTotalLeafPolys=3 bspUnmatchedIds=0 bsphere=(3.51,1.84,6.49) r=4.00 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B3010A physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(-1.24,2.39,5.16) r=4.67 portalCount=4 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B3010B physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(1.38,-0.22,4.14) r=1.83 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B3010C physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-1.26,-6.36,4.73) r=1.19 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B3010D physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(6.20,1.50,4.75) r=0.93 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B3010E physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(6.20,3.50,4.75) r=0.93 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B3010F physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-3.80,2.40,3.00) r=2.55 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B30110 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(3.32,0.05,4.25) r=1.55 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B40100 physicsPolyCount=25 resolvedCount=25 bspTotalLeafPolys=25 bspUnmatchedIds=0 bsphere=(1.79,4.26,3.06) r=8.75 portalCount=6 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B40101 physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(0.18,-5.73,4.30) r=7.39 portalCount=5 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B40102 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-4.51,5.00,1.40) r=2.59 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B40103 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(4.99,5.00,1.76) r=2.67 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B40104 physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(-0.69,-5.50,0.27) r=7.08 portalCount=5 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B40105 physicsPolyCount=9 resolvedCount=9 bspTotalLeafPolys=9 bspUnmatchedIds=0 bsphere=(-6.39,-4.40,4.58) r=5.34 portalCount=3 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B40106 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-8.94,-4.48,5.15) r=1.05 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B40107 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-7.32,-4.78,1.55) r=1.43 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B40108 physicsPolyCount=9 resolvedCount=9 bspTotalLeafPolys=9 bspUnmatchedIds=0 bsphere=(-6.66,-4.71,2.41) r=5.32 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B40109 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-1.68,-10.71,5.13) r=1.10 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B4010A physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(1.07,-10.71,5.13) r=1.10 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B4010B physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.02,-10.97,1.26) r=1.67 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B4010C physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(2.04,-3.72,3.23) r=3.61 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B4010D physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(3.68,-9.95,1.11) r=1.98 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B4010E physicsPolyCount=7 resolvedCount=7 bspTotalLeafPolys=7 bspUnmatchedIds=0 bsphere=(4.86,-5.73,1.74) r=6.62 portalCount=1 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B4010F physicsPolyCount=2 resolvedCount=2 bspTotalLeafPolys=2 bspUnmatchedIds=0 bsphere=(-3.05,-4.50,6.47) r=3.67 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B40110 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.40,-0.18,1.11) r=1.98 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B40111 physicsPolyCount=31 resolvedCount=31 bspTotalLeafPolys=31 bspUnmatchedIds=0 bsphere=(-0.05,0.23,2.72) r=6.96 portalCount=4 visibleCells=4 cellBspRoot=ok worldOrigin=(31.50,159.50,66.02) +[cell-cache] envCellId=0xA9B40112 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.04,0.26,3.54) r=7.06 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(31.50,159.50,66.02) +[cell-cache] envCellId=0xA9B40113 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.40,-5.10,1.40) r=1.96 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(31.50,159.50,66.02) +[cell-cache] envCellId=0xA9B40114 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-4.21,-2.59,1.85) r=1.23 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(31.50,159.50,66.02) +[cell-cache] envCellId=0xA9B40115 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.20,-1.17,1.23) r=1.71 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(31.50,159.50,66.02) +[cell-cache] envCellId=0xA9B40116 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.35,-4.21,1.72) r=1.06 portalCount=2 visibleCells=8 cellBspRoot=ok worldOrigin=(154.06,132.70,66.02) +[cell-cache] envCellId=0xA9B40117 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(0.65,-1.64,1.01) r=9.05 portalCount=4 visibleCells=8 cellBspRoot=ok worldOrigin=(154.06,132.70,66.02) +[cell-cache] envCellId=0xA9B40118 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-3.15,-4.40,1.25) r=1.60 portalCount=2 visibleCells=8 cellBspRoot=ok worldOrigin=(154.06,132.70,66.02) +[cell-cache] envCellId=0xA9B40119 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(3.15,4.70,1.25) r=1.59 portalCount=2 visibleCells=8 cellBspRoot=ok worldOrigin=(154.06,132.70,66.02) +[cell-cache] envCellId=0xA9B4011A physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-5.48,-0.50,5.89) r=2.83 portalCount=2 visibleCells=8 cellBspRoot=ok worldOrigin=(154.06,132.70,66.02) +[cell-cache] envCellId=0xA9B4011B physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(-0.38,-0.84,5.26) r=8.45 portalCount=3 visibleCells=8 cellBspRoot=ok worldOrigin=(154.06,132.70,66.02) +[cell-cache] envCellId=0xA9B4011C physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.67,-1.73,6.18) r=8.96 portalCount=1 visibleCells=8 cellBspRoot=ok worldOrigin=(154.06,132.70,66.02) +[cell-cache] envCellId=0xA9B4011D physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.05,-5.40,4.75) r=1.41 portalCount=2 visibleCells=8 cellBspRoot=ok worldOrigin=(154.06,132.70,66.02) +[cell-cache] envCellId=0xA9B4011E physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.20,3.75,3.00) r=2.55 portalCount=2 visibleCells=8 cellBspRoot=ok worldOrigin=(154.06,132.70,66.02) +[cell-cache] envCellId=0xA9B4011F physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-6.14,-0.38,4.76) r=1.07 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(104.50,135.50,66.02) +[cell-cache] envCellId=0xA9B40120 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-2.85,-5.40,1.75) r=0.97 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(104.50,135.50,66.02) +[cell-cache] envCellId=0xA9B40121 physicsPolyCount=19 resolvedCount=19 bspTotalLeafPolys=19 bspUnmatchedIds=0 bsphere=(0.32,-0.71,1.07) r=8.19 portalCount=5 visibleCells=7 cellBspRoot=ok worldOrigin=(104.50,135.50,66.02) +[cell-cache] envCellId=0xA9B40122 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(3.45,-5.40,1.75) r=0.97 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(104.50,135.50,66.02) +[cell-cache] envCellId=0xA9B40123 physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(0.00,-0.30,3.00) r=7.49 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(104.50,135.50,66.02) +[cell-cache] envCellId=0xA9B40124 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-6.17,2.08,1.24) r=1.56 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(104.50,135.50,66.02) +[cell-cache] envCellId=0xA9B40125 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.37,-5.62,1.24) r=1.56 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(104.50,135.50,66.02) +[cell-cache] envCellId=0xA9B40126 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-5.48,-0.50,2.89) r=2.83 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(104.50,135.50,66.02) +[cell-cache] envCellId=0xA9B40127 physicsPolyCount=9 resolvedCount=9 bspTotalLeafPolys=9 bspUnmatchedIds=0 bsphere=(1.87,-0.09,0.32) r=5.49 portalCount=4 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B40128 physicsPolyCount=12 resolvedCount=12 bspTotalLeafPolys=12 bspUnmatchedIds=0 bsphere=(3.63,-4.76,1.07) r=2.69 portalCount=1 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B40129 physicsPolyCount=12 resolvedCount=12 bspTotalLeafPolys=12 bspUnmatchedIds=0 bsphere=(4.09,2.39,0.58) r=4.01 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B4012A physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(-1.23,-0.50,0.24) r=6.80 portalCount=3 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B4012B physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.49,-1.06,1.10) r=1.96 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B4012C physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.15,-6.37,1.08) r=2.02 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B4012D physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(2.00,-3.88,4.25) r=1.55 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B4012E physicsPolyCount=16 resolvedCount=16 bspTotalLeafPolys=16 bspUnmatchedIds=0 bsphere=(-1.13,-3.92,4.99) r=5.37 portalCount=3 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B4012F physicsPolyCount=9 resolvedCount=9 bspTotalLeafPolys=9 bspUnmatchedIds=0 bsphere=(3.90,2.50,4.25) r=3.37 portalCount=5 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B40130 physicsPolyCount=3 resolvedCount=3 bspTotalLeafPolys=3 bspUnmatchedIds=0 bsphere=(3.51,1.84,6.49) r=4.00 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B40131 physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(-1.24,2.39,5.16) r=4.67 portalCount=4 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B40132 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(1.38,-0.22,4.14) r=1.83 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B40133 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-1.26,-6.36,4.73) r=1.19 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B40134 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(6.20,1.50,4.75) r=0.93 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B40135 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(6.20,3.50,4.75) r=0.93 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B40136 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-3.80,2.40,3.00) r=2.55 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B40137 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(3.32,0.05,4.25) r=1.55 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B40138 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(1.85,-0.72,1.58) r=9.18 portalCount=3 visibleCells=6 cellBspRoot=ok worldOrigin=(132.50,154.00,66.02) +[cell-cache] envCellId=0xA9B40139 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.01,5.99,1.25) r=2.01 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(132.50,154.00,66.02) +[cell-cache] envCellId=0xA9B4013A physicsPolyCount=17 resolvedCount=17 bspTotalLeafPolys=17 bspUnmatchedIds=0 bsphere=(1.28,0.38,6.54) r=8.97 portalCount=3 visibleCells=6 cellBspRoot=ok worldOrigin=(132.50,154.00,66.02) +[cell-cache] envCellId=0xA9B4013B physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.01,5.98,7.52) r=1.20 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(132.50,154.00,66.02) +[cell-cache] envCellId=0xA9B4013C physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.01,-5.98,7.52) r=1.20 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(132.50,154.00,66.02) +[cell-cache] envCellId=0xA9B4013D physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.01,-5.99,1.26) r=2.01 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(132.50,154.00,66.02) +[cell-cache] envCellId=0xA9B4013E physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.93,0.29,3.02) r=4.43 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(132.50,154.00,66.02) +[cell-cache] envCellId=0xA9B4013F physicsPolyCount=32 resolvedCount=32 bspTotalLeafPolys=32 bspUnmatchedIds=0 bsphere=(0.01,-0.19,0.19) r=8.11 portalCount=5 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B40140 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-6.06,-3.55,2.23) r=1.71 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B40141 physicsPolyCount=20 resolvedCount=20 bspTotalLeafPolys=20 bspUnmatchedIds=0 bsphere=(-8.47,-4.72,2.33) r=4.77 portalCount=3 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B40142 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(-8.84,-1.63,1.25) r=3.20 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B40143 physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(-10.31,2.66,1.23) r=6.63 portalCount=4 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B40144 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-6.00,1.03,1.25) r=2.93 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B40145 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-6.00,6.35,1.25) r=1.59 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B40146 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-10.22,5.25,-0.00) r=2.83 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B40147 physicsPolyCount=37 resolvedCount=37 bspTotalLeafPolys=37 bspUnmatchedIds=0 bsphere=(-9.52,6.98,-0.98) r=9.60 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B40148 physicsPolyCount=39 resolvedCount=39 bspTotalLeafPolys=39 bspUnmatchedIds=0 bsphere=(-2.42,6.13,-0.63) r=8.46 portalCount=3 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B40149 physicsPolyCount=17 resolvedCount=17 bspTotalLeafPolys=17 bspUnmatchedIds=0 bsphere=(2.80,6.00,-2.10) r=4.51 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B4014A physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(2.37,3.03,2.80) r=2.85 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B4014B physicsPolyCount=9 resolvedCount=9 bspTotalLeafPolys=9 bspUnmatchedIds=0 bsphere=(-1.13,1.42,6.42) r=10.39 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B4014C physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.86,-5.09,1.77) r=1.08 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B4014D physicsPolyCount=10 resolvedCount=10 bspTotalLeafPolys=10 bspUnmatchedIds=0 bsphere=(-9.02,-0.00,3.41) r=9.02 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B4014E physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-8.88,7.63,4.76) r=1.00 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B4014F physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-8.90,-7.42,0.94) r=2.34 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B40150 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-2.03,-5.56,1.23) r=1.70 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B40151 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.62,-3.85,1.08) r=2.01 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40152 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.88,3.85,1.08) r=2.01 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40153 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.68,-0.40,1.11) r=1.98 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40154 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(6.57,-0.12,0.44) r=5.59 portalCount=4 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40155 physicsPolyCount=26 resolvedCount=26 bspTotalLeafPolys=26 bspUnmatchedIds=0 bsphere=(0.02,0.35,1.46) r=5.37 portalCount=3 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40156 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(9.15,2.14,3.14) r=2.67 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40157 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(9.81,0.10,2.65) r=5.31 portalCount=3 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40158 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(8.89,-0.23,4.07) r=6.30 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40159 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(9.25,4.50,1.66) r=2.15 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B4015A physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(7.49,6.57,1.12) r=5.33 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B4015B physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(8.89,-3.44,1.55) r=1.88 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B4015C physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,2.50,1.49) r=4.07 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B4015D physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(0.00,-2.50,1.49) r=4.07 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B4015E physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-4.82,-0.40,4.61) r=1.98 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B4015F physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.00,2.00,3.50) r=4.23 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40160 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.00,-2.25,3.50) r=4.21 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40161 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.68,-0.40,4.61) r=1.98 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40162 physicsPolyCount=23 resolvedCount=23 bspTotalLeafPolys=23 bspUnmatchedIds=0 bsphere=(-0.23,5.94,4.93) r=8.23 portalCount=6 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40163 physicsPolyCount=22 resolvedCount=22 bspTotalLeafPolys=22 bspUnmatchedIds=0 bsphere=(-0.05,-6.09,3.89) r=6.99 portalCount=5 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40164 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.36,10.52,1.41) r=2.00 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40165 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.02,-9.97,1.26) r=1.67 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40166 physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(-0.38,0.11,4.59) r=6.59 portalCount=4 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40167 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-4.99,3.01,1.69) r=2.25 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40168 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-4.99,-5.50,1.56) r=3.43 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40169 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-6.08,-2.10,2.83) r=7.18 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B4016A physicsPolyCount=31 resolvedCount=31 bspTotalLeafPolys=31 bspUnmatchedIds=0 bsphere=(-0.05,0.23,2.72) r=6.96 portalCount=4 visibleCells=4 cellBspRoot=ok worldOrigin=(79.50,37.50,94.02) +[cell-cache] envCellId=0xA9B4016B physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.04,0.26,3.54) r=7.06 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(79.50,37.50,94.02) +[cell-cache] envCellId=0xA9B4016C physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.40,-5.10,1.40) r=1.96 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(79.50,37.50,94.02) +[cell-cache] envCellId=0xA9B4016D physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-4.21,-2.59,1.85) r=1.23 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(79.50,37.50,94.02) +[cell-cache] envCellId=0xA9B4016E physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.20,-1.17,1.23) r=1.71 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(79.50,37.50,94.02) +[cell-cache] envCellId=0xA9B4016F physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-3.24,-0.11,2.27) r=1.64 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(161.93,7.50,94.02) +[cell-cache] envCellId=0xA9B40170 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(6.10,-8.12,1.39) r=2.01 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(161.93,7.50,94.02) +[cell-cache] envCellId=0xA9B40171 physicsPolyCount=54 resolvedCount=54 bspTotalLeafPolys=54 bspUnmatchedIds=0 bsphere=(6.55,-3.25,4.60) r=6.83 portalCount=3 visibleCells=6 cellBspRoot=ok worldOrigin=(161.93,7.50,94.02) +[cell-cache] envCellId=0xA9B40172 physicsPolyCount=27 resolvedCount=27 bspTotalLeafPolys=27 bspUnmatchedIds=0 bsphere=(0.05,0.45,3.44) r=6.33 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(161.93,7.50,94.02) +[cell-cache] envCellId=0xA9B40173 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.00,-0.90,1.25) r=1.58 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(161.93,7.50,94.02) +[cell-cache] envCellId=0xA9B40174 physicsPolyCount=7 resolvedCount=7 bspTotalLeafPolys=7 bspUnmatchedIds=0 bsphere=(3.32,0.05,-3.59) r=7.41 portalCount=1 visibleCells=6 cellBspRoot=ok worldOrigin=(161.93,7.50,94.02) +[cell-cache] envCellId=0xA9B40175 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(8.57,-0.95,-0.00) r=2.66 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(161.93,7.50,94.02) +[cell-cache] envCellId=0xA9B40176 physicsPolyCount=9 resolvedCount=9 bspTotalLeafPolys=9 bspUnmatchedIds=0 bsphere=(1.64,11.20,-4.61) r=10.28 portalCount=1 visibleCells=2 cellBspRoot=ok worldOrigin=(65.21,156.63,66.02) +[cell-cache] envCellId=0xA9B40177 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(-0.19,0.83,-1.63) r=5.35 portalCount=3 visibleCells=2 cellBspRoot=ok worldOrigin=(65.21,156.63,66.02) +[cell-cache] envCellId=0xA9B40178 physicsPolyCount=3 resolvedCount=3 bspTotalLeafPolys=3 bspUnmatchedIds=0 bsphere=(0.90,1.00,2.57) r=5.28 portalCount=2 visibleCells=2 cellBspRoot=ok worldOrigin=(65.21,156.63,66.02) +[cell-cache] envCellId=0xA9B40179 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.52,-2.01,3.63) r=2.45 portalCount=2 visibleCells=1 cellBspRoot=ok worldOrigin=(158.18,37.71,94.02) +[cell-cache] envCellId=0xA9B4017A physicsPolyCount=10 resolvedCount=10 bspTotalLeafPolys=10 bspUnmatchedIds=0 bsphere=(0.01,1.71,4.08) r=7.66 portalCount=1 visibleCells=1 cellBspRoot=ok worldOrigin=(158.18,37.71,94.02) +[cell-cache] envCellId=0xAAB30100 physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(-2.06,-2.09,2.55) r=7.34 portalCount=4 visibleCells=6 cellBspRoot=ok worldOrigin=(228.00,-108.00,116.02) +[cell-cache] envCellId=0xAAB30101 physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(-0.74,-0.34,4.24) r=5.60 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(228.00,-108.00,116.02) +[cell-cache] envCellId=0xAAB30102 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-0.03,-0.66,1.74) r=1.33 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(228.00,-108.00,116.02) +[cell-cache] envCellId=0xAAB30103 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(1.25,4.43,4.08) r=5.69 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(228.00,-108.00,116.02) +[cell-cache] envCellId=0xAAB30104 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-1.58,0.95,1.25) r=1.59 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(228.00,-108.00,116.02) +[cell-cache] envCellId=0xAAB30105 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(-2.00,1.93,3.13) r=6.60 portalCount=4 visibleCells=6 cellBspRoot=ok worldOrigin=(228.00,-108.00,116.02) +[cell-cache] envCellId=0xAAB30106 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(2.72,0.29,1.29) r=8.49 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(228.00,-108.00,116.02) +[cell-cache] envCellId=0xAAB30107 physicsPolyCount=26 resolvedCount=26 bspTotalLeafPolys=26 bspUnmatchedIds=0 bsphere=(0.00,0.00,7.40) r=9.32 portalCount=3 visibleCells=3 cellBspRoot=ok worldOrigin=(300.00,-132.00,112.02) +[cell-cache] envCellId=0xAAB30108 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(2.65,-4.18,9.91) r=1.98 portalCount=2 visibleCells=3 cellBspRoot=ok worldOrigin=(300.00,-132.00,112.02) +[cell-cache] envCellId=0xAAB30109 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.42,-4.38,1.13) r=2.03 portalCount=2 visibleCells=3 cellBspRoot=ok worldOrigin=(300.00,-132.00,112.02) +[cell-cache] envCellId=0xAAB3010A physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.93,1.29,14.95) r=4.43 portalCount=2 visibleCells=3 cellBspRoot=ok worldOrigin=(300.00,-132.00,112.02) +[cell-cache] envCellId=0xAAB50100 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(0.85,0.40,3.28) r=3.12 portalCount=2 visibleCells=0 cellBspRoot=ok worldOrigin=(194.46,225.06,28.01) +[cell-cache] envCellId=0xABB00100 physicsPolyCount=9 resolvedCount=9 bspTotalLeafPolys=9 bspUnmatchedIds=0 bsphere=(0.10,12.28,-4.86) r=9.40 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(566.27,-737.50,64.02) +[cell-cache] envCellId=0xABB00101 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-1.34,1.95,-2.64) r=5.87 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(566.27,-737.50,64.02) +[cell-cache] envCellId=0xABB00102 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.09,1.16,0.05) r=3.56 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(566.27,-737.50,64.02) +[cell-cache] envCellId=0xABB00103 physicsPolyCount=30 resolvedCount=30 bspTotalLeafPolys=30 bspUnmatchedIds=0 bsphere=(0.83,-0.07,0.43) r=5.18 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(566.27,-737.50,64.02) +[cell-cache] envCellId=0xABB00104 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.00,-3.47,1.48) r=1.85 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(566.27,-737.50,64.02) +[cell-cache] envCellId=0xABB30100 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(0.00,-1.50,0.85) r=1.94 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(467.91,-86.67,66.02) +[cell-cache] envCellId=0xABB30101 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-0.02,-2.03,1.24) r=1.63 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(467.91,-86.67,66.02) +[cell-cache] envCellId=0xABB30102 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(0.09,0.74,0.35) r=4.65 portalCount=3 visibleCells=4 cellBspRoot=ok worldOrigin=(467.91,-86.67,66.02) +[cell-cache] envCellId=0xABB30103 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(2.46,-1.40,-0.02) r=1.95 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(467.91,-86.67,66.02) +[cell-cache] envCellId=0xABB30104 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(-2.46,-1.18,0.65) r=2.39 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(467.91,-86.67,66.02) +[cell-cache] envCellId=0xACB50100 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-0.28,2.56,-1.17) r=5.85 portalCount=2 visibleCells=10 cellBspRoot=ok worldOrigin=(684.75,349.06,58.02) +[cell-cache] envCellId=0xACB50101 physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(-0.30,0.50,2.20) r=6.50 portalCount=2 visibleCells=10 cellBspRoot=ok worldOrigin=(684.75,349.06,58.02) +[cell-cache] envCellId=0xACB50102 physicsPolyCount=16 resolvedCount=16 bspTotalLeafPolys=16 bspUnmatchedIds=0 bsphere=(-0.03,9.87,-3.57) r=3.62 portalCount=1 visibleCells=3 cellBspRoot=ok worldOrigin=(684.75,349.06,58.02) +[cell-cache] envCellId=0xACB50103 physicsPolyCount=10 resolvedCount=10 bspTotalLeafPolys=10 bspUnmatchedIds=0 bsphere=(-0.18,6.52,-2.98) r=4.18 portalCount=2 visibleCells=10 cellBspRoot=ok worldOrigin=(684.75,349.06,58.02) +[cell-cache] envCellId=0xACB50104 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=50 cellBspRoot=ok worldOrigin=(784.75,426.06,16.42) +[cell-cache] envCellId=0xACB50105 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=50 cellBspRoot=ok worldOrigin=(784.75,426.06,16.42) +[cell-cache] envCellId=0xACB50106 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=50 cellBspRoot=ok worldOrigin=(784.75,426.06,16.42) +[cell-cache] envCellId=0xACB50107 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=50 cellBspRoot=ok worldOrigin=(784.75,436.06,16.42) +[cell-cache] envCellId=0xACB50108 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=50 cellBspRoot=ok worldOrigin=(784.75,436.06,16.42) +[cell-cache] envCellId=0xACB50109 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=50 cellBspRoot=ok worldOrigin=(784.75,436.06,16.42) +[cell-cache] envCellId=0xACB5010A physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=45 cellBspRoot=ok worldOrigin=(774.75,416.06,16.42) +[cell-cache] envCellId=0xACB5010B physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=45 cellBspRoot=ok worldOrigin=(774.75,416.06,16.42) +[cell-cache] envCellId=0xACB5010C physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=44 cellBspRoot=ok worldOrigin=(774.75,416.06,16.42) +[cell-cache] envCellId=0xACB5010D physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(0.24,0.21,0.48) r=5.88 portalCount=4 visibleCells=50 cellBspRoot=ok worldOrigin=(774.75,426.06,16.42) +[cell-cache] envCellId=0xACB5010E physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.04,-4.99,1.85) r=3.06 portalCount=2 visibleCells=50 cellBspRoot=ok worldOrigin=(774.75,426.06,16.42) +[cell-cache] envCellId=0xACB5010F physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(4.99,-0.04,1.85) r=3.06 portalCount=2 visibleCells=43 cellBspRoot=ok worldOrigin=(774.75,426.06,16.42) +[cell-cache] envCellId=0xACB50110 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(0.04,4.99,1.85) r=3.06 portalCount=2 visibleCells=45 cellBspRoot=ok worldOrigin=(774.75,426.06,16.42) +[cell-cache] envCellId=0xACB50111 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-4.70,0.15,1.69) r=3.01 portalCount=2 visibleCells=50 cellBspRoot=ok worldOrigin=(774.75,426.06,16.42) +[cell-cache] envCellId=0xACB50112 physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(0.24,0.21,0.48) r=5.88 portalCount=4 visibleCells=50 cellBspRoot=ok worldOrigin=(774.75,436.06,16.42) +[cell-cache] envCellId=0xACB50113 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.04,-4.99,1.85) r=3.06 portalCount=2 visibleCells=53 cellBspRoot=ok worldOrigin=(774.75,436.06,16.42) +[cell-cache] envCellId=0xACB50114 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(4.99,-0.04,1.85) r=3.06 portalCount=2 visibleCells=43 cellBspRoot=ok worldOrigin=(774.75,436.06,16.42) +[cell-cache] envCellId=0xACB50115 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(0.04,4.99,1.85) r=3.06 portalCount=2 visibleCells=50 cellBspRoot=ok worldOrigin=(774.75,436.06,16.42) +[cell-cache] envCellId=0xACB50116 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-4.70,0.15,1.69) r=3.01 portalCount=2 visibleCells=50 cellBspRoot=ok worldOrigin=(774.75,436.06,16.42) +[cell-cache] envCellId=0xACB50117 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=55 cellBspRoot=ok worldOrigin=(774.75,446.06,16.42) +[cell-cache] envCellId=0xACB50118 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=54 cellBspRoot=ok worldOrigin=(774.75,446.06,16.42) +[cell-cache] envCellId=0xACB50119 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=55 cellBspRoot=ok worldOrigin=(774.75,446.06,16.42) +[cell-cache] envCellId=0xACB5011A physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=41 cellBspRoot=ok worldOrigin=(764.75,406.06,16.42) +[cell-cache] envCellId=0xACB5011B physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=41 cellBspRoot=ok worldOrigin=(764.75,406.06,16.42) +[cell-cache] envCellId=0xACB5011C physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=41 cellBspRoot=ok worldOrigin=(764.75,406.06,16.42) +[cell-cache] envCellId=0xACB5011D physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(0.27,-0.64,1.01) r=5.86 portalCount=3 visibleCells=41 cellBspRoot=ok worldOrigin=(764.75,416.06,16.42) +[cell-cache] envCellId=0xACB5011E physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(4.64,-0.16,1.69) r=3.01 portalCount=2 visibleCells=41 cellBspRoot=ok worldOrigin=(764.75,416.06,16.42) +[cell-cache] envCellId=0xACB5011F physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-4.64,0.16,1.69) r=3.01 portalCount=2 visibleCells=40 cellBspRoot=ok worldOrigin=(764.75,416.06,16.42) +[cell-cache] envCellId=0xACB50120 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.16,-4.64,1.69) r=3.01 portalCount=2 visibleCells=41 cellBspRoot=ok worldOrigin=(764.75,416.06,16.42) +[cell-cache] envCellId=0xACB50121 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=43 cellBspRoot=ok worldOrigin=(764.75,426.06,16.42) +[cell-cache] envCellId=0xACB50122 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=43 cellBspRoot=ok worldOrigin=(764.75,426.06,16.42) +[cell-cache] envCellId=0xACB50123 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=43 cellBspRoot=ok worldOrigin=(764.75,426.06,16.42) +[cell-cache] envCellId=0xACB50124 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=43 cellBspRoot=ok worldOrigin=(764.75,436.06,16.42) +[cell-cache] envCellId=0xACB50125 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=43 cellBspRoot=ok worldOrigin=(764.75,436.06,16.42) +[cell-cache] envCellId=0xACB50126 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=43 cellBspRoot=ok worldOrigin=(764.75,436.06,16.42) +[cell-cache] envCellId=0xACB50127 physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(-1.28,-0.32,2.62) r=6.94 portalCount=2 visibleCells=66 cellBspRoot=ok worldOrigin=(764.75,446.06,16.42) +[cell-cache] envCellId=0xACB50128 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=41 cellBspRoot=ok worldOrigin=(754.75,406.06,16.42) +[cell-cache] envCellId=0xACB50129 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=41 cellBspRoot=ok worldOrigin=(754.75,406.06,16.42) +[cell-cache] envCellId=0xACB5012A physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=31 cellBspRoot=ok worldOrigin=(754.75,406.06,16.42) +[cell-cache] envCellId=0xACB5012B physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=40 cellBspRoot=ok worldOrigin=(754.75,416.06,16.42) +[cell-cache] envCellId=0xACB5012C physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=40 cellBspRoot=ok worldOrigin=(754.75,416.06,16.42) +[cell-cache] envCellId=0xACB5012D physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=40 cellBspRoot=ok worldOrigin=(754.75,416.06,16.42) +[cell-cache] envCellId=0xACB5012E physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=61 cellBspRoot=ok worldOrigin=(754.75,446.06,16.42) +[cell-cache] envCellId=0xACB5012F physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=61 cellBspRoot=ok worldOrigin=(754.75,446.06,16.42) +[cell-cache] envCellId=0xACB50130 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=64 cellBspRoot=ok worldOrigin=(754.75,446.06,16.42) +[cell-cache] envCellId=0xACB50131 physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(0.27,-0.64,1.01) r=5.86 portalCount=3 visibleCells=58 cellBspRoot=ok worldOrigin=(754.75,456.06,16.42) +[cell-cache] envCellId=0xACB50132 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(4.64,-0.16,1.69) r=3.01 portalCount=2 visibleCells=55 cellBspRoot=ok worldOrigin=(754.75,456.06,16.42) +[cell-cache] envCellId=0xACB50133 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-4.64,0.16,1.69) r=3.01 portalCount=2 visibleCells=58 cellBspRoot=ok worldOrigin=(754.75,456.06,16.42) +[cell-cache] envCellId=0xACB50134 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.16,-4.64,1.69) r=3.01 portalCount=2 visibleCells=57 cellBspRoot=ok worldOrigin=(754.75,456.06,16.42) +[cell-cache] envCellId=0xACB50135 physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(-1.28,-0.32,2.62) r=6.94 portalCount=2 visibleCells=68 cellBspRoot=ok worldOrigin=(754.75,466.06,16.42) +[cell-cache] envCellId=0xACB50136 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=52 cellBspRoot=ok worldOrigin=(754.75,476.06,16.42) +[cell-cache] envCellId=0xACB50137 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=40 cellBspRoot=ok worldOrigin=(754.75,476.06,16.42) +[cell-cache] envCellId=0xACB50138 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=51 cellBspRoot=ok worldOrigin=(754.75,476.06,16.42) +[cell-cache] envCellId=0xACB50139 physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(-1.28,-0.32,2.62) r=6.94 portalCount=2 visibleCells=90 cellBspRoot=ok worldOrigin=(744.75,456.06,16.42) +[cell-cache] envCellId=0xACB5013A physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(-1.28,-0.32,2.62) r=6.94 portalCount=2 visibleCells=38 cellBspRoot=ok worldOrigin=(744.75,476.06,16.42) +[cell-cache] envCellId=0xACB5013B physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=71 cellBspRoot=ok worldOrigin=(734.75,426.06,16.42) +[cell-cache] envCellId=0xACB5013C physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=62 cellBspRoot=ok worldOrigin=(734.75,426.06,16.42) +[cell-cache] envCellId=0xACB5013D physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=71 cellBspRoot=ok worldOrigin=(734.75,426.06,16.42) +[cell-cache] envCellId=0xACB5013E physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(-1.28,-0.32,2.62) r=6.94 portalCount=2 visibleCells=76 cellBspRoot=ok worldOrigin=(734.75,436.06,16.42) +[cell-cache] envCellId=0xACB5013F physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(0.27,-0.64,1.01) r=5.86 portalCount=3 visibleCells=83 cellBspRoot=ok worldOrigin=(734.75,446.06,16.42) +[cell-cache] envCellId=0xACB50140 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(4.64,-0.16,1.69) r=3.01 portalCount=2 visibleCells=76 cellBspRoot=ok worldOrigin=(734.75,446.06,16.42) +[cell-cache] envCellId=0xACB50141 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-4.64,0.16,1.69) r=3.01 portalCount=2 visibleCells=76 cellBspRoot=ok worldOrigin=(734.75,446.06,16.42) +[cell-cache] envCellId=0xACB50142 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.16,-4.64,1.69) r=3.01 portalCount=3 visibleCells=83 cellBspRoot=ok worldOrigin=(734.75,446.06,16.42) +[cell-cache] envCellId=0xACB50143 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=74 cellBspRoot=ok worldOrigin=(734.75,456.06,16.42) +[cell-cache] envCellId=0xACB50144 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=76 cellBspRoot=ok worldOrigin=(734.75,456.06,16.42) +[cell-cache] envCellId=0xACB50145 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=74 cellBspRoot=ok worldOrigin=(734.75,456.06,16.42) +[cell-cache] envCellId=0xACB50146 physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(-1.28,-0.32,2.62) r=6.94 portalCount=2 visibleCells=77 cellBspRoot=ok worldOrigin=(734.75,476.06,16.42) +[cell-cache] envCellId=0xACB50147 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=64 cellBspRoot=ok worldOrigin=(724.75,426.06,16.42) +[cell-cache] envCellId=0xACB50148 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=64 cellBspRoot=ok worldOrigin=(724.75,426.06,16.42) +[cell-cache] envCellId=0xACB50149 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=65 cellBspRoot=ok worldOrigin=(724.75,426.06,16.42) +[cell-cache] envCellId=0xACB5014A physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=65 cellBspRoot=ok worldOrigin=(724.75,436.06,16.42) +[cell-cache] envCellId=0xACB5014B physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=65 cellBspRoot=ok worldOrigin=(724.75,436.06,16.42) +[cell-cache] envCellId=0xACB5014C physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=65 cellBspRoot=ok worldOrigin=(724.75,436.06,16.42) +[cell-cache] envCellId=0xACB5014D physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.61,0.46,1.31) r=4.73 portalCount=2 visibleCells=83 cellBspRoot=ok worldOrigin=(724.75,446.06,16.42) +[cell-cache] envCellId=0xACB5014E physicsPolyCount=16 resolvedCount=16 bspTotalLeafPolys=16 bspUnmatchedIds=0 bsphere=(-0.21,0.11,3.12) r=7.85 portalCount=5 visibleCells=83 cellBspRoot=ok worldOrigin=(724.75,446.06,16.42) +[cell-cache] envCellId=0xACB5014F physicsPolyCount=12 resolvedCount=12 bspTotalLeafPolys=12 bspUnmatchedIds=0 bsphere=(0.44,-0.71,2.36) r=8.18 portalCount=3 visibleCells=72 cellBspRoot=ok worldOrigin=(724.75,456.06,16.42) +[cell-cache] envCellId=0xACB50150 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=66 cellBspRoot=ok worldOrigin=(724.75,466.06,16.42) +[cell-cache] envCellId=0xACB50151 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=68 cellBspRoot=ok worldOrigin=(724.75,466.06,16.42) +[cell-cache] envCellId=0xACB50152 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=69 cellBspRoot=ok worldOrigin=(724.75,466.06,16.42) +[cell-cache] envCellId=0xACB50153 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=73 cellBspRoot=ok worldOrigin=(724.75,476.06,16.42) +[cell-cache] envCellId=0xACB50154 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=74 cellBspRoot=ok worldOrigin=(724.75,476.06,16.42) +[cell-cache] envCellId=0xACB50155 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=73 cellBspRoot=ok worldOrigin=(724.75,476.06,16.42) +[cell-cache] envCellId=0xACB50156 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=76 cellBspRoot=ok worldOrigin=(714.75,436.06,16.42) +[cell-cache] envCellId=0xACB50157 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=65 cellBspRoot=ok worldOrigin=(714.75,436.06,16.42) +[cell-cache] envCellId=0xACB50158 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=3 visibleCells=73 cellBspRoot=ok worldOrigin=(714.75,436.06,16.42) +[cell-cache] envCellId=0xACB50159 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.61,0.46,1.31) r=4.73 portalCount=2 visibleCells=73 cellBspRoot=ok worldOrigin=(714.75,446.06,16.42) +[cell-cache] envCellId=0xACB5015A physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(-0.03,0.55,2.18) r=8.42 portalCount=6 visibleCells=83 cellBspRoot=ok worldOrigin=(714.75,446.06,16.42) +[cell-cache] envCellId=0xACB5015B physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(1.49,0.92,5.80) r=9.23 portalCount=6 visibleCells=77 cellBspRoot=ok worldOrigin=(714.75,456.06,16.42) +[cell-cache] envCellId=0xACB5015C physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.61,0.46,1.31) r=4.73 portalCount=2 visibleCells=74 cellBspRoot=ok worldOrigin=(714.75,456.06,16.42) +[cell-cache] envCellId=0xACB5015D physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=70 cellBspRoot=ok worldOrigin=(714.75,466.06,16.42) +[cell-cache] envCellId=0xACB5015E physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=3 visibleCells=74 cellBspRoot=ok worldOrigin=(714.75,466.06,16.42) +[cell-cache] envCellId=0xACB5015F physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=69 cellBspRoot=ok worldOrigin=(714.75,466.06,16.42) +[cell-cache] envCellId=0xACB50160 physicsPolyCount=2 resolvedCount=2 bspTotalLeafPolys=2 bspUnmatchedIds=0 bsphere=(-0.46,0.33,1.19) r=9.03 portalCount=4 visibleCells=80 cellBspRoot=ok worldOrigin=(724.75,446.06,22.42) +[cell-cache] envCellId=0xACB50161 physicsPolyCount=2 resolvedCount=2 bspTotalLeafPolys=2 bspUnmatchedIds=0 bsphere=(2.31,-1.34,3.64) r=8.96 portalCount=4 visibleCells=69 cellBspRoot=ok worldOrigin=(724.75,456.06,22.42) +[cell-cache] envCellId=0xACB50162 physicsPolyCount=1 resolvedCount=1 bspTotalLeafPolys=1 bspUnmatchedIds=0 bsphere=(-0.46,0.33,1.19) r=9.03 portalCount=5 visibleCells=75 cellBspRoot=ok worldOrigin=(714.75,446.06,22.42) +[cell-cache] envCellId=0xACB50163 physicsPolyCount=1 resolvedCount=1 bspTotalLeafPolys=1 bspUnmatchedIds=0 bsphere=(-0.46,0.33,1.19) r=9.03 portalCount=5 visibleCells=73 cellBspRoot=ok worldOrigin=(714.75,456.06,22.42) +[cell-cache] envCellId=0xACB50164 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.00,0.00,0.00) r=9.28 portalCount=5 visibleCells=80 cellBspRoot=ok worldOrigin=(704.75,446.06,22.42) +[cell-cache] envCellId=0xACB50165 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(1.09,-0.59,-0.21) r=10.35 portalCount=5 visibleCells=77 cellBspRoot=ok worldOrigin=(704.75,456.06,22.42) +[cell-cache] envCellId=0xACB50166 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.05,-0.18,2.74) r=7.95 portalCount=5 visibleCells=80 cellBspRoot=ok worldOrigin=(694.75,446.06,22.42) +[cell-cache] envCellId=0xACB50167 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(0.14,2.63,1.15) r=3.90 portalCount=2 visibleCells=74 cellBspRoot=ok worldOrigin=(694.75,446.06,22.42) +[cell-cache] envCellId=0xACB50168 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.56,0.39,1.14) r=4.61 portalCount=2 visibleCells=69 cellBspRoot=ok worldOrigin=(694.75,456.06,22.42) +[cell-cache] envCellId=0xACB50169 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.09,0.10,2.80) r=7.89 portalCount=5 visibleCells=75 cellBspRoot=ok worldOrigin=(694.75,456.06,22.42) +[cell-cache] envCellId=0xACB5016A physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(-1.28,-0.32,2.62) r=6.94 portalCount=3 visibleCells=74 cellBspRoot=ok worldOrigin=(684.75,456.06,22.42) +[cell-cache] envCellId=0xACB5016B physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(-1.28,-0.32,2.62) r=6.94 portalCount=2 visibleCells=74 cellBspRoot=ok worldOrigin=(674.75,456.06,22.42) +[cell-cache] envCellId=0xACB5016C physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=85 cellBspRoot=ok worldOrigin=(664.75,456.06,22.42) +[cell-cache] envCellId=0xACB5016D physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=80 cellBspRoot=ok worldOrigin=(664.75,456.06,22.42) +[cell-cache] envCellId=0xACB5016E physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=85 cellBspRoot=ok worldOrigin=(664.75,456.06,22.42) +[cell-cache] envCellId=0xACB5016F physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(2.17,-0.57,0.31) r=9.09 portalCount=3 visibleCells=73 cellBspRoot=ok worldOrigin=(724.75,446.06,28.42) +[cell-cache] envCellId=0xACB50170 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(1.13,-0.92,1.23) r=7.47 portalCount=3 visibleCells=69 cellBspRoot=ok worldOrigin=(724.75,456.06,28.42) +[cell-cache] envCellId=0xACB50171 physicsPolyCount=3 resolvedCount=3 bspTotalLeafPolys=3 bspUnmatchedIds=0 bsphere=(-0.66,0.53,1.17) r=8.13 portalCount=4 visibleCells=73 cellBspRoot=ok worldOrigin=(714.75,446.06,28.42) +[cell-cache] envCellId=0xACB50172 physicsPolyCount=3 resolvedCount=3 bspTotalLeafPolys=3 bspUnmatchedIds=0 bsphere=(-0.66,0.53,1.17) r=8.13 portalCount=4 visibleCells=69 cellBspRoot=ok worldOrigin=(714.75,456.06,28.42) +[cell-cache] envCellId=0xACB50173 physicsPolyCount=3 resolvedCount=3 bspTotalLeafPolys=3 bspUnmatchedIds=0 bsphere=(-0.66,0.53,1.17) r=8.13 portalCount=4 visibleCells=74 cellBspRoot=ok worldOrigin=(704.75,446.06,28.42) +[cell-cache] envCellId=0xACB50174 physicsPolyCount=3 resolvedCount=3 bspTotalLeafPolys=3 bspUnmatchedIds=0 bsphere=(-0.66,0.53,1.17) r=8.13 portalCount=4 visibleCells=69 cellBspRoot=ok worldOrigin=(704.75,456.06,28.42) +[cell-cache] envCellId=0xACB50175 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(2.17,-0.57,0.31) r=9.09 portalCount=3 visibleCells=67 cellBspRoot=ok worldOrigin=(694.75,446.06,28.42) +[cell-cache] envCellId=0xACB50176 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(2.17,-0.57,0.31) r=9.09 portalCount=3 visibleCells=66 cellBspRoot=ok worldOrigin=(694.75,456.06,28.42) +[cell-cache] envCellId=0xACB50177 physicsPolyCount=32 resolvedCount=32 bspTotalLeafPolys=32 bspUnmatchedIds=0 bsphere=(0.38,-0.09,-1.21) r=7.37 portalCount=3 visibleCells=76 cellBspRoot=ok worldOrigin=(684.75,446.06,28.42) +[cell-cache] envCellId=0xACB50178 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=76 cellBspRoot=ok worldOrigin=(674.75,446.06,28.42) +[cell-cache] envCellId=0xACB50179 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=76 cellBspRoot=ok worldOrigin=(674.75,446.06,28.42) +[cell-cache] envCellId=0xACB5017A physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=76 cellBspRoot=ok worldOrigin=(674.75,446.06,28.42) +[cell-cache] envCellId=0xACB5017B physicsPolyCount=32 resolvedCount=32 bspTotalLeafPolys=32 bspUnmatchedIds=0 bsphere=(0.38,-0.09,-1.21) r=7.37 portalCount=2 visibleCells=70 cellBspRoot=ok worldOrigin=(664.75,446.06,28.42) +[cell-cache] envCellId=0xACB5017C physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=88 cellBspRoot=ok worldOrigin=(734.75,376.06,34.42) +[cell-cache] envCellId=0xACB5017D physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=73 cellBspRoot=ok worldOrigin=(734.75,376.06,34.42) +[cell-cache] envCellId=0xACB5017E physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=97 cellBspRoot=ok worldOrigin=(734.75,376.06,34.42) +[cell-cache] envCellId=0xACB5017F physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(-1.28,-0.32,2.62) r=6.94 portalCount=3 visibleCells=77 cellBspRoot=ok worldOrigin=(734.75,386.06,34.42) +[cell-cache] envCellId=0xACB50180 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.89,1.66,4.03) r=9.12 portalCount=5 visibleCells=68 cellBspRoot=ok worldOrigin=(734.75,396.06,34.42) +[cell-cache] envCellId=0xACB50181 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(0.14,2.63,1.15) r=3.90 portalCount=2 visibleCells=66 cellBspRoot=ok worldOrigin=(734.75,396.06,34.42) +[cell-cache] envCellId=0xACB50182 physicsPolyCount=12 resolvedCount=12 bspTotalLeafPolys=12 bspUnmatchedIds=0 bsphere=(0.44,-0.71,2.36) r=8.18 portalCount=3 visibleCells=66 cellBspRoot=ok worldOrigin=(734.75,406.06,34.42) +[cell-cache] envCellId=0xACB50183 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=77 cellBspRoot=ok worldOrigin=(724.75,356.06,34.42) +[cell-cache] envCellId=0xACB50184 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=77 cellBspRoot=ok worldOrigin=(724.75,356.06,34.42) +[cell-cache] envCellId=0xACB50185 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=76 cellBspRoot=ok worldOrigin=(724.75,356.06,34.42) +[cell-cache] envCellId=0xACB50186 physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(-1.28,-0.32,2.62) r=6.94 portalCount=2 visibleCells=89 cellBspRoot=ok worldOrigin=(724.75,366.06,34.42) +[cell-cache] envCellId=0xACB50187 physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(0.27,-0.64,1.01) r=5.86 portalCount=3 visibleCells=97 cellBspRoot=ok worldOrigin=(724.75,376.06,34.42) +[cell-cache] envCellId=0xACB50188 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(4.64,-0.16,1.69) r=3.01 portalCount=2 visibleCells=97 cellBspRoot=ok worldOrigin=(724.75,376.06,34.42) +[cell-cache] envCellId=0xACB50189 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-4.64,0.16,1.69) r=3.01 portalCount=2 visibleCells=86 cellBspRoot=ok worldOrigin=(724.75,376.06,34.42) +[cell-cache] envCellId=0xACB5018A physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.16,-4.64,1.69) r=3.01 portalCount=2 visibleCells=97 cellBspRoot=ok worldOrigin=(724.75,376.06,34.42) +[cell-cache] envCellId=0xACB5018B physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=97 cellBspRoot=ok worldOrigin=(724.75,386.06,34.42) +[cell-cache] envCellId=0xACB5018C physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=3 visibleCells=96 cellBspRoot=ok worldOrigin=(724.75,386.06,34.42) +[cell-cache] envCellId=0xACB5018D physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=97 cellBspRoot=ok worldOrigin=(724.75,386.06,34.42) +[cell-cache] envCellId=0xACB5018E physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-0.31,0.85,2.16) r=8.80 portalCount=4 visibleCells=66 cellBspRoot=ok worldOrigin=(724.75,396.06,34.42) +[cell-cache] envCellId=0xACB5018F physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(1.49,0.92,5.80) r=9.23 portalCount=6 visibleCells=62 cellBspRoot=ok worldOrigin=(724.75,406.06,34.42) +[cell-cache] envCellId=0xACB50190 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.61,0.46,1.31) r=4.73 portalCount=2 visibleCells=62 cellBspRoot=ok worldOrigin=(724.75,406.06,34.42) +[cell-cache] envCellId=0xACB50191 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=62 cellBspRoot=ok worldOrigin=(724.75,416.06,34.42) +[cell-cache] envCellId=0xACB50192 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=3 visibleCells=62 cellBspRoot=ok worldOrigin=(724.75,416.06,34.42) +[cell-cache] envCellId=0xACB50193 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=3 visibleCells=62 cellBspRoot=ok worldOrigin=(724.75,416.06,34.42) +[cell-cache] envCellId=0xACB50194 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=40 cellBspRoot=ok worldOrigin=(714.75,346.06,34.42) +[cell-cache] envCellId=0xACB50195 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=40 cellBspRoot=ok worldOrigin=(714.75,346.06,34.42) +[cell-cache] envCellId=0xACB50196 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=40 cellBspRoot=ok worldOrigin=(714.75,346.06,34.42) +[cell-cache] envCellId=0xACB50197 physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(0.24,0.21,0.48) r=5.88 portalCount=4 visibleCells=40 cellBspRoot=ok worldOrigin=(714.75,356.06,34.42) +[cell-cache] envCellId=0xACB50198 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.04,-4.99,1.85) r=3.06 portalCount=2 visibleCells=35 cellBspRoot=ok worldOrigin=(714.75,356.06,34.42) +[cell-cache] envCellId=0xACB50199 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(4.99,-0.04,1.85) r=3.06 portalCount=2 visibleCells=36 cellBspRoot=ok worldOrigin=(714.75,356.06,34.42) +[cell-cache] envCellId=0xACB5019A physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(0.04,4.99,1.85) r=3.06 portalCount=2 visibleCells=40 cellBspRoot=ok worldOrigin=(714.75,356.06,34.42) +[cell-cache] envCellId=0xACB5019B physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-4.70,0.15,1.69) r=3.01 portalCount=2 visibleCells=72 cellBspRoot=ok worldOrigin=(714.75,356.06,34.42) +[cell-cache] envCellId=0xACB5019C physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=32 cellBspRoot=ok worldOrigin=(714.75,366.06,34.42) +[cell-cache] envCellId=0xACB5019D physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=32 cellBspRoot=ok worldOrigin=(714.75,366.06,34.42) +[cell-cache] envCellId=0xACB5019E physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=35 cellBspRoot=ok worldOrigin=(714.75,366.06,34.42) +[cell-cache] envCellId=0xACB5019F physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.56,0.39,1.14) r=4.61 portalCount=2 visibleCells=88 cellBspRoot=ok worldOrigin=(714.75,386.06,34.42) +[cell-cache] envCellId=0xACB501A0 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.09,0.10,2.80) r=7.89 portalCount=5 visibleCells=77 cellBspRoot=ok worldOrigin=(714.75,386.06,34.42) +[cell-cache] envCellId=0xACB501A1 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(-0.36,1.83,1.58) r=9.75 portalCount=5 visibleCells=77 cellBspRoot=ok worldOrigin=(714.75,396.06,34.42) +[cell-cache] envCellId=0xACB501A2 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(-0.36,1.83,1.58) r=9.75 portalCount=5 visibleCells=66 cellBspRoot=ok worldOrigin=(714.75,406.06,34.42) +[cell-cache] envCellId=0xACB501A3 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.05,-0.18,2.74) r=7.95 portalCount=5 visibleCells=66 cellBspRoot=ok worldOrigin=(714.75,416.06,34.42) +[cell-cache] envCellId=0xACB501A4 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(0.14,2.63,1.15) r=3.90 portalCount=2 visibleCells=64 cellBspRoot=ok worldOrigin=(714.75,416.06,34.42) +[cell-cache] envCellId=0xACB501A5 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=43 cellBspRoot=ok worldOrigin=(704.75,346.06,34.42) +[cell-cache] envCellId=0xACB501A6 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=43 cellBspRoot=ok worldOrigin=(704.75,346.06,34.42) +[cell-cache] envCellId=0xACB501A7 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=43 cellBspRoot=ok worldOrigin=(704.75,346.06,34.42) +[cell-cache] envCellId=0xACB501A8 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=32 cellBspRoot=ok worldOrigin=(704.75,356.06,34.42) +[cell-cache] envCellId=0xACB501A9 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=36 cellBspRoot=ok worldOrigin=(704.75,356.06,34.42) +[cell-cache] envCellId=0xACB501AA physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=32 cellBspRoot=ok worldOrigin=(704.75,356.06,34.42) +[cell-cache] envCellId=0xACB501AB physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=32 cellBspRoot=ok worldOrigin=(704.75,366.06,34.42) +[cell-cache] envCellId=0xACB501AC physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=31 cellBspRoot=ok worldOrigin=(704.75,366.06,34.42) +[cell-cache] envCellId=0xACB501AD physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=32 cellBspRoot=ok worldOrigin=(704.75,366.06,34.42) +[cell-cache] envCellId=0xACB501AE physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.05,-0.18,2.74) r=7.95 portalCount=5 visibleCells=77 cellBspRoot=ok worldOrigin=(704.75,386.06,34.42) +[cell-cache] envCellId=0xACB501AF physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(0.14,2.63,1.15) r=3.90 portalCount=2 visibleCells=69 cellBspRoot=ok worldOrigin=(704.75,386.06,34.42) +[cell-cache] envCellId=0xACB501B0 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.61,0.46,1.31) r=4.73 portalCount=2 visibleCells=77 cellBspRoot=ok worldOrigin=(704.75,396.06,34.42) +[cell-cache] envCellId=0xACB501B1 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(-0.24,0.48,2.14) r=8.52 portalCount=6 visibleCells=77 cellBspRoot=ok worldOrigin=(704.75,396.06,34.42) +[cell-cache] envCellId=0xACB501B2 physicsPolyCount=3 resolvedCount=3 bspTotalLeafPolys=3 bspUnmatchedIds=0 bsphere=(0.16,0.86,1.41) r=9.07 portalCount=4 visibleCells=66 cellBspRoot=ok worldOrigin=(704.75,406.06,34.42) +[cell-cache] envCellId=0xACB501B3 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(0.34,-0.34,4.19) r=7.81 portalCount=3 visibleCells=66 cellBspRoot=ok worldOrigin=(704.75,416.06,34.42) +[cell-cache] envCellId=0xACB501B4 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=70 cellBspRoot=ok worldOrigin=(694.75,386.06,34.42) +[cell-cache] envCellId=0xACB501B5 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=3 visibleCells=70 cellBspRoot=ok worldOrigin=(694.75,386.06,34.42) +[cell-cache] envCellId=0xACB501B6 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=70 cellBspRoot=ok worldOrigin=(694.75,386.06,34.42) +[cell-cache] envCellId=0xACB501B7 physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(0.27,-0.64,1.01) r=5.86 portalCount=3 visibleCells=77 cellBspRoot=ok worldOrigin=(694.75,396.06,34.42) +[cell-cache] envCellId=0xACB501B8 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(4.64,-0.16,1.69) r=3.01 portalCount=2 visibleCells=77 cellBspRoot=ok worldOrigin=(694.75,396.06,34.42) +[cell-cache] envCellId=0xACB501B9 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-4.64,0.16,1.69) r=3.01 portalCount=2 visibleCells=66 cellBspRoot=ok worldOrigin=(694.75,396.06,34.42) +[cell-cache] envCellId=0xACB501BA physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.16,-4.64,1.69) r=3.01 portalCount=3 visibleCells=77 cellBspRoot=ok worldOrigin=(694.75,396.06,34.42) +[cell-cache] envCellId=0xACB501BB physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=77 cellBspRoot=ok worldOrigin=(694.75,406.06,34.42) +[cell-cache] envCellId=0xACB501BC physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=77 cellBspRoot=ok worldOrigin=(694.75,406.06,34.42) +[cell-cache] envCellId=0xACB501BD physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=77 cellBspRoot=ok worldOrigin=(694.75,406.06,34.42) +[cell-cache] envCellId=0xACB501BE physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(0.27,-0.64,1.01) r=5.86 portalCount=3 visibleCells=88 cellBspRoot=ok worldOrigin=(684.75,406.06,34.42) +[cell-cache] envCellId=0xACB501BF physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(4.64,-0.16,1.69) r=3.01 portalCount=2 visibleCells=64 cellBspRoot=ok worldOrigin=(684.75,406.06,34.42) +[cell-cache] envCellId=0xACB501C0 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-4.64,0.16,1.69) r=3.01 portalCount=2 visibleCells=77 cellBspRoot=ok worldOrigin=(684.75,406.06,34.42) +[cell-cache] envCellId=0xACB501C1 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.16,-4.64,1.69) r=3.01 portalCount=2 visibleCells=77 cellBspRoot=ok worldOrigin=(684.75,406.06,34.42) +[cell-cache] envCellId=0xACB501C2 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=80 cellBspRoot=ok worldOrigin=(684.75,416.06,34.42) +[cell-cache] envCellId=0xACB501C3 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=80 cellBspRoot=ok worldOrigin=(684.75,416.06,34.42) +[cell-cache] envCellId=0xACB501C4 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=82 cellBspRoot=ok worldOrigin=(684.75,416.06,34.42) +[cell-cache] envCellId=0xACB501C5 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=60 cellBspRoot=ok worldOrigin=(674.75,406.06,34.42) +[cell-cache] envCellId=0xACB501C6 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=64 cellBspRoot=ok worldOrigin=(674.75,406.06,34.42) +[cell-cache] envCellId=0xACB501C7 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=60 cellBspRoot=ok worldOrigin=(674.75,406.06,34.42) +[cell-cache] envCellId=0xACB501C8 physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(0.27,-0.64,1.01) r=5.86 portalCount=3 visibleCells=83 cellBspRoot=ok worldOrigin=(674.75,416.06,34.42) +[cell-cache] envCellId=0xACB501C9 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(4.64,-0.16,1.69) r=3.01 portalCount=2 visibleCells=80 cellBspRoot=ok worldOrigin=(674.75,416.06,34.42) +[cell-cache] envCellId=0xACB501CA physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-4.64,0.16,1.69) r=3.01 portalCount=2 visibleCells=53 cellBspRoot=ok worldOrigin=(674.75,416.06,34.42) +[cell-cache] envCellId=0xACB501CB physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.16,-4.64,1.69) r=3.01 portalCount=2 visibleCells=57 cellBspRoot=ok worldOrigin=(674.75,416.06,34.42) +[cell-cache] envCellId=0xACB501CC physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=47 cellBspRoot=ok worldOrigin=(674.75,426.06,34.42) +[cell-cache] envCellId=0xACB501CD physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=47 cellBspRoot=ok worldOrigin=(674.75,426.06,34.42) +[cell-cache] envCellId=0xACB501CE physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=49 cellBspRoot=ok worldOrigin=(674.75,426.06,34.42) +[cell-cache] envCellId=0xACB501CF physicsPolyCount=32 resolvedCount=32 bspTotalLeafPolys=32 bspUnmatchedIds=0 bsphere=(0.38,-0.09,-1.21) r=7.37 portalCount=2 visibleCells=66 cellBspRoot=ok worldOrigin=(674.75,436.06,34.42) +[cell-cache] envCellId=0xACB501D0 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=59 cellBspRoot=ok worldOrigin=(664.75,416.06,34.42) +[cell-cache] envCellId=0xACB501D1 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=55 cellBspRoot=ok worldOrigin=(664.75,416.06,34.42) +[cell-cache] envCellId=0xACB501D2 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=59 cellBspRoot=ok worldOrigin=(664.75,416.06,34.42) +[cell-cache] envCellId=0xACB501D3 physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(0.27,-0.64,1.01) r=5.86 portalCount=3 visibleCells=80 cellBspRoot=ok worldOrigin=(664.75,426.06,34.42) +[cell-cache] envCellId=0xACB501D4 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(4.64,-0.16,1.69) r=3.01 portalCount=2 visibleCells=54 cellBspRoot=ok worldOrigin=(664.75,426.06,34.42) +[cell-cache] envCellId=0xACB501D5 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-4.64,0.16,1.69) r=3.01 portalCount=2 visibleCells=59 cellBspRoot=ok worldOrigin=(664.75,426.06,34.42) +[cell-cache] envCellId=0xACB501D6 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.16,-4.64,1.69) r=3.01 portalCount=2 visibleCells=33 cellBspRoot=ok worldOrigin=(664.75,426.06,34.42) +[cell-cache] envCellId=0xACB501D7 physicsPolyCount=32 resolvedCount=32 bspTotalLeafPolys=32 bspUnmatchedIds=0 bsphere=(0.38,-0.09,-1.21) r=7.37 portalCount=2 visibleCells=54 cellBspRoot=ok worldOrigin=(664.75,436.06,34.42) +[cell-cache] envCellId=0xACB501D8 physicsPolyCount=7 resolvedCount=7 bspTotalLeafPolys=7 bspUnmatchedIds=0 bsphere=(-0.68,-0.29,1.45) r=7.91 portalCount=3 visibleCells=68 cellBspRoot=ok worldOrigin=(734.75,396.06,40.42) +[cell-cache] envCellId=0xACB501D9 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(1.13,-0.92,1.23) r=7.47 portalCount=3 visibleCells=66 cellBspRoot=ok worldOrigin=(734.75,406.06,40.42) +[cell-cache] envCellId=0xACB501DA physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(0.52,0.72,1.14) r=8.04 portalCount=4 visibleCells=66 cellBspRoot=ok worldOrigin=(724.75,396.06,40.42) +[cell-cache] envCellId=0xACB501DB physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.00,0.00,1.50) r=7.24 portalCount=4 visibleCells=62 cellBspRoot=ok worldOrigin=(724.75,406.06,40.42) +[cell-cache] envCellId=0xACB501DC physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(2.17,-0.57,0.31) r=9.09 portalCount=3 visibleCells=77 cellBspRoot=ok worldOrigin=(714.75,386.06,40.42) +[cell-cache] envCellId=0xACB501DD physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(0.03,0.03,0.21) r=7.65 portalCount=5 visibleCells=71 cellBspRoot=ok worldOrigin=(714.75,396.06,40.42) +[cell-cache] envCellId=0xACB501DE physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(0.03,0.03,0.21) r=7.65 portalCount=5 visibleCells=66 cellBspRoot=ok worldOrigin=(714.75,406.06,40.42) +[cell-cache] envCellId=0xACB501DF physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(2.17,-0.57,0.31) r=9.09 portalCount=3 visibleCells=66 cellBspRoot=ok worldOrigin=(714.75,416.06,40.42) +[cell-cache] envCellId=0xACB501E0 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=26 cellBspRoot=ok worldOrigin=(704.75,326.06,40.42) +[cell-cache] envCellId=0xACB501E1 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=26 cellBspRoot=ok worldOrigin=(704.75,326.06,40.42) +[cell-cache] envCellId=0xACB501E2 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=26 cellBspRoot=ok worldOrigin=(704.75,326.06,40.42) +[cell-cache] envCellId=0xACB501E3 physicsPolyCount=32 resolvedCount=32 bspTotalLeafPolys=32 bspUnmatchedIds=0 bsphere=(0.38,-0.09,-1.21) r=7.37 portalCount=2 visibleCells=44 cellBspRoot=ok worldOrigin=(704.75,336.06,40.42) +[cell-cache] envCellId=0xACB501E4 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(2.17,-0.57,0.31) r=9.09 portalCount=3 visibleCells=77 cellBspRoot=ok worldOrigin=(704.75,386.06,40.42) +[cell-cache] envCellId=0xACB501E5 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.00,0.00,1.50) r=7.24 portalCount=4 visibleCells=77 cellBspRoot=ok worldOrigin=(704.75,396.06,40.42) +[cell-cache] envCellId=0xACB501E6 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(0.52,0.72,1.14) r=8.04 portalCount=4 visibleCells=66 cellBspRoot=ok worldOrigin=(704.75,406.06,40.42) +[cell-cache] envCellId=0xACB501E7 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(1.13,-0.92,1.23) r=7.47 portalCount=3 visibleCells=66 cellBspRoot=ok worldOrigin=(704.75,416.06,40.42) +[cell-cache] envCellId=0xACB501E8 physicsPolyCount=32 resolvedCount=32 bspTotalLeafPolys=32 bspUnmatchedIds=0 bsphere=(0.38,-0.09,-1.21) r=7.37 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(694.75,326.06,46.42) +[cell-cache] envCellId=0xACB501E9 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=14 cellBspRoot=ok worldOrigin=(684.75,326.06,46.42) +[cell-cache] envCellId=0xACB501EA physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=14 cellBspRoot=ok worldOrigin=(684.75,326.06,46.42) +[cell-cache] envCellId=0xACB501EB physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=14 cellBspRoot=ok worldOrigin=(684.75,326.06,46.42) +[cell-cache] envCellId=0xACB501EC physicsPolyCount=32 resolvedCount=32 bspTotalLeafPolys=32 bspUnmatchedIds=0 bsphere=(0.38,-0.09,-1.21) r=7.37 portalCount=2 visibleCells=11 cellBspRoot=ok worldOrigin=(684.75,336.06,52.42) +[cell-cache] envCellId=0xACB501ED physicsPolyCount=16 resolvedCount=16 bspTotalLeafPolys=16 bspUnmatchedIds=0 bsphere=(-0.19,-4.47,1.93) r=3.67 portalCount=1 visibleCells=8 cellBspRoot=ok worldOrigin=(684.75,346.06,52.42) +[cell-cache] envCellId=0xACB70100 physicsPolyCount=31 resolvedCount=31 bspTotalLeafPolys=31 bspUnmatchedIds=0 bsphere=(-0.05,0.23,2.72) r=6.96 portalCount=4 visibleCells=4 cellBspRoot=ok worldOrigin=(756.00,684.00,102.02) +[cell-cache] envCellId=0xACB70101 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.04,0.26,3.54) r=7.06 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(756.00,684.00,102.02) +[cell-cache] envCellId=0xACB70102 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.40,-5.10,1.40) r=1.96 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(756.00,684.00,102.02) +[cell-cache] envCellId=0xACB70103 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-4.21,-2.59,1.85) r=1.23 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(756.00,684.00,102.02) +[cell-cache] envCellId=0xACB70104 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.20,-1.17,1.23) r=1.71 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(756.00,684.00,102.02) +[cell-cache] envCellId=0xADB20100 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(0.00,-1.50,0.85) r=1.94 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(780.00,-300.00,30.02) +[cell-cache] envCellId=0xADB20101 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-0.02,-2.03,1.24) r=1.63 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(780.00,-300.00,30.02) +[cell-cache] envCellId=0xADB20102 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(0.09,0.74,0.35) r=4.65 portalCount=3 visibleCells=4 cellBspRoot=ok worldOrigin=(780.00,-300.00,30.02) +[cell-cache] envCellId=0xADB20103 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(2.46,-1.40,-0.02) r=1.95 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(780.00,-300.00,30.02) +[cell-cache] envCellId=0xADB20104 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(-2.46,-1.18,0.65) r=2.39 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(780.00,-300.00,30.02) +[cell-cache] envCellId=0xADB60100 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(0.00,-1.50,0.85) r=1.94 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(897.69,516.16,96.02) +[cell-cache] envCellId=0xADB60101 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-0.02,-2.03,1.24) r=1.63 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(897.69,516.16,96.02) +[cell-cache] envCellId=0xADB60102 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(0.09,0.74,0.35) r=4.65 portalCount=3 visibleCells=4 cellBspRoot=ok worldOrigin=(897.69,516.16,96.02) +[cell-cache] envCellId=0xADB60103 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(2.46,-1.40,-0.02) r=1.95 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(897.69,516.16,96.02) +[cell-cache] envCellId=0xADB60104 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(-2.46,-1.18,0.65) r=2.39 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(897.69,516.16,96.02) +[cell-cache] envCellId=0xADB70100 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(1.85,-0.72,1.58) r=9.18 portalCount=3 visibleCells=6 cellBspRoot=ok worldOrigin=(946.59,707.46,100.02) +[cell-cache] envCellId=0xADB70101 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.01,5.99,1.25) r=2.01 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(946.59,707.46,100.02) +[cell-cache] envCellId=0xADB70102 physicsPolyCount=17 resolvedCount=17 bspTotalLeafPolys=17 bspUnmatchedIds=0 bsphere=(1.28,0.38,6.54) r=8.97 portalCount=3 visibleCells=6 cellBspRoot=ok worldOrigin=(946.59,707.46,100.02) +[cell-cache] envCellId=0xADB70103 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.01,5.98,7.52) r=1.20 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(946.59,707.46,100.02) +[cell-cache] envCellId=0xADB70104 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.01,-5.98,7.52) r=1.20 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(946.59,707.46,100.02) +[cell-cache] envCellId=0xADB70105 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.01,-5.99,1.26) r=2.01 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(946.59,707.46,100.02) +[cell-cache] envCellId=0xADB70106 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.93,0.29,3.02) r=4.43 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(946.59,707.46,100.02) +[cell-cache] envCellId=0xADB80100 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(0.00,-1.50,0.85) r=1.94 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(876.86,852.07,92.02) +[cell-cache] envCellId=0xADB80101 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-0.02,-2.03,1.24) r=1.63 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(876.86,852.07,92.02) +[cell-cache] envCellId=0xADB80102 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(0.09,0.74,0.35) r=4.65 portalCount=3 visibleCells=4 cellBspRoot=ok worldOrigin=(876.86,852.07,92.02) +[cell-cache] envCellId=0xADB80103 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(2.46,-1.40,-0.02) r=1.95 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(876.86,852.07,92.02) +[cell-cache] envCellId=0xADB80104 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(-2.46,-1.18,0.65) r=2.39 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(876.86,852.07,92.02) +lb 0xA5B0FFFF: scenery tried=106 registered=88 noBounds=0 tooThin=0 (outdoorNone=20) +lb 0xA5B1FFFF: scenery tried=87 registered=87 noBounds=0 tooThin=0 (outdoorNone=0) +lb 0xA5B2FFFF: scenery tried=48 registered=48 noBounds=0 tooThin=0 (outdoorNone=0) +lb 0xA5B3FFFF: scenery tried=29 registered=29 noBounds=0 tooThin=0 (outdoorNone=0) +lb 0xA5B4FFFF: scenery tried=86 registered=39 noBounds=0 tooThin=0 (outdoorNone=52) +lb 0xA5B5FFFF: scenery tried=48 registered=48 noBounds=0 tooThin=0 (outdoorNone=0) +lb 0xA5B6FFFF: scenery tried=50 registered=48 noBounds=0 tooThin=0 (outdoorNone=2) +lb 0xA5B7FFFF: scenery tried=67 registered=60 noBounds=0 tooThin=0 (outdoorNone=7) +lb 0xA5B8FFFF: scenery tried=64 registered=64 noBounds=0 tooThin=0 (outdoorNone=0) +lb 0xA6B0FFFF: scenery tried=52 registered=50 noBounds=0 tooThin=0 (outdoorNone=2) +lb 0xA6B1FFFF: scenery tried=79 registered=76 noBounds=0 tooThin=0 (outdoorNone=3) +lb 0xA6B2FFFF: scenery tried=64 registered=64 noBounds=0 tooThin=0 (outdoorNone=0) +lb 0xA6B3FFFF: scenery tried=77 registered=76 noBounds=0 tooThin=0 (outdoorNone=1) +lb 0xA6B4FFFF: scenery tried=76 registered=73 noBounds=0 tooThin=0 (outdoorNone=3) +lb 0xA6B5FFFF: scenery tried=50 registered=44 noBounds=0 tooThin=0 (outdoorNone=6) +lb 0xA6B6FFFF: scenery tried=133 registered=97 noBounds=0 tooThin=0 (outdoorNone=36) +lb 0xA6B7FFFF: scenery tried=159 registered=121 noBounds=0 tooThin=0 (outdoorNone=38) +lb 0xA6B8FFFF: scenery tried=48 registered=48 noBounds=0 tooThin=0 (outdoorNone=0) +lb 0xA7B0FFFF: scenery tried=55 registered=54 noBounds=0 tooThin=0 (outdoorNone=1) +lb 0xA7B1FFFF: scenery tried=44 registered=44 noBounds=0 tooThin=0 (outdoorNone=0) +lb 0xA7B2FFFF: scenery tried=36 registered=36 noBounds=0 tooThin=0 (outdoorNone=0) +lb 0xA7B3FFFF: scenery tried=64 registered=44 noBounds=0 tooThin=0 (outdoorNone=19) +lb 0xA7B4FFFF: scenery tried=71 registered=34 noBounds=0 tooThin=0 (outdoorNone=29) +lb 0xA7B5FFFF: scenery tried=134 registered=61 noBounds=0 tooThin=0 (outdoorNone=73) +lb 0xA7B6FFFF: scenery tried=87 registered=75 noBounds=0 tooThin=0 (outdoorNone=12) +lb 0xA7B7FFFF: scenery tried=88 registered=48 noBounds=0 tooThin=0 (outdoorNone=40) +lb 0xA7B8FFFF: scenery tried=117 registered=28 noBounds=0 tooThin=0 (outdoorNone=89) +lb 0xA8B0FFFF: scenery tried=116 registered=105 noBounds=0 tooThin=0 (outdoorNone=10) +lb 0xA8B1FFFF: scenery tried=133 registered=103 noBounds=0 tooThin=0 (outdoorNone=30) +lb 0xA8B2FFFF: scenery tried=225 registered=139 noBounds=0 tooThin=0 (outdoorNone=88) +lb 0xA8B3FFFF: scenery tried=69 registered=55 noBounds=0 tooThin=0 (outdoorNone=14) +lb 0xA8B4FFFF: scenery tried=34 registered=24 noBounds=0 tooThin=0 (outdoorNone=10) +lb 0xA8B5FFFF: scenery tried=66 registered=43 noBounds=0 tooThin=0 (outdoorNone=23) +lb 0xA8B6FFFF: scenery tried=98 registered=85 noBounds=0 tooThin=0 (outdoorNone=13) +lb 0xA8B7FFFF: scenery tried=31 registered=16 noBounds=0 tooThin=0 (outdoorNone=15) +lb 0xA8B8FFFF: scenery tried=53 registered=14 noBounds=0 tooThin=0 (outdoorNone=39) +lb 0xA9B0FFFF: scenery tried=253 registered=153 noBounds=0 tooThin=0 (outdoorNone=106) +lb 0xA9B1FFFF: scenery tried=184 registered=113 noBounds=0 tooThin=0 (outdoorNone=69) +lb 0xA9B2FFFF: scenery tried=214 registered=136 noBounds=0 tooThin=0 (outdoorNone=68) +lb 0xA9B3FFFF: scenery tried=152 registered=97 noBounds=0 tooThin=0 (outdoorNone=58) +lb 0xA9B4FFFF: scenery tried=126 registered=0 noBounds=0 tooThin=0 (outdoorNone=78) +lb 0xA9B5FFFF: scenery tried=58 registered=8 noBounds=0 tooThin=0 (outdoorNone=48) +lb 0xA9B6FFFF: scenery tried=20 registered=5 noBounds=0 tooThin=0 (outdoorNone=15) +lb 0xA9B7FFFF: scenery tried=130 registered=40 noBounds=0 tooThin=0 (outdoorNone=90) +lb 0xA9B8FFFF: scenery tried=193 registered=57 noBounds=0 tooThin=0 (outdoorNone=136) +lb 0xAAB0FFFF: scenery tried=47 registered=42 noBounds=0 tooThin=0 (outdoorNone=5) +lb 0xAAB1FFFF: scenery tried=46 registered=26 noBounds=0 tooThin=0 (outdoorNone=19) +lb 0xAAB2FFFF: scenery tried=49 registered=37 noBounds=0 tooThin=0 (outdoorNone=12) +lb 0xAAB3FFFF: scenery tried=39 registered=25 noBounds=0 tooThin=0 (outdoorNone=12) +lb 0xAAB4FFFF: scenery tried=30 registered=3 noBounds=0 tooThin=0 (outdoorNone=27) +lb 0xAAB5FFFF: scenery tried=47 registered=5 noBounds=0 tooThin=0 (outdoorNone=30) +lb 0xAAB6FFFF: scenery tried=148 registered=43 noBounds=0 tooThin=0 (outdoorNone=105) +lb 0xAAB7FFFF: scenery tried=182 registered=50 noBounds=0 tooThin=0 (outdoorNone=132) +lb 0xAAB8FFFF: scenery tried=212 registered=49 noBounds=0 tooThin=0 (outdoorNone=163) +lb 0xABB0FFFF: scenery tried=97 registered=31 noBounds=0 tooThin=0 (outdoorNone=74) +lb 0xABB1FFFF: scenery tried=176 registered=46 noBounds=0 tooThin=0 (outdoorNone=130) +lb 0xABB2FFFF: scenery tried=38 registered=9 noBounds=0 tooThin=0 (outdoorNone=29) +lb 0xABB3FFFF: scenery tried=86 registered=27 noBounds=0 tooThin=0 (outdoorNone=41) +lb 0xABB4FFFF: scenery tried=39 registered=9 noBounds=0 tooThin=0 (outdoorNone=30) +lb 0xABB5FFFF: scenery tried=116 registered=22 noBounds=0 tooThin=0 (outdoorNone=48) +lb 0xABB6FFFF: scenery tried=177 registered=55 noBounds=0 tooThin=0 (outdoorNone=122) +lb 0xABB7FFFF: scenery tried=247 registered=76 noBounds=0 tooThin=0 (outdoorNone=171) +lb 0xABB8FFFF: scenery tried=270 registered=83 noBounds=0 tooThin=0 (outdoorNone=187) +lb 0xACB0FFFF: scenery tried=158 registered=40 noBounds=0 tooThin=0 (outdoorNone=118) +lb 0xACB1FFFF: scenery tried=210 registered=49 noBounds=0 tooThin=0 (outdoorNone=161) +lb 0xACB2FFFF: scenery tried=181 registered=48 noBounds=0 tooThin=0 (outdoorNone=129) +lb 0xACB3FFFF: scenery tried=135 registered=31 noBounds=0 tooThin=0 (outdoorNone=104) +lb 0xACB4FFFF: scenery tried=24 registered=3 noBounds=0 tooThin=0 (outdoorNone=21) +lb 0xACB5FFFF: scenery tried=163 registered=50 noBounds=0 tooThin=0 (outdoorNone=160) +lb 0xACB6FFFF: scenery tried=219 registered=50 noBounds=0 tooThin=0 (outdoorNone=169) +lb 0xACB7FFFF: scenery tried=257 registered=76 noBounds=0 tooThin=0 (outdoorNone=182) +lb 0xACB8FFFF: scenery tried=256 registered=76 noBounds=0 tooThin=0 (outdoorNone=180) +lb 0xADB0FFFF: scenery tried=188 registered=45 noBounds=0 tooThin=0 (outdoorNone=143) +lb 0xADB1FFFF: scenery tried=178 registered=44 noBounds=0 tooThin=0 (outdoorNone=134) +lb 0xADB2FFFF: scenery tried=206 registered=36 noBounds=0 tooThin=0 (outdoorNone=138) +lb 0xADB3FFFF: scenery tried=19 registered=4 noBounds=0 tooThin=0 (outdoorNone=15) +lb 0xADB4FFFF: scenery tried=105 registered=39 noBounds=0 tooThin=0 (outdoorNone=60) +lb 0xADB5FFFF: scenery tried=165 registered=60 noBounds=0 tooThin=0 (outdoorNone=105) +lb 0xADB6FFFF: scenery tried=271 registered=90 noBounds=0 tooThin=0 (outdoorNone=172) +lb 0xADB7FFFF: scenery tried=288 registered=82 noBounds=0 tooThin=0 (outdoorNone=194) +lb 0xADB8FFFF: scenery tried=255 registered=65 noBounds=0 tooThin=0 (outdoorNone=180) +[input] SelectLeft Press +[input] MovementTurnLeft Press +[input] MovementBackup Press +[push-back-disp] site=dispatch center=(2.3947,3.3976,2.8558) mvmt=(0.2385,0.0193,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.105,8.102,96.876) lpos=(2.395,3.398,2.856) lprev=(2.156,3.378,2.856) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3947,3.3976,2.8558) mvmt=(0.2385,0.0193,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3947,3.3976,2.8558) mvmt=(0.2385,0.0193,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7723,0.9957,1.4755) mvmt=(-0.0193,0.2385,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2027,0.7557,1.3705) mvmt=(-0.0193,0.2385,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3947,3.3976,2.8558) mvmt=(0.2385,0.0193,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.105,8.102,96.876) lpos=(2.395,3.398,2.856) lprev=(2.156,3.378,2.856) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3947,3.3976,2.8558) mvmt=(0.2385,0.0193,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3947,3.3976,2.8558) mvmt=(0.2385,0.0193,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7723,0.9957,1.4755) mvmt=(-0.0193,0.2385,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2027,0.7557,1.3705) mvmt=(-0.0193,0.2385,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2027,0.7557,1.3705) out=(0.2027,0.7557,1.6172) delta=(0.0000,0.0000,0.2468) deltaMag=0.2468 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.5887 dpPos=0.3085 dpMove=-0.4170 iDist=0.4113 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.3947,3.3976,3.1025) mvmt=(0.2385,0.0193,0.2468) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.105,8.102,97.123) lpos=(2.395,3.398,3.103) lprev=(2.156,3.378,2.856) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3947,3.3976,3.1025) mvmt=(0.2385,0.0193,0.2468) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3947,3.3976,3.1025) mvmt=(0.2385,0.0193,0.2468) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.1403,3.3976,-1.3825) mvmt=(0.2385,0.0193,0.2468) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(4.4247,0.1204,0.1075) mvmt=(0.2385,0.0193,0.2468) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(3.3467,2.8101,-4.2425) mvmt=(0.2385,0.0193,0.2468) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(-2.8883,2.8101,-4.2425) mvmt=(0.2385,0.0193,0.2468) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(3.3447,-0.8224,0.1025) mvmt=(0.2385,0.0193,0.2468) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(-0.7723,0.9957,1.7222) mvmt=(-0.0193,0.2385,0.2468) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(0.2027,0.7557,1.6172) mvmt=(-0.0193,0.2385,0.2468) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(0.2027,-1.4555,0.2672) mvmt=(-0.0193,0.2385,0.2468) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(-3.1403,3.3976,1.6225) mvmt=(0.2385,0.0193,0.2468) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(2.3947,3.3976,3.1225) mvmt=(0.2385,0.0193,0.2468) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(2.3947,3.3976,3.1025) mvmt=(0.2385,0.0193,0.2468) collide=False insertType=1 objState=0x303 winterp=0.5887 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.105,8.102,97.123) lpos=(2.395,3.398,3.103) lprev=(2.156,3.378,2.856) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3947,3.3976,3.1025) mvmt=(0.2385,0.0193,0.2468) collide=False insertType=1 objState=0x303 winterp=0.5887 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3947,3.3976,3.1025) mvmt=(0.2385,0.0193,0.2468) collide=False insertType=1 objState=0x303 winterp=0.5887 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.1403,3.3976,-1.3825) mvmt=(0.2385,0.0193,0.2468) collide=False insertType=1 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(4.4247,0.1204,0.1075) mvmt=(0.2385,0.0193,0.2468) collide=False insertType=1 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(3.3467,2.8101,-4.2425) mvmt=(0.2385,0.0193,0.2468) collide=False insertType=1 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(-2.8883,2.8101,-4.2425) mvmt=(0.2385,0.0193,0.2468) collide=False insertType=1 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(3.3447,-0.8224,0.1025) mvmt=(0.2385,0.0193,0.2468) collide=False insertType=1 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(-0.7723,0.9957,1.7222) mvmt=(-0.0193,0.2385,0.2468) collide=False insertType=1 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(0.2027,0.7557,1.6172) mvmt=(-0.0193,0.2385,0.2468) collide=False insertType=1 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(0.2027,-1.4555,0.2672) mvmt=(-0.0193,0.2385,0.2468) collide=False insertType=1 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(-3.1403,3.3976,1.6225) mvmt=(0.2385,0.0193,0.2468) collide=False insertType=1 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(2.3947,3.3976,3.1225) mvmt=(0.2385,0.0193,0.2468) collide=False insertType=1 objState=0x303 winterp=0.5887 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.2714,3.3976,2.9750) mvmt=(0.1152,0.0193,0.1192) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,8.102,96.995) lpos=(2.271,3.398,2.975) lprev=(2.156,3.378,2.856) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.3976,2.9750) mvmt=(0.1152,0.0193,0.1192) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.3976,2.9750) mvmt=(0.1152,0.0193,0.1192) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7723,0.8724,1.5947) mvmt=(-0.0193,0.1152,0.1192) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(0.2027,0.6324,1.4897) mvmt=(-0.0193,0.1152,0.1192) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(0.2027,-1.5788,0.1397) mvmt=(-0.0193,0.1152,0.1192) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.3976,1.4950) mvmt=(0.1152,0.0193,0.1192) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.3976,-1.5100) mvmt=(0.1152,0.0193,0.1192) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(4.3014,0.1204,-0.0200) mvmt=(0.1152,0.0193,0.1192) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(3.2234,2.8101,-4.3700) mvmt=(0.1152,0.0193,0.1192) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(-3.0116,2.8101,-4.3700) mvmt=(0.1152,0.0193,0.1192) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.8224,-0.0250) mvmt=(0.1152,0.0193,0.1192) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.3976,2.9950) mvmt=(0.1152,0.0193,0.1192) collide=False insertType=0 objState=0x303 winterp=0.5887 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.3976,2.2250) mvmt=(0.1152,0.0193,-0.6308) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.229,8.102,96.245) lpos=(2.271,3.398,2.225) lprev=(2.156,3.378,2.856) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7723,0.8724,0.8447) mvmt=(-0.0193,0.1152,-0.6308) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2027,0.6324,0.7397) mvmt=(-0.0193,0.1152,-0.6308) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2027,0.6324,0.7397) out=(0.2027,0.6324,1.4897) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2714,3.3976,2.9750) mvmt=(0.1152,0.0193,0.1192) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,8.102,96.995) lpos=(2.271,3.398,2.975) lprev=(2.156,3.378,2.856) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.3976,2.9750) mvmt=(0.1152,0.0193,0.1192) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.3976,2.9750) mvmt=(0.1152,0.0193,0.1192) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7723,0.8724,1.5947) mvmt=(-0.0193,0.1152,0.1192) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2027,0.6324,1.4897) mvmt=(-0.0193,0.1152,0.1192) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2027,-1.5788,0.1397) mvmt=(-0.0193,0.1152,0.1192) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.3976,1.4950) mvmt=(0.1152,0.0193,0.1192) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.3976,-1.5100) mvmt=(0.1152,0.0193,0.1192) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3014,0.1204,-0.0200) mvmt=(0.1152,0.0193,0.1192) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2234,2.8101,-4.3700) mvmt=(0.1152,0.0193,0.1192) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0116,2.8101,-4.3700) mvmt=(0.1152,0.0193,0.1192) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.8224,-0.0250) mvmt=(0.1152,0.0193,0.1192) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.3976,2.9950) mvmt=(0.1152,0.0193,0.1192) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.4165,2.9750) mvmt=(0.0000,0.0189,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,8.083,96.995) lpos=(2.271,3.417,2.975) lprev=(2.271,3.398,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.4165,2.9750) mvmt=(0.0000,0.0189,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.4165,2.9750) mvmt=(0.0000,0.0189,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7913,0.8724,1.5947) mvmt=(-0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1837,0.6324,1.4897) mvmt=(-0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1837,-1.5788,0.1397) mvmt=(-0.0189,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.4165,1.4950) mvmt=(0.0000,0.0189,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.4165,-1.5100) mvmt=(0.0000,0.0189,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0116,2.8290,-4.3700) mvmt=(0.0000,0.0189,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.4165,2.9950) mvmt=(0.0000,0.0189,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.4165,2.2250) mvmt=(0.0000,0.0189,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.229,8.083,96.245) lpos=(2.271,3.417,2.225) lprev=(2.271,3.398,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7913,0.8724,0.8447) mvmt=(-0.0189,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1837,0.6324,0.7397) mvmt=(-0.0189,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1837,0.6324,0.7397) out=(0.1837,0.6324,1.4897) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2714,3.4165,2.9750) mvmt=(0.0000,0.0189,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,8.083,96.995) lpos=(2.271,3.417,2.975) lprev=(2.271,3.398,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.4165,2.9750) mvmt=(0.0000,0.0189,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.4165,2.9750) mvmt=(0.0000,0.0189,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7913,0.8724,1.5947) mvmt=(-0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1837,0.6324,1.4897) mvmt=(-0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1837,-1.5788,0.1397) mvmt=(-0.0189,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.4165,1.4950) mvmt=(0.0000,0.0189,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.4165,-1.5100) mvmt=(0.0000,0.0189,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0116,2.8290,-4.3700) mvmt=(0.0000,0.0189,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.4165,2.9950) mvmt=(0.0000,0.0189,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4891,3.4341,2.9750) mvmt=(0.2177,0.0176,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.011,8.066,96.995) lpos=(2.489,3.434,2.975) lprev=(2.271,3.417,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4891,3.4341,2.9750) mvmt=(0.2177,0.0176,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4891,3.4341,2.9750) mvmt=(0.2177,0.0176,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8088,1.0901,1.5947) mvmt=(-0.0176,0.2177,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1662,0.8501,1.4897) mvmt=(-0.0176,0.2177,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4891,3.4341,2.9750) mvmt=(0.2177,0.0176,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.011,8.066,96.995) lpos=(2.489,3.434,2.975) lprev=(2.271,3.417,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4891,3.4341,2.9750) mvmt=(0.2177,0.0176,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4891,3.4341,2.9750) mvmt=(0.2177,0.0176,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8088,1.0901,1.5947) mvmt=(-0.0176,0.2177,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1662,0.8501,1.4897) mvmt=(-0.0176,0.2177,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1662,0.8501,1.4897) out=(0.1662,0.8501,1.9800) delta=(0.0000,0.0000,0.4903) deltaMag=0.4903 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.1828 dpPos=-0.0103 dpMove=-0.6000 iDist=0.8172 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.4891,3.4341,3.4653) mvmt=(0.2177,0.0176,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.011,8.066,97.485) lpos=(2.489,3.434,3.465) lprev=(2.271,3.417,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4891,3.4341,3.4653) mvmt=(0.2177,0.0176,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0459,3.4341,-1.0197) mvmt=(0.2177,0.0176,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(4.5191,0.1569,0.4703) mvmt=(0.2177,0.0176,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4411,2.8466,-3.8797) mvmt=(0.2177,0.0176,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-2.7939,2.8466,-3.8797) mvmt=(0.2177,0.0176,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4391,-0.7859,0.4653) mvmt=(0.2177,0.0176,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.8088,1.0901,2.0850) mvmt=(-0.0176,0.2177,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.1662,0.8501,1.9800) mvmt=(-0.0176,0.2177,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.1662,-1.3611,0.6300) mvmt=(-0.0176,0.2177,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.0459,3.4341,1.9853) mvmt=(0.2177,0.0176,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4891,3.4341,3.4853) mvmt=(0.2177,0.0176,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4891,3.4341,3.4653) mvmt=(0.2177,0.0176,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.011,8.066,97.485) lpos=(2.489,3.434,3.465) lprev=(2.271,3.417,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4891,3.4341,3.4653) mvmt=(0.2177,0.0176,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0459,3.4341,-1.0197) mvmt=(0.2177,0.0176,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(4.5191,0.1569,0.4703) mvmt=(0.2177,0.0176,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4411,2.8466,-3.8797) mvmt=(0.2177,0.0176,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-2.7939,2.8466,-3.8797) mvmt=(0.2177,0.0176,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4391,-0.7859,0.4653) mvmt=(0.2177,0.0176,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.8088,1.0901,2.0850) mvmt=(-0.0176,0.2177,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.1662,0.8501,1.9800) mvmt=(-0.0176,0.2177,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.1662,-1.3611,0.6300) mvmt=(-0.0176,0.2177,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.0459,3.4341,1.9853) mvmt=(0.2177,0.0176,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4891,3.4341,3.4853) mvmt=(0.2177,0.0176,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.2714,3.4341,2.9750) mvmt=(0.0000,0.0176,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,8.066,96.995) lpos=(2.271,3.434,2.975) lprev=(2.271,3.417,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.4341,2.9750) mvmt=(0.0000,0.0176,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.4341,2.9750) mvmt=(0.0000,0.0176,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8088,0.8724,1.5947) mvmt=(-0.0176,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.1662,0.6324,1.4897) mvmt=(-0.0176,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.1662,-1.5788,0.1397) mvmt=(-0.0176,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.4341,1.4950) mvmt=(0.0000,0.0176,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.4341,-1.5100) mvmt=(0.0000,0.0176,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.0116,2.8466,-4.3700) mvmt=(0.0000,0.0176,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.7859,-0.0250) mvmt=(0.0000,0.0176,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.4341,2.9950) mvmt=(0.0000,0.0176,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.4341,2.2250) mvmt=(0.0000,0.0176,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.229,8.066,96.245) lpos=(2.271,3.434,2.225) lprev=(2.271,3.417,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8088,0.8724,0.8447) mvmt=(-0.0176,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1662,0.6324,0.7397) mvmt=(-0.0176,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1662,0.6324,0.7397) out=(0.1662,0.6324,1.4897) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2714,3.4341,2.9750) mvmt=(0.0000,0.0176,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,8.066,96.995) lpos=(2.271,3.434,2.975) lprev=(2.271,3.417,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.4341,2.9750) mvmt=(0.0000,0.0176,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.4341,2.9750) mvmt=(0.0000,0.0176,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8088,0.8724,1.5947) mvmt=(-0.0176,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1662,0.6324,1.4897) mvmt=(-0.0176,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1662,-1.5788,0.1397) mvmt=(-0.0176,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.4341,1.4950) mvmt=(0.0000,0.0176,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.4341,-1.5100) mvmt=(0.0000,0.0176,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0116,2.8466,-4.3700) mvmt=(0.0000,0.0176,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.7859,-0.0250) mvmt=(0.0000,0.0176,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.4341,2.9950) mvmt=(0.0000,0.0176,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.4503,2.9750) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,8.050,96.995) lpos=(2.271,3.450,2.975) lprev=(2.271,3.434,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.4503,2.9750) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.4503,2.9750) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8251,0.8724,1.5947) mvmt=(-0.0162,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1499,0.6324,1.4897) mvmt=(-0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1499,-1.5788,0.1397) mvmt=(-0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.4503,1.4950) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.4503,-1.5100) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0116,2.8628,-4.3700) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.7697,-0.0250) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.4503,2.9950) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.4503,2.2250) mvmt=(0.0000,0.0162,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.229,8.050,96.245) lpos=(2.271,3.450,2.225) lprev=(2.271,3.434,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8251,0.8724,0.8447) mvmt=(-0.0162,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1499,0.6324,0.7397) mvmt=(-0.0162,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1499,0.6324,0.7397) out=(0.1499,0.6324,1.4897) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2714,3.4503,2.9750) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,8.050,96.995) lpos=(2.271,3.450,2.975) lprev=(2.271,3.434,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.4503,2.9750) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.4503,2.9750) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8251,0.8724,1.5947) mvmt=(-0.0162,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1499,0.6324,1.4897) mvmt=(-0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1499,-1.5788,0.1397) mvmt=(-0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.4503,1.4950) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.4503,-1.5100) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0116,2.8628,-4.3700) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.7697,-0.0250) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.4503,2.9950) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4973,3.4686,2.9750) mvmt=(0.2258,0.0182,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.003,8.031,96.995) lpos=(2.497,3.469,2.975) lprev=(2.271,3.450,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4973,3.4686,2.9750) mvmt=(0.2258,0.0182,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4973,3.4686,2.9750) mvmt=(0.2258,0.0182,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8433,1.0983,1.5947) mvmt=(-0.0182,0.2258,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1317,0.8583,1.4897) mvmt=(-0.0182,0.2258,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4973,3.4686,2.9750) mvmt=(0.2258,0.0182,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.003,8.031,96.995) lpos=(2.497,3.469,2.975) lprev=(2.271,3.450,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4973,3.4686,2.9750) mvmt=(0.2258,0.0182,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4973,3.4686,2.9750) mvmt=(0.2258,0.0182,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8433,1.0983,1.5947) mvmt=(-0.0182,0.2258,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1317,0.8583,1.4897) mvmt=(-0.0182,0.2258,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1317,0.8583,1.4897) out=(0.1317,0.8583,1.9800) delta=(0.0000,0.0000,0.4903) deltaMag=0.4903 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.1828 dpPos=-0.0103 dpMove=-0.6000 iDist=0.8172 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.4973,3.4686,3.4653) mvmt=(0.2258,0.0182,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.003,8.031,97.485) lpos=(2.497,3.469,3.465) lprev=(2.271,3.450,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4973,3.4686,3.4653) mvmt=(0.2258,0.0182,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0377,3.4686,-1.0197) mvmt=(0.2258,0.0182,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(4.5273,0.1914,0.4703) mvmt=(0.2258,0.0182,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4493,2.8811,-3.8797) mvmt=(0.2258,0.0182,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-2.7857,2.8811,-3.8797) mvmt=(0.2258,0.0182,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4473,-0.7514,0.4653) mvmt=(0.2258,0.0182,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.8433,1.0983,2.0850) mvmt=(-0.0182,0.2258,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.1317,0.8583,1.9800) mvmt=(-0.0182,0.2258,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.1317,-1.3530,0.6300) mvmt=(-0.0182,0.2258,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.0377,3.4686,1.9853) mvmt=(0.2258,0.0182,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4973,3.4686,3.4853) mvmt=(0.2258,0.0182,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4973,3.4686,3.4653) mvmt=(0.2258,0.0182,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.003,8.031,97.485) lpos=(2.497,3.469,3.465) lprev=(2.271,3.450,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4973,3.4686,3.4653) mvmt=(0.2258,0.0182,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0377,3.4686,-1.0197) mvmt=(0.2258,0.0182,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(4.5273,0.1914,0.4703) mvmt=(0.2258,0.0182,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4493,2.8811,-3.8797) mvmt=(0.2258,0.0182,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-2.7857,2.8811,-3.8797) mvmt=(0.2258,0.0182,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4473,-0.7514,0.4653) mvmt=(0.2258,0.0182,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.8433,1.0983,2.0850) mvmt=(-0.0182,0.2258,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.1317,0.8583,1.9800) mvmt=(-0.0182,0.2258,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.1317,-1.3530,0.6300) mvmt=(-0.0182,0.2258,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.0377,3.4686,1.9853) mvmt=(0.2258,0.0182,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4973,3.4686,3.4853) mvmt=(0.2258,0.0182,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.2714,3.4686,2.9750) mvmt=(0.0000,0.0182,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,8.031,96.995) lpos=(2.271,3.469,2.975) lprev=(2.271,3.450,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.4686,2.9750) mvmt=(0.0000,0.0182,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.4686,2.9750) mvmt=(0.0000,0.0182,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8433,0.8724,1.5947) mvmt=(-0.0182,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.1317,0.6324,1.4897) mvmt=(-0.0182,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.1317,-1.5788,0.1397) mvmt=(-0.0182,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.4686,1.4950) mvmt=(0.0000,0.0182,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.4686,-1.5100) mvmt=(0.0000,0.0182,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.0116,2.8811,-4.3700) mvmt=(0.0000,0.0182,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.7514,-0.0250) mvmt=(0.0000,0.0182,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.4686,2.9950) mvmt=(0.0000,0.0182,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.4686,2.2250) mvmt=(0.0000,0.0182,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.229,8.031,96.245) lpos=(2.271,3.469,2.225) lprev=(2.271,3.450,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8433,0.8724,0.8447) mvmt=(-0.0182,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1317,0.6324,0.7397) mvmt=(-0.0182,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1317,0.6324,0.7397) out=(0.1317,0.6324,1.4897) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2714,3.4686,2.9750) mvmt=(0.0000,0.0182,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,8.031,96.995) lpos=(2.271,3.469,2.975) lprev=(2.271,3.450,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.4686,2.9750) mvmt=(0.0000,0.0182,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.4686,2.9750) mvmt=(0.0000,0.0182,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8433,0.8724,1.5947) mvmt=(-0.0182,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1317,0.6324,1.4897) mvmt=(-0.0182,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1317,-1.5788,0.1397) mvmt=(-0.0182,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.4686,1.4950) mvmt=(0.0000,0.0182,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.4686,-1.5100) mvmt=(0.0000,0.0182,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0116,2.8811,-4.3700) mvmt=(0.0000,0.0182,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.7514,-0.0250) mvmt=(0.0000,0.0182,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.4686,2.9950) mvmt=(0.0000,0.0182,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.4850,2.9750) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,8.015,96.995) lpos=(2.271,3.485,2.975) lprev=(2.271,3.469,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.4850,2.9750) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.4850,2.9750) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8598,0.8724,1.5947) mvmt=(-0.0165,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1152,0.6324,1.4897) mvmt=(-0.0165,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1152,-1.5788,0.1397) mvmt=(-0.0165,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.4850,1.4950) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.4850,-1.5100) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0116,2.8975,-4.3700) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.7350,-0.0250) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.4850,2.9950) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.4850,2.2250) mvmt=(0.0000,0.0165,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.229,8.015,96.245) lpos=(2.271,3.485,2.225) lprev=(2.271,3.469,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8598,0.8724,0.8447) mvmt=(-0.0165,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1152,0.6324,0.7397) mvmt=(-0.0165,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1152,0.6324,0.7397) out=(0.1152,0.6324,1.4897) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2714,3.4850,2.9750) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,8.015,96.995) lpos=(2.271,3.485,2.975) lprev=(2.271,3.469,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.4850,2.9750) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.4850,2.9750) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8598,0.8724,1.5947) mvmt=(-0.0165,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1152,0.6324,1.4897) mvmt=(-0.0165,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1152,-1.5788,0.1397) mvmt=(-0.0165,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.4850,1.4950) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.4850,-1.5100) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0116,2.8975,-4.3700) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.7350,-0.0250) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.4850,2.9950) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4750,3.5015,2.9750) mvmt=(0.2036,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.025,7.999,96.995) lpos=(2.475,3.501,2.975) lprev=(2.271,3.485,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4750,3.5015,2.9750) mvmt=(0.2036,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4750,3.5015,2.9750) mvmt=(0.2036,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8762,1.0760,1.5947) mvmt=(-0.0164,0.2036,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0988,0.8360,1.4897) mvmt=(-0.0164,0.2036,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4750,3.5015,2.9750) mvmt=(0.2036,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.025,7.999,96.995) lpos=(2.475,3.501,2.975) lprev=(2.271,3.485,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4750,3.5015,2.9750) mvmt=(0.2036,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4750,3.5015,2.9750) mvmt=(0.2036,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8762,1.0760,1.5947) mvmt=(-0.0164,0.2036,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0988,0.8360,1.4897) mvmt=(-0.0164,0.2036,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0988,0.8360,1.4897) out=(0.0988,0.8360,1.9800) delta=(0.0000,0.0000,0.4903) deltaMag=0.4903 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.1828 dpPos=-0.0103 dpMove=-0.6000 iDist=0.8172 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.4750,3.5015,3.4653) mvmt=(0.2036,0.0164,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.025,7.999,97.485) lpos=(2.475,3.501,3.465) lprev=(2.271,3.485,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4750,3.5015,3.4653) mvmt=(0.2036,0.0164,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0600,3.5015,-1.0197) mvmt=(0.2036,0.0164,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(4.5050,0.2243,0.4703) mvmt=(0.2036,0.0164,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4270,2.9140,-3.8797) mvmt=(0.2036,0.0164,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-2.8080,2.9140,-3.8797) mvmt=(0.2036,0.0164,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4250,-0.7185,0.4653) mvmt=(0.2036,0.0164,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.8762,1.0760,2.0850) mvmt=(-0.0164,0.2036,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.0988,0.8360,1.9800) mvmt=(-0.0164,0.2036,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.0988,-1.3752,0.6300) mvmt=(-0.0164,0.2036,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.0600,3.5015,1.9853) mvmt=(0.2036,0.0164,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4750,3.5015,3.4853) mvmt=(0.2036,0.0164,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4750,3.5015,3.4653) mvmt=(0.2036,0.0164,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.025,7.999,97.485) lpos=(2.475,3.501,3.465) lprev=(2.271,3.485,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4750,3.5015,3.4653) mvmt=(0.2036,0.0164,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0600,3.5015,-1.0197) mvmt=(0.2036,0.0164,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(4.5050,0.2243,0.4703) mvmt=(0.2036,0.0164,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4270,2.9140,-3.8797) mvmt=(0.2036,0.0164,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-2.8080,2.9140,-3.8797) mvmt=(0.2036,0.0164,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4250,-0.7185,0.4653) mvmt=(0.2036,0.0164,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.8762,1.0760,2.0850) mvmt=(-0.0164,0.2036,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.0988,0.8360,1.9800) mvmt=(-0.0164,0.2036,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.0988,-1.3752,0.6300) mvmt=(-0.0164,0.2036,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.0600,3.5015,1.9853) mvmt=(0.2036,0.0164,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4750,3.5015,3.4853) mvmt=(0.2036,0.0164,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.2714,3.5015,2.9750) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.999,96.995) lpos=(2.271,3.501,2.975) lprev=(2.271,3.485,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.5015,2.9750) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.5015,2.9750) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8762,0.8724,1.5947) mvmt=(-0.0164,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.0988,0.6324,1.4897) mvmt=(-0.0164,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.0988,-1.5788,0.1397) mvmt=(-0.0164,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.5015,1.4950) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.5015,-1.5100) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.0116,2.9140,-4.3700) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.7185,-0.0250) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.5015,2.9950) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.5015,2.2250) mvmt=(0.0000,0.0164,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.229,7.999,96.245) lpos=(2.271,3.501,2.225) lprev=(2.271,3.485,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8762,0.8724,0.8447) mvmt=(-0.0164,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0988,0.6324,0.7397) mvmt=(-0.0164,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0988,0.6324,0.7397) out=(0.0988,0.6324,1.4897) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2714,3.5015,2.9750) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.999,96.995) lpos=(2.271,3.501,2.975) lprev=(2.271,3.485,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.5015,2.9750) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.5015,2.9750) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8762,0.8724,1.5947) mvmt=(-0.0164,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0988,0.6324,1.4897) mvmt=(-0.0164,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0988,-1.5788,0.1397) mvmt=(-0.0164,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.5015,1.4950) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.5015,-1.5100) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0116,2.9140,-4.3700) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.7185,-0.0250) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.5015,2.9950) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.5179,2.9750) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.982,96.995) lpos=(2.271,3.518,2.975) lprev=(2.271,3.501,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.5179,2.9750) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.5179,2.9750) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8926,0.8724,1.5947) mvmt=(-0.0164,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0824,0.6324,1.4897) mvmt=(-0.0164,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0824,-1.5788,0.1397) mvmt=(-0.0164,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.5179,1.4950) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.5179,-1.5100) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.7021,-0.0250) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.5179,2.9950) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.5179,2.2250) mvmt=(0.0000,0.0164,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.229,7.982,96.245) lpos=(2.271,3.518,2.225) lprev=(2.271,3.501,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8926,0.8724,0.8447) mvmt=(-0.0164,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0824,0.6324,0.7397) mvmt=(-0.0164,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0824,0.6324,0.7397) out=(0.0824,0.6324,1.4897) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2714,3.5179,2.9750) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.982,96.995) lpos=(2.271,3.518,2.975) lprev=(2.271,3.501,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.5179,2.9750) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.5179,2.9750) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8926,0.8724,1.5947) mvmt=(-0.0164,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0824,0.6324,1.4897) mvmt=(-0.0164,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0824,-1.5788,0.1397) mvmt=(-0.0164,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.5179,1.4950) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.5179,-1.5100) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.7021,-0.0250) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.5179,2.9950) mvmt=(0.0000,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4794,3.5347,2.9750) mvmt=(0.2079,0.0168,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.021,7.965,96.995) lpos=(2.479,3.535,2.975) lprev=(2.271,3.518,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4794,3.5347,2.9750) mvmt=(0.2079,0.0168,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4794,3.5347,2.9750) mvmt=(0.2079,0.0168,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9094,1.0804,1.5947) mvmt=(-0.0168,0.2079,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0656,0.8403,1.4897) mvmt=(-0.0168,0.2079,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4794,3.5347,2.9750) mvmt=(0.2079,0.0168,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.021,7.965,96.995) lpos=(2.479,3.535,2.975) lprev=(2.271,3.518,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4794,3.5347,2.9750) mvmt=(0.2079,0.0168,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4794,3.5347,2.9750) mvmt=(0.2079,0.0168,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9094,1.0804,1.5947) mvmt=(-0.0168,0.2079,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0656,0.8403,1.4897) mvmt=(-0.0168,0.2079,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0656,0.8403,1.4897) out=(0.0656,0.8403,1.9800) delta=(0.0000,0.0000,0.4903) deltaMag=0.4903 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.1828 dpPos=-0.0103 dpMove=-0.6000 iDist=0.8172 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.4794,3.5347,3.4653) mvmt=(0.2079,0.0168,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.021,7.965,97.485) lpos=(2.479,3.535,3.465) lprev=(2.271,3.518,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4794,3.5347,3.4653) mvmt=(0.2079,0.0168,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0556,3.5347,-1.0197) mvmt=(0.2079,0.0168,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(4.5094,0.2574,0.4703) mvmt=(0.2079,0.0168,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4314,2.9472,-3.8797) mvmt=(0.2079,0.0168,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-2.8036,2.9472,-3.8797) mvmt=(0.2079,0.0168,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4294,-0.6853,0.4653) mvmt=(0.2079,0.0168,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.9094,1.0804,2.0850) mvmt=(-0.0168,0.2079,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.0656,0.8403,1.9800) mvmt=(-0.0168,0.2079,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.0656,-1.3709,0.6300) mvmt=(-0.0168,0.2079,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.0556,3.5347,1.9853) mvmt=(0.2079,0.0168,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4794,3.5347,3.4853) mvmt=(0.2079,0.0168,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4794,3.5347,3.4653) mvmt=(0.2079,0.0168,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.021,7.965,97.485) lpos=(2.479,3.535,3.465) lprev=(2.271,3.518,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4794,3.5347,3.4653) mvmt=(0.2079,0.0168,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0556,3.5347,-1.0197) mvmt=(0.2079,0.0168,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(4.5094,0.2574,0.4703) mvmt=(0.2079,0.0168,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4314,2.9472,-3.8797) mvmt=(0.2079,0.0168,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-2.8036,2.9472,-3.8797) mvmt=(0.2079,0.0168,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4294,-0.6853,0.4653) mvmt=(0.2079,0.0168,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.9094,1.0804,2.0850) mvmt=(-0.0168,0.2079,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.0656,0.8403,1.9800) mvmt=(-0.0168,0.2079,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.0656,-1.3709,0.6300) mvmt=(-0.0168,0.2079,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.0556,3.5347,1.9853) mvmt=(0.2079,0.0168,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4794,3.5347,3.4853) mvmt=(0.2079,0.0168,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.2714,3.5347,2.9750) mvmt=(0.0000,0.0168,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.965,96.995) lpos=(2.271,3.535,2.975) lprev=(2.271,3.518,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.5347,2.9750) mvmt=(0.0000,0.0168,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.5347,2.9750) mvmt=(0.0000,0.0168,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9094,0.8724,1.5947) mvmt=(-0.0168,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.0656,0.6324,1.4897) mvmt=(-0.0168,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.0656,-1.5788,0.1397) mvmt=(-0.0168,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.5347,1.4950) mvmt=(0.0000,0.0168,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.5347,-1.5100) mvmt=(0.0000,0.0168,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.6853,-0.0250) mvmt=(0.0000,0.0168,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.5347,2.9950) mvmt=(0.0000,0.0168,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.5347,2.2250) mvmt=(0.0000,0.0168,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.229,7.965,96.245) lpos=(2.271,3.535,2.225) lprev=(2.271,3.518,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9094,0.8724,0.8447) mvmt=(-0.0168,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0656,0.6324,0.7397) mvmt=(-0.0168,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0656,0.6324,0.7397) out=(0.0656,0.6324,1.4897) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2714,3.5347,2.9750) mvmt=(0.0000,0.0168,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.965,96.995) lpos=(2.271,3.535,2.975) lprev=(2.271,3.518,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.5347,2.9750) mvmt=(0.0000,0.0168,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.5347,2.9750) mvmt=(0.0000,0.0168,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9094,0.8724,1.5947) mvmt=(-0.0168,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0656,0.6324,1.4897) mvmt=(-0.0168,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0656,-1.5788,0.1397) mvmt=(-0.0168,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.5347,1.4950) mvmt=(0.0000,0.0168,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.5347,-1.5100) mvmt=(0.0000,0.0168,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.6853,-0.0250) mvmt=(0.0000,0.0168,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.5347,2.9950) mvmt=(0.0000,0.0168,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.5520,2.9750) mvmt=(0.0000,0.0174,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.948,96.995) lpos=(2.271,3.552,2.975) lprev=(2.271,3.535,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.5520,2.9750) mvmt=(0.0000,0.0174,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.5520,2.9750) mvmt=(0.0000,0.0174,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9268,0.8724,1.5947) mvmt=(-0.0174,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0482,0.6324,1.4897) mvmt=(-0.0174,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0482,-1.5788,0.1397) mvmt=(-0.0174,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.5520,1.4950) mvmt=(0.0000,0.0174,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.5520,-1.5100) mvmt=(0.0000,0.0174,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.6680,-0.0250) mvmt=(0.0000,0.0174,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.5520,2.9950) mvmt=(0.0000,0.0174,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.5520,2.2250) mvmt=(0.0000,0.0174,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.229,7.948,96.245) lpos=(2.271,3.552,2.225) lprev=(2.271,3.535,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9268,0.8724,0.8447) mvmt=(-0.0174,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0482,0.6324,0.7397) mvmt=(-0.0174,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0482,0.6324,0.7397) out=(0.0482,0.6324,1.4897) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2714,3.5520,2.9750) mvmt=(0.0000,0.0174,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.948,96.995) lpos=(2.271,3.552,2.975) lprev=(2.271,3.535,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.5520,2.9750) mvmt=(0.0000,0.0174,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.5520,2.9750) mvmt=(0.0000,0.0174,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9268,0.8724,1.5947) mvmt=(-0.0174,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0482,0.6324,1.4897) mvmt=(-0.0174,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0482,-1.5788,0.1397) mvmt=(-0.0174,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.5520,1.4950) mvmt=(0.0000,0.0174,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.5520,-1.5100) mvmt=(0.0000,0.0174,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.6680,-0.0250) mvmt=(0.0000,0.0174,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.5520,2.9950) mvmt=(0.0000,0.0174,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4723,3.5683,2.9750) mvmt=(0.2009,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.028,7.932,96.995) lpos=(2.472,3.568,2.975) lprev=(2.271,3.552,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4723,3.5683,2.9750) mvmt=(0.2009,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4723,3.5683,2.9750) mvmt=(0.2009,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9430,1.0733,1.5947) mvmt=(-0.0162,0.2009,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0320,0.8333,1.4897) mvmt=(-0.0162,0.2009,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4723,3.5683,2.9750) mvmt=(0.2009,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.028,7.932,96.995) lpos=(2.472,3.568,2.975) lprev=(2.271,3.552,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4723,3.5683,2.9750) mvmt=(0.2009,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4723,3.5683,2.9750) mvmt=(0.2009,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9430,1.0733,1.5947) mvmt=(-0.0162,0.2009,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0320,0.8333,1.4897) mvmt=(-0.0162,0.2009,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0320,0.8333,1.4897) out=(0.0320,0.8333,1.9800) delta=(0.0000,0.0000,0.4903) deltaMag=0.4903 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.1828 dpPos=-0.0103 dpMove=-0.6000 iDist=0.8172 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.4723,3.5683,3.4653) mvmt=(0.2009,0.0162,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.028,7.932,97.485) lpos=(2.472,3.568,3.465) lprev=(2.271,3.552,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4723,3.5683,3.4653) mvmt=(0.2009,0.0162,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0627,3.5683,-1.0197) mvmt=(0.2009,0.0162,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(4.5023,0.2910,0.4703) mvmt=(0.2009,0.0162,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4243,2.9808,-3.8797) mvmt=(0.2009,0.0162,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-2.8107,2.9808,-3.8797) mvmt=(0.2009,0.0162,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4223,-0.6517,0.4653) mvmt=(0.2009,0.0162,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.9430,1.0733,2.0850) mvmt=(-0.0162,0.2009,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.0320,0.8333,1.9800) mvmt=(-0.0162,0.2009,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.0320,-1.3779,0.6300) mvmt=(-0.0162,0.2009,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.0627,3.5683,1.9853) mvmt=(0.2009,0.0162,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4723,3.5683,3.4853) mvmt=(0.2009,0.0162,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4723,3.5683,3.4653) mvmt=(0.2009,0.0162,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.028,7.932,97.485) lpos=(2.472,3.568,3.465) lprev=(2.271,3.552,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4723,3.5683,3.4653) mvmt=(0.2009,0.0162,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0627,3.5683,-1.0197) mvmt=(0.2009,0.0162,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(4.5023,0.2910,0.4703) mvmt=(0.2009,0.0162,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4243,2.9808,-3.8797) mvmt=(0.2009,0.0162,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-2.8107,2.9808,-3.8797) mvmt=(0.2009,0.0162,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4223,-0.6517,0.4653) mvmt=(0.2009,0.0162,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.9430,1.0733,2.0850) mvmt=(-0.0162,0.2009,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.0320,0.8333,1.9800) mvmt=(-0.0162,0.2009,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.0320,-1.3779,0.6300) mvmt=(-0.0162,0.2009,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.0627,3.5683,1.9853) mvmt=(0.2009,0.0162,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4723,3.5683,3.4853) mvmt=(0.2009,0.0162,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.2714,3.5683,2.9750) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.932,96.995) lpos=(2.271,3.568,2.975) lprev=(2.271,3.552,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.5683,2.9750) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.5683,2.9750) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9430,0.8724,1.5947) mvmt=(-0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.0320,0.6324,1.4897) mvmt=(-0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(0.0320,-1.5788,0.1397) mvmt=(-0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.5683,1.4950) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.5683,-1.5100) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.6517,-0.0250) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.5683,2.9950) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.5683,2.2250) mvmt=(0.0000,0.0162,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.229,7.932,96.245) lpos=(2.271,3.568,2.225) lprev=(2.271,3.552,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9430,0.8724,0.8447) mvmt=(-0.0162,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0320,0.6324,0.7397) mvmt=(-0.0162,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0320,0.6324,0.7397) out=(0.0320,0.6324,1.4897) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2714,3.5683,2.9750) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.932,96.995) lpos=(2.271,3.568,2.975) lprev=(2.271,3.552,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.5683,2.9750) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.5683,2.9750) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9430,0.8724,1.5947) mvmt=(-0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0320,0.6324,1.4897) mvmt=(-0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0320,-1.5788,0.1397) mvmt=(-0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.5683,1.4950) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.5683,-1.5100) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.6517,-0.0250) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.5683,2.9950) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.5853,2.9750) mvmt=(0.0000,0.0171,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.915,96.995) lpos=(2.271,3.585,2.975) lprev=(2.271,3.568,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.5853,2.9750) mvmt=(0.0000,0.0171,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.5853,2.9750) mvmt=(0.0000,0.0171,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9601,0.8724,1.5947) mvmt=(-0.0171,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0149,0.6324,1.4897) mvmt=(-0.0171,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0149,-1.5788,0.1397) mvmt=(-0.0171,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.5853,1.4950) mvmt=(0.0000,0.0171,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.5853,-1.5100) mvmt=(0.0000,0.0171,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.6347,-0.0250) mvmt=(0.0000,0.0171,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.5853,2.9950) mvmt=(0.0000,0.0171,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.5853,2.2250) mvmt=(0.0000,0.0171,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.229,7.915,96.245) lpos=(2.271,3.585,2.225) lprev=(2.271,3.568,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9601,0.8724,0.8447) mvmt=(-0.0171,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0149,0.6324,0.7397) mvmt=(-0.0171,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0149,0.6324,0.7397) out=(0.0149,0.6324,1.4897) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2714,3.5853,2.9750) mvmt=(0.0000,0.0171,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.915,96.995) lpos=(2.271,3.585,2.975) lprev=(2.271,3.568,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.5853,2.9750) mvmt=(0.0000,0.0171,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.5853,2.9750) mvmt=(0.0000,0.0171,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9601,0.8724,1.5947) mvmt=(-0.0171,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0149,0.6324,1.4897) mvmt=(-0.0171,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0149,-1.5788,0.1397) mvmt=(-0.0171,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.5853,1.4950) mvmt=(0.0000,0.0171,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.5853,-1.5100) mvmt=(0.0000,0.0171,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.6347,-0.0250) mvmt=(0.0000,0.0171,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.5853,2.9950) mvmt=(0.0000,0.0171,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4805,3.6022,2.9750) mvmt=(0.2091,0.0169,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.020,7.898,96.995) lpos=(2.480,3.602,2.975) lprev=(2.271,3.585,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4805,3.6022,2.9750) mvmt=(0.2091,0.0169,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4805,3.6022,2.9750) mvmt=(0.2091,0.0169,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9769,1.0815,1.5947) mvmt=(-0.0169,0.2091,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0019,0.8415,1.4897) mvmt=(-0.0169,0.2091,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4805,3.6022,2.9750) mvmt=(0.2091,0.0169,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.020,7.898,96.995) lpos=(2.480,3.602,2.975) lprev=(2.271,3.585,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4805,3.6022,2.9750) mvmt=(0.2091,0.0169,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4805,3.6022,2.9750) mvmt=(0.2091,0.0169,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9769,1.0815,1.5947) mvmt=(-0.0169,0.2091,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0019,0.8415,1.4897) mvmt=(-0.0169,0.2091,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0019,0.8415,1.4897) out=(-0.0019,0.8415,1.9800) delta=(0.0000,0.0000,0.4903) deltaMag=0.4903 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.1828 dpPos=-0.0103 dpMove=-0.6000 iDist=0.8172 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.4805,3.6022,3.4653) mvmt=(0.2091,0.0169,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.020,7.898,97.485) lpos=(2.480,3.602,3.465) lprev=(2.271,3.585,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4805,3.6022,3.4653) mvmt=(0.2091,0.0169,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0545,3.6022,-1.0197) mvmt=(0.2091,0.0169,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(4.5105,0.3250,0.4703) mvmt=(0.2091,0.0169,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4325,3.0147,-3.8797) mvmt=(0.2091,0.0169,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-2.8025,3.0147,-3.8797) mvmt=(0.2091,0.0169,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4305,-0.6178,0.4653) mvmt=(0.2091,0.0169,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.9769,1.0815,2.0850) mvmt=(-0.0169,0.2091,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.0019,0.8415,1.9800) mvmt=(-0.0169,0.2091,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.0019,-1.3698,0.6300) mvmt=(-0.0169,0.2091,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.0545,3.6022,1.9853) mvmt=(0.2091,0.0169,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4805,3.6022,3.4853) mvmt=(0.2091,0.0169,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4805,3.6022,3.4653) mvmt=(0.2091,0.0169,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.020,7.898,97.485) lpos=(2.480,3.602,3.465) lprev=(2.271,3.585,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4805,3.6022,3.4653) mvmt=(0.2091,0.0169,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0545,3.6022,-1.0197) mvmt=(0.2091,0.0169,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(4.5105,0.3250,0.4703) mvmt=(0.2091,0.0169,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4325,3.0147,-3.8797) mvmt=(0.2091,0.0169,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-2.8025,3.0147,-3.8797) mvmt=(0.2091,0.0169,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4305,-0.6178,0.4653) mvmt=(0.2091,0.0169,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.9769,1.0815,2.0850) mvmt=(-0.0169,0.2091,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.0019,0.8415,1.9800) mvmt=(-0.0169,0.2091,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.0019,-1.3698,0.6300) mvmt=(-0.0169,0.2091,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.0545,3.6022,1.9853) mvmt=(0.2091,0.0169,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4805,3.6022,3.4853) mvmt=(0.2091,0.0169,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.2714,3.6022,2.9750) mvmt=(0.0000,0.0169,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.898,96.995) lpos=(2.271,3.602,2.975) lprev=(2.271,3.585,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.6022,2.9750) mvmt=(0.0000,0.0169,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.6022,2.9750) mvmt=(0.0000,0.0169,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9769,0.8724,1.5947) mvmt=(-0.0169,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.0019,0.6324,1.4897) mvmt=(-0.0169,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.0019,-1.5788,0.1397) mvmt=(-0.0169,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6022,1.4950) mvmt=(0.0000,0.0169,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6022,-1.5100) mvmt=(0.0000,0.0169,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.6178,-0.0250) mvmt=(0.0000,0.0169,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.6022,2.9950) mvmt=(0.0000,0.0169,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.6022,2.2250) mvmt=(0.0000,0.0169,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.229,7.898,96.245) lpos=(2.271,3.602,2.225) lprev=(2.271,3.585,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9769,0.8724,0.8447) mvmt=(-0.0169,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0019,0.6324,0.7397) mvmt=(-0.0169,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0019,0.6324,0.7397) out=(-0.0019,0.6324,1.4897) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2714,3.6022,2.9750) mvmt=(0.0000,0.0169,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.898,96.995) lpos=(2.271,3.602,2.975) lprev=(2.271,3.585,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.6022,2.9750) mvmt=(0.0000,0.0169,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.6022,2.9750) mvmt=(0.0000,0.0169,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9769,0.8724,1.5947) mvmt=(-0.0169,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0019,0.6324,1.4897) mvmt=(-0.0169,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0019,-1.5788,0.1397) mvmt=(-0.0169,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6022,1.4950) mvmt=(0.0000,0.0169,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6022,-1.5100) mvmt=(0.0000,0.0169,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.6178,-0.0250) mvmt=(0.0000,0.0169,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.6022,2.9950) mvmt=(0.0000,0.0169,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.6197,2.9750) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.880,96.995) lpos=(2.271,3.620,2.975) lprev=(2.271,3.602,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.6197,2.9750) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.6197,2.9750) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9944,0.8724,1.5947) mvmt=(-0.0175,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0194,0.6324,1.4897) mvmt=(-0.0175,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0194,-1.5788,0.1397) mvmt=(-0.0175,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6197,1.4950) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6197,-1.5100) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.6003,-0.0250) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.6197,2.9950) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.6197,2.2250) mvmt=(0.0000,0.0175,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.229,7.880,96.245) lpos=(2.271,3.620,2.225) lprev=(2.271,3.602,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9944,0.8724,0.8447) mvmt=(-0.0175,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0194,0.6324,0.7397) mvmt=(-0.0175,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0194,0.6324,0.7397) out=(-0.0194,0.6324,1.4897) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2714,3.6197,2.9750) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.880,96.995) lpos=(2.271,3.620,2.975) lprev=(2.271,3.602,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.6197,2.9750) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.6197,2.9750) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9944,0.8724,1.5947) mvmt=(-0.0175,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0194,0.6324,1.4897) mvmt=(-0.0175,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0194,-1.5788,0.1397) mvmt=(-0.0175,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6197,1.4950) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6197,-1.5100) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.6003,-0.0250) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.6197,2.9950) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4719,3.6359,2.9750) mvmt=(0.2005,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.028,7.864,96.995) lpos=(2.472,3.636,2.975) lprev=(2.271,3.620,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4719,3.6359,2.9750) mvmt=(0.2005,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4719,3.6359,2.9750) mvmt=(0.2005,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0106,1.0729,1.5947) mvmt=(-0.0162,0.2005,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0356,0.8329,1.4897) mvmt=(-0.0162,0.2005,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4719,3.6359,2.9750) mvmt=(0.2005,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.028,7.864,96.995) lpos=(2.472,3.636,2.975) lprev=(2.271,3.620,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4719,3.6359,2.9750) mvmt=(0.2005,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4719,3.6359,2.9750) mvmt=(0.2005,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0106,1.0729,1.5947) mvmt=(-0.0162,0.2005,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0356,0.8329,1.4897) mvmt=(-0.0162,0.2005,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0356,0.8329,1.4897) out=(-0.0356,0.8329,1.9800) delta=(0.0000,0.0000,0.4903) deltaMag=0.4903 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.1828 dpPos=-0.0103 dpMove=-0.6000 iDist=0.8172 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.4719,3.6359,3.4653) mvmt=(0.2005,0.0162,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.028,7.864,97.485) lpos=(2.472,3.636,3.465) lprev=(2.271,3.620,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4719,3.6359,3.4653) mvmt=(0.2005,0.0162,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0631,3.6359,-1.0197) mvmt=(0.2005,0.0162,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(4.5019,0.3587,0.4703) mvmt=(0.2005,0.0162,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4239,3.0484,-3.8797) mvmt=(0.2005,0.0162,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-2.8111,3.0484,-3.8797) mvmt=(0.2005,0.0162,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4219,-0.5841,0.4653) mvmt=(0.2005,0.0162,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-1.0106,1.0729,2.0850) mvmt=(-0.0162,0.2005,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.0356,0.8329,1.9800) mvmt=(-0.0162,0.2005,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.0356,-1.3784,0.6300) mvmt=(-0.0162,0.2005,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.0631,3.6359,1.9853) mvmt=(0.2005,0.0162,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4719,3.6359,3.4853) mvmt=(0.2005,0.0162,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4719,3.6359,3.4653) mvmt=(0.2005,0.0162,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.028,7.864,97.485) lpos=(2.472,3.636,3.465) lprev=(2.271,3.620,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4719,3.6359,3.4653) mvmt=(0.2005,0.0162,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0631,3.6359,-1.0197) mvmt=(0.2005,0.0162,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(4.5019,0.3587,0.4703) mvmt=(0.2005,0.0162,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4239,3.0484,-3.8797) mvmt=(0.2005,0.0162,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-2.8111,3.0484,-3.8797) mvmt=(0.2005,0.0162,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4219,-0.5841,0.4653) mvmt=(0.2005,0.0162,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-1.0106,1.0729,2.0850) mvmt=(-0.0162,0.2005,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.0356,0.8329,1.9800) mvmt=(-0.0162,0.2005,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.0356,-1.3784,0.6300) mvmt=(-0.0162,0.2005,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.0631,3.6359,1.9853) mvmt=(0.2005,0.0162,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4719,3.6359,3.4853) mvmt=(0.2005,0.0162,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.2714,3.6359,2.9750) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.864,96.995) lpos=(2.271,3.636,2.975) lprev=(2.271,3.620,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.6359,2.9750) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.6359,2.9750) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0106,0.8724,1.5947) mvmt=(-0.0162,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.0356,0.6324,1.4897) mvmt=(-0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.0356,-1.5788,0.1397) mvmt=(-0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6359,1.4950) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6359,-1.5100) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.5841,-0.0250) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.6359,2.9950) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.6359,2.2250) mvmt=(0.0000,0.0162,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.229,7.864,96.245) lpos=(2.271,3.636,2.225) lprev=(2.271,3.620,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0106,0.8724,0.8447) mvmt=(-0.0162,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0356,0.6324,0.7397) mvmt=(-0.0162,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0356,0.6324,0.7397) out=(-0.0356,0.6324,1.4897) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2714,3.6359,2.9750) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.864,96.995) lpos=(2.271,3.636,2.975) lprev=(2.271,3.620,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.6359,2.9750) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.6359,2.9750) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0106,0.8724,1.5947) mvmt=(-0.0162,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0356,0.6324,1.4897) mvmt=(-0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0356,-1.5788,0.1397) mvmt=(-0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6359,1.4950) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6359,-1.5100) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.5841,-0.0250) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.6359,2.9950) mvmt=(0.0000,0.0162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.6524,2.9750) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.848,96.995) lpos=(2.271,3.652,2.975) lprev=(2.271,3.636,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.6524,2.9750) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.6524,2.9750) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0271,0.8724,1.5947) mvmt=(-0.0165,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0521,0.6324,1.4897) mvmt=(-0.0165,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0521,-1.5788,0.1397) mvmt=(-0.0165,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6524,1.4950) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6524,-1.5100) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.5676,-0.0250) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.6524,2.9950) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.6524,2.2250) mvmt=(0.0000,0.0165,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.229,7.848,96.245) lpos=(2.271,3.652,2.225) lprev=(2.271,3.636,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0271,0.8724,0.8447) mvmt=(-0.0165,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0521,0.6324,0.7397) mvmt=(-0.0165,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0521,0.6324,0.7397) out=(-0.0521,0.6324,1.4897) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2714,3.6524,2.9750) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.848,96.995) lpos=(2.271,3.652,2.975) lprev=(2.271,3.636,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.6524,2.9750) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.6524,2.9750) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0271,0.8724,1.5947) mvmt=(-0.0165,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0521,0.6324,1.4897) mvmt=(-0.0165,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0521,-1.5788,0.1397) mvmt=(-0.0165,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6524,1.4950) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6524,-1.5100) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.5676,-0.0250) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.6524,2.9950) mvmt=(0.0000,0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4978,3.6707,2.9750) mvmt=(0.2264,0.0183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.002,7.829,96.995) lpos=(2.498,3.671,2.975) lprev=(2.271,3.652,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4978,3.6707,2.9750) mvmt=(0.2264,0.0183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4978,3.6707,2.9750) mvmt=(0.2264,0.0183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0454,1.0988,1.5947) mvmt=(-0.0183,0.2264,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0704,0.8588,1.4897) mvmt=(-0.0183,0.2264,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4978,3.6707,2.9750) mvmt=(0.2264,0.0183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.002,7.829,96.995) lpos=(2.498,3.671,2.975) lprev=(2.271,3.652,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4978,3.6707,2.9750) mvmt=(0.2264,0.0183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4978,3.6707,2.9750) mvmt=(0.2264,0.0183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0454,1.0988,1.5947) mvmt=(-0.0183,0.2264,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0704,0.8588,1.4897) mvmt=(-0.0183,0.2264,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0704,0.8588,1.4897) out=(-0.0704,0.8588,1.9800) delta=(0.0000,0.0000,0.4903) deltaMag=0.4903 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.1828 dpPos=-0.0103 dpMove=-0.6000 iDist=0.8172 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.4978,3.6707,3.4653) mvmt=(0.2264,0.0183,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.002,7.829,97.485) lpos=(2.498,3.671,3.465) lprev=(2.271,3.652,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4978,3.6707,3.4653) mvmt=(0.2264,0.0183,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0372,3.6707,-1.0197) mvmt=(0.2264,0.0183,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(4.5278,0.3934,0.4703) mvmt=(0.2264,0.0183,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4498,3.0832,-3.8797) mvmt=(0.2264,0.0183,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-2.7851,3.0832,-3.8797) mvmt=(0.2264,0.0183,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4478,-0.5493,0.4653) mvmt=(0.2264,0.0183,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-1.0454,1.0988,2.0850) mvmt=(-0.0183,0.2264,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.0704,0.8588,1.9800) mvmt=(-0.0183,0.2264,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.0704,-1.3524,0.6300) mvmt=(-0.0183,0.2264,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.0372,3.6707,1.9853) mvmt=(0.2264,0.0183,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4978,3.6707,3.4853) mvmt=(0.2264,0.0183,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4978,3.6707,3.4653) mvmt=(0.2264,0.0183,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.002,7.829,97.485) lpos=(2.498,3.671,3.465) lprev=(2.271,3.652,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4978,3.6707,3.4653) mvmt=(0.2264,0.0183,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0372,3.6707,-1.0197) mvmt=(0.2264,0.0183,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(4.5278,0.3934,0.4703) mvmt=(0.2264,0.0183,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4498,3.0832,-3.8797) mvmt=(0.2264,0.0183,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-2.7851,3.0832,-3.8797) mvmt=(0.2264,0.0183,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4478,-0.5493,0.4653) mvmt=(0.2264,0.0183,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-1.0454,1.0988,2.0850) mvmt=(-0.0183,0.2264,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.0704,0.8588,1.9800) mvmt=(-0.0183,0.2264,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.0704,-1.3524,0.6300) mvmt=(-0.0183,0.2264,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.0372,3.6707,1.9853) mvmt=(0.2264,0.0183,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4978,3.6707,3.4853) mvmt=(0.2264,0.0183,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.2714,3.6707,2.9750) mvmt=(0.0000,0.0183,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.829,96.995) lpos=(2.271,3.671,2.975) lprev=(2.271,3.652,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.6707,2.9750) mvmt=(0.0000,0.0183,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.6707,2.9750) mvmt=(0.0000,0.0183,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0454,0.8724,1.5947) mvmt=(-0.0183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.0704,0.6324,1.4897) mvmt=(-0.0183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.0704,-1.5788,0.1397) mvmt=(-0.0183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6707,1.4950) mvmt=(0.0000,0.0183,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6707,-1.5100) mvmt=(0.0000,0.0183,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.5493,-0.0250) mvmt=(0.0000,0.0183,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.6707,2.9950) mvmt=(0.0000,0.0183,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.6707,2.2250) mvmt=(0.0000,0.0183,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.229,7.829,96.245) lpos=(2.271,3.671,2.225) lprev=(2.271,3.652,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0454,0.8724,0.8447) mvmt=(-0.0183,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0704,0.6324,0.7397) mvmt=(-0.0183,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0704,0.6324,0.7397) out=(-0.0704,0.6324,1.4897) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2714,3.6707,2.9750) mvmt=(0.0000,0.0183,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.829,96.995) lpos=(2.271,3.671,2.975) lprev=(2.271,3.652,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.6707,2.9750) mvmt=(0.0000,0.0183,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.6707,2.9750) mvmt=(0.0000,0.0183,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0454,0.8724,1.5947) mvmt=(-0.0183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0704,0.6324,1.4897) mvmt=(-0.0183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0704,-1.5788,0.1397) mvmt=(-0.0183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6707,1.4950) mvmt=(0.0000,0.0183,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6707,-1.5100) mvmt=(0.0000,0.0183,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.5493,-0.0250) mvmt=(0.0000,0.0183,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.6707,2.9950) mvmt=(0.0000,0.0183,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.6870,2.9750) mvmt=(0.0000,0.0163,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.813,96.995) lpos=(2.271,3.687,2.975) lprev=(2.271,3.671,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.6870,2.9750) mvmt=(0.0000,0.0163,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.6870,2.9750) mvmt=(0.0000,0.0163,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0617,0.8724,1.5947) mvmt=(-0.0163,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0867,0.6324,1.4897) mvmt=(-0.0163,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0867,-1.5788,0.1397) mvmt=(-0.0163,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6870,1.4950) mvmt=(0.0000,0.0163,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6870,-1.5100) mvmt=(0.0000,0.0163,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.5330,-0.0250) mvmt=(0.0000,0.0163,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.6870,2.9950) mvmt=(0.0000,0.0163,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.6870,2.2250) mvmt=(0.0000,0.0163,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.229,7.813,96.245) lpos=(2.271,3.687,2.225) lprev=(2.271,3.671,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0617,0.8724,0.8447) mvmt=(-0.0163,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0867,0.6324,0.7397) mvmt=(-0.0163,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0867,0.6324,0.7397) out=(-0.0867,0.6324,1.4897) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2714,3.6870,2.9750) mvmt=(0.0000,0.0163,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.813,96.995) lpos=(2.271,3.687,2.975) lprev=(2.271,3.671,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.6870,2.9750) mvmt=(0.0000,0.0163,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.6870,2.9750) mvmt=(0.0000,0.0163,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0617,0.8724,1.5947) mvmt=(-0.0163,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0867,0.6324,1.4897) mvmt=(-0.0163,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0867,-1.5788,0.1397) mvmt=(-0.0163,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6870,1.4950) mvmt=(0.0000,0.0163,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6870,-1.5100) mvmt=(0.0000,0.0163,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.5330,-0.0250) mvmt=(0.0000,0.0163,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.6870,2.9950) mvmt=(0.0000,0.0163,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4903,3.7047,2.9750) mvmt=(0.2189,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.010,7.795,96.995) lpos=(2.490,3.705,2.975) lprev=(2.271,3.687,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4903,3.7047,2.9750) mvmt=(0.2189,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4903,3.7047,2.9750) mvmt=(0.2189,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0794,1.0913,1.5947) mvmt=(-0.0177,0.2189,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1044,0.8513,1.4897) mvmt=(-0.0177,0.2189,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4903,3.7047,2.9750) mvmt=(0.2189,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.010,7.795,96.995) lpos=(2.490,3.705,2.975) lprev=(2.271,3.687,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4903,3.7047,2.9750) mvmt=(0.2189,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4903,3.7047,2.9750) mvmt=(0.2189,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0794,1.0913,1.5947) mvmt=(-0.0177,0.2189,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1044,0.8513,1.4897) mvmt=(-0.0177,0.2189,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1044,0.8513,1.4897) out=(-0.1044,0.8513,1.9800) delta=(0.0000,0.0000,0.4903) deltaMag=0.4903 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.1828 dpPos=-0.0103 dpMove=-0.6000 iDist=0.8172 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.4903,3.7047,3.4653) mvmt=(0.2189,0.0177,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.010,7.795,97.485) lpos=(2.490,3.705,3.465) lprev=(2.271,3.687,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4903,3.7047,3.4653) mvmt=(0.2189,0.0177,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0447,3.7047,-1.0197) mvmt=(0.2189,0.0177,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(4.5203,0.4274,0.4703) mvmt=(0.2189,0.0177,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4423,3.1172,-3.8797) mvmt=(0.2189,0.0177,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-2.7927,3.1172,-3.8797) mvmt=(0.2189,0.0177,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4403,-0.5153,0.4653) mvmt=(0.2189,0.0177,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-1.0794,1.0913,2.0850) mvmt=(-0.0177,0.2189,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.1044,0.8513,1.9800) mvmt=(-0.0177,0.2189,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.1044,-1.3600,0.6300) mvmt=(-0.0177,0.2189,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.0447,3.7047,1.9853) mvmt=(0.2189,0.0177,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4903,3.7047,3.4853) mvmt=(0.2189,0.0177,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4903,3.7047,3.4653) mvmt=(0.2189,0.0177,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.010,7.795,97.485) lpos=(2.490,3.705,3.465) lprev=(2.271,3.687,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4903,3.7047,3.4653) mvmt=(0.2189,0.0177,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0447,3.7047,-1.0197) mvmt=(0.2189,0.0177,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(4.5203,0.4274,0.4703) mvmt=(0.2189,0.0177,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4423,3.1172,-3.8797) mvmt=(0.2189,0.0177,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-2.7927,3.1172,-3.8797) mvmt=(0.2189,0.0177,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4403,-0.5153,0.4653) mvmt=(0.2189,0.0177,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-1.0794,1.0913,2.0850) mvmt=(-0.0177,0.2189,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.1044,0.8513,1.9800) mvmt=(-0.0177,0.2189,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.1044,-1.3600,0.6300) mvmt=(-0.0177,0.2189,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.0447,3.7047,1.9853) mvmt=(0.2189,0.0177,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4903,3.7047,3.4853) mvmt=(0.2189,0.0177,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.2714,3.7047,2.9750) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.795,96.995) lpos=(2.271,3.705,2.975) lprev=(2.271,3.687,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.7047,2.9750) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.7047,2.9750) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0794,0.8724,1.5947) mvmt=(-0.0177,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.1044,0.6324,1.4897) mvmt=(-0.0177,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.1044,-1.5788,0.1397) mvmt=(-0.0177,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.7047,1.4950) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.7047,-1.5100) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.5153,-0.0250) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.7047,2.9950) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.7047,2.2250) mvmt=(0.0000,0.0177,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.229,7.795,96.245) lpos=(2.271,3.705,2.225) lprev=(2.271,3.687,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0794,0.8724,0.8447) mvmt=(-0.0177,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1044,0.6324,0.7397) mvmt=(-0.0177,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1044,0.6324,0.7397) out=(-0.1044,0.6324,1.4897) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2714,3.7047,2.9750) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.795,96.995) lpos=(2.271,3.705,2.975) lprev=(2.271,3.687,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.7047,2.9750) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.7047,2.9750) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0794,0.8724,1.5947) mvmt=(-0.0177,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1044,0.6324,1.4897) mvmt=(-0.0177,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1044,-1.5788,0.1397) mvmt=(-0.0177,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.7047,1.4950) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.7047,-1.5100) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.5153,-0.0250) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.7047,2.9950) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.7223,2.9750) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.778,96.995) lpos=(2.271,3.722,2.975) lprev=(2.271,3.705,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.7223,2.9750) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.7223,2.9750) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0971,0.8724,1.5947) mvmt=(-0.0177,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1221,0.6324,1.4897) mvmt=(-0.0177,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1221,-1.5788,0.1397) mvmt=(-0.0177,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.7223,1.4950) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.7223,-1.5100) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.4977,-0.0250) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.7223,2.9950) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.7223,2.2250) mvmt=(0.0000,0.0177,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.229,7.778,96.245) lpos=(2.271,3.722,2.225) lprev=(2.271,3.705,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0971,0.8724,0.8447) mvmt=(-0.0177,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1221,0.6324,0.7397) mvmt=(-0.0177,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1221,0.6324,0.7397) out=(-0.1221,0.6324,1.4897) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2714,3.7223,2.9750) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.778,96.995) lpos=(2.271,3.722,2.975) lprev=(2.271,3.705,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.7223,2.9750) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.7223,2.9750) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0971,0.8724,1.5947) mvmt=(-0.0177,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1221,0.6324,1.4897) mvmt=(-0.0177,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1221,-1.5788,0.1397) mvmt=(-0.0177,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.7223,1.4950) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.7223,-1.5100) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.4977,-0.0250) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.7223,2.9950) mvmt=(0.0000,0.0177,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4880,3.7398,2.9750) mvmt=(0.2165,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.012,7.760,96.995) lpos=(2.488,3.740,2.975) lprev=(2.271,3.722,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4880,3.7398,2.9750) mvmt=(0.2165,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4880,3.7398,2.9750) mvmt=(0.2165,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1146,1.0890,1.5947) mvmt=(-0.0175,0.2165,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1396,0.8490,1.4897) mvmt=(-0.0175,0.2165,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4880,3.7398,2.9750) mvmt=(0.2165,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.012,7.760,96.995) lpos=(2.488,3.740,2.975) lprev=(2.271,3.722,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4880,3.7398,2.9750) mvmt=(0.2165,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4880,3.7398,2.9750) mvmt=(0.2165,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1146,1.0890,1.5947) mvmt=(-0.0175,0.2165,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1396,0.8490,1.4897) mvmt=(-0.0175,0.2165,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1396,0.8490,1.4897) out=(-0.1396,0.8490,1.9800) delta=(0.0000,0.0000,0.4903) deltaMag=0.4903 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.1828 dpPos=-0.0103 dpMove=-0.6000 iDist=0.8172 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.4880,3.7398,3.4653) mvmt=(0.2165,0.0175,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.012,7.760,97.485) lpos=(2.488,3.740,3.465) lprev=(2.271,3.722,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4880,3.7398,3.4653) mvmt=(0.2165,0.0175,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0470,3.7398,-1.0197) mvmt=(0.2165,0.0175,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(4.5180,0.4626,0.4703) mvmt=(0.2165,0.0175,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4400,3.1523,-3.8797) mvmt=(0.2165,0.0175,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-2.7950,3.1523,-3.8797) mvmt=(0.2165,0.0175,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4380,-0.4802,0.4653) mvmt=(0.2165,0.0175,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-1.1146,1.0890,2.0850) mvmt=(-0.0175,0.2165,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.1396,0.8490,1.9800) mvmt=(-0.0175,0.2165,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.1396,-1.3623,0.6300) mvmt=(-0.0175,0.2165,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.0470,3.7398,1.9853) mvmt=(0.2165,0.0175,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4880,3.7398,3.4853) mvmt=(0.2165,0.0175,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4880,3.7398,3.4653) mvmt=(0.2165,0.0175,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.012,7.760,97.485) lpos=(2.488,3.740,3.465) lprev=(2.271,3.722,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4880,3.7398,3.4653) mvmt=(0.2165,0.0175,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0470,3.7398,-1.0197) mvmt=(0.2165,0.0175,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(4.5180,0.4626,0.4703) mvmt=(0.2165,0.0175,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4400,3.1523,-3.8797) mvmt=(0.2165,0.0175,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-2.7950,3.1523,-3.8797) mvmt=(0.2165,0.0175,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4380,-0.4802,0.4653) mvmt=(0.2165,0.0175,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-1.1146,1.0890,2.0850) mvmt=(-0.0175,0.2165,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.1396,0.8490,1.9800) mvmt=(-0.0175,0.2165,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.1396,-1.3623,0.6300) mvmt=(-0.0175,0.2165,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.0470,3.7398,1.9853) mvmt=(0.2165,0.0175,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4880,3.7398,3.4853) mvmt=(0.2165,0.0175,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.2714,3.7398,2.9750) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.760,96.995) lpos=(2.271,3.740,2.975) lprev=(2.271,3.722,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.7398,2.9750) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.7398,2.9750) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1146,0.8724,1.5947) mvmt=(-0.0175,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.1396,0.6324,1.4897) mvmt=(-0.0175,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.1396,-1.5788,0.1397) mvmt=(-0.0175,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.7398,1.4950) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.7398,-1.5100) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.4802,-0.0250) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.7398,2.9950) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.7398,2.2250) mvmt=(0.0000,0.0175,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.229,7.760,96.245) lpos=(2.271,3.740,2.225) lprev=(2.271,3.722,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1146,0.8724,0.8447) mvmt=(-0.0175,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1396,0.6324,0.7397) mvmt=(-0.0175,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1396,0.6324,0.7397) out=(-0.1396,0.6324,1.4897) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2714,3.7398,2.9750) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.760,96.995) lpos=(2.271,3.740,2.975) lprev=(2.271,3.722,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.7398,2.9750) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.7398,2.9750) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1146,0.8724,1.5947) mvmt=(-0.0175,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1396,0.6324,1.4897) mvmt=(-0.0175,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1396,-1.5788,0.1397) mvmt=(-0.0175,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.7398,1.4950) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.7398,-1.5100) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.4802,-0.0250) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.7398,2.9950) mvmt=(0.0000,0.0175,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.7560,2.9750) mvmt=(0.0000,0.0161,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.744,96.995) lpos=(2.271,3.756,2.975) lprev=(2.271,3.740,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.7560,2.9750) mvmt=(0.0000,0.0161,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.7560,2.9750) mvmt=(0.0000,0.0161,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1307,0.8724,1.5947) mvmt=(-0.0161,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1557,0.6324,1.4897) mvmt=(-0.0161,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1557,-1.5788,0.1397) mvmt=(-0.0161,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.7560,1.4950) mvmt=(0.0000,0.0161,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.7560,-1.5100) mvmt=(0.0000,0.0161,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.4640,-0.0250) mvmt=(0.0000,0.0161,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.7560,2.9950) mvmt=(0.0000,0.0161,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.7560,2.2250) mvmt=(0.0000,0.0161,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.229,7.744,96.245) lpos=(2.271,3.756,2.225) lprev=(2.271,3.740,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1307,0.8724,0.8447) mvmt=(-0.0161,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1557,0.6324,0.7397) mvmt=(-0.0161,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1557,0.6324,0.7397) out=(-0.1557,0.6324,1.4897) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2714,3.7560,2.9750) mvmt=(0.0000,0.0161,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.744,96.995) lpos=(2.271,3.756,2.975) lprev=(2.271,3.740,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.7560,2.9750) mvmt=(0.0000,0.0161,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.7560,2.9750) mvmt=(0.0000,0.0161,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1307,0.8724,1.5947) mvmt=(-0.0161,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1557,0.6324,1.4897) mvmt=(-0.0161,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1557,-1.5788,0.1397) mvmt=(-0.0161,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.7560,1.4950) mvmt=(0.0000,0.0161,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.7560,-1.5100) mvmt=(0.0000,0.0161,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.4640,-0.0250) mvmt=(0.0000,0.0161,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.7560,2.9950) mvmt=(0.0000,0.0161,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4957,3.7741,2.9750) mvmt=(0.2243,0.0181,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.004,7.726,96.995) lpos=(2.496,3.774,2.975) lprev=(2.271,3.756,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4957,3.7741,2.9750) mvmt=(0.2243,0.0181,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4957,3.7741,2.9750) mvmt=(0.2243,0.0181,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1488,1.0967,1.5947) mvmt=(-0.0181,0.2243,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1738,0.8567,1.4897) mvmt=(-0.0181,0.2243,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4957,3.7741,2.9750) mvmt=(0.2243,0.0181,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.004,7.726,96.995) lpos=(2.496,3.774,2.975) lprev=(2.271,3.756,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4957,3.7741,2.9750) mvmt=(0.2243,0.0181,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4957,3.7741,2.9750) mvmt=(0.2243,0.0181,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1488,1.0967,1.5947) mvmt=(-0.0181,0.2243,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1738,0.8567,1.4897) mvmt=(-0.0181,0.2243,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1738,0.8567,1.4897) out=(-0.1738,0.8567,1.9800) delta=(0.0000,0.0000,0.4903) deltaMag=0.4903 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.1828 dpPos=-0.0103 dpMove=-0.6000 iDist=0.8172 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.4957,3.7741,3.4653) mvmt=(0.2243,0.0181,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.004,7.726,97.485) lpos=(2.496,3.774,3.465) lprev=(2.271,3.756,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4957,3.7741,3.4653) mvmt=(0.2243,0.0181,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0393,3.7741,-1.0197) mvmt=(0.2243,0.0181,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(4.5257,0.4969,0.4703) mvmt=(0.2243,0.0181,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4477,3.1866,-3.8797) mvmt=(0.2243,0.0181,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-2.7873,3.1866,-3.8797) mvmt=(0.2243,0.0181,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4457,-0.4459,0.4653) mvmt=(0.2243,0.0181,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-1.1488,1.0967,2.0850) mvmt=(-0.0181,0.2243,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.1738,0.8567,1.9800) mvmt=(-0.0181,0.2243,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.1738,-1.3545,0.6300) mvmt=(-0.0181,0.2243,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.0393,3.7741,1.9853) mvmt=(0.2243,0.0181,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.0522,1.8751,3.4778) mvmt=(-0.2247,-0.0113,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4957,3.7741,3.4853) mvmt=(0.2243,0.0181,0.4903) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4957,3.7741,3.4653) mvmt=(0.2243,0.0181,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.004,7.726,97.485) lpos=(2.496,3.774,3.465) lprev=(2.271,3.756,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4957,3.7741,3.4653) mvmt=(0.2243,0.0181,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0393,3.7741,-1.0197) mvmt=(0.2243,0.0181,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(4.5257,0.4969,0.4703) mvmt=(0.2243,0.0181,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4477,3.1866,-3.8797) mvmt=(0.2243,0.0181,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-2.7873,3.1866,-3.8797) mvmt=(0.2243,0.0181,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.4457,-0.4459,0.4653) mvmt=(0.2243,0.0181,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-1.1488,1.0967,2.0850) mvmt=(-0.0181,0.2243,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.1738,0.8567,1.9800) mvmt=(-0.0181,0.2243,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.1738,-1.3545,0.6300) mvmt=(-0.0181,0.2243,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.0393,3.7741,1.9853) mvmt=(0.2243,0.0181,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.0522,1.8751,3.4778) mvmt=(-0.2247,-0.0113,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.4957,3.7741,3.4853) mvmt=(0.2243,0.0181,0.4903) collide=False insertType=1 objState=0x303 winterp=0.1828 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.2714,3.7741,2.9750) mvmt=(0.0000,0.0181,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.726,96.995) lpos=(2.271,3.774,2.975) lprev=(2.271,3.756,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.7741,2.9750) mvmt=(0.0000,0.0181,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.7741,2.9750) mvmt=(0.0000,0.0181,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1488,0.8724,1.5947) mvmt=(-0.0181,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.1738,0.6324,1.4897) mvmt=(-0.0181,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-0.1738,-1.5788,0.1397) mvmt=(-0.0181,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.7741,1.4950) mvmt=(0.0000,0.0181,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.7741,-1.5100) mvmt=(0.0000,0.0181,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.4459,-0.0250) mvmt=(0.0000,0.0181,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.7741,2.9950) mvmt=(0.0000,0.0181,0.0000) collide=False insertType=0 objState=0x303 winterp=0.1828 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.7741,2.2250) mvmt=(0.0000,0.0181,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.229,7.726,96.245) lpos=(2.271,3.774,2.225) lprev=(2.271,3.756,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1488,0.8724,0.8447) mvmt=(-0.0181,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1738,0.6324,0.7397) mvmt=(-0.0181,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1738,0.6324,0.7397) out=(-0.1738,0.6324,1.4897) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2714,3.7741,2.9750) mvmt=(0.0000,0.0181,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.726,96.995) lpos=(2.271,3.774,2.975) lprev=(2.271,3.756,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.7741,2.9750) mvmt=(0.0000,0.0181,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.7741,2.9750) mvmt=(0.0000,0.0181,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1488,0.8724,1.5947) mvmt=(-0.0181,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1738,0.6324,1.4897) mvmt=(-0.0181,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1738,-1.5788,0.1397) mvmt=(-0.0181,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.7741,1.4950) mvmt=(0.0000,0.0181,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.7741,-1.5100) mvmt=(0.0000,0.0181,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.4459,-0.0250) mvmt=(0.0000,0.0181,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.7741,2.9950) mvmt=(0.0000,0.0181,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[input] MovementTurnLeft Press +[input] MovementStrafeRight Press +[push-back-disp] site=dispatch center=(2.2714,3.6573,2.9750) mvmt=(0.0000,-0.1168,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.843,96.995) lpos=(2.271,3.657,2.975) lprev=(2.271,3.774,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.6573,2.9750) mvmt=(0.0000,-0.1168,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.6573,2.9750) mvmt=(0.0000,-0.1168,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0321,0.8724,1.5947) mvmt=(0.1168,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0571,0.6324,1.4897) mvmt=(0.1168,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0571,-1.5788,0.1397) mvmt=(0.1168,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6573,1.4950) mvmt=(0.0000,-0.1168,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6573,-1.5100) mvmt=(0.0000,-0.1168,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.5627,-0.0250) mvmt=(0.0000,-0.1168,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.6573,2.9950) mvmt=(0.0000,-0.1168,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.6573,2.2250) mvmt=(0.0000,-0.1168,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.229,7.843,96.245) lpos=(2.271,3.657,2.225) lprev=(2.271,3.774,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0321,0.8724,0.8447) mvmt=(0.1168,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0571,0.6324,0.7397) mvmt=(0.1168,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0571,0.6324,0.7397) out=(-0.0571,0.6324,1.4897) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2714,3.6573,2.9750) mvmt=(0.0000,-0.1168,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.229,7.843,96.995) lpos=(2.271,3.657,2.975) lprev=(2.271,3.774,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2714,3.6573,2.9750) mvmt=(0.0000,-0.1168,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2714,3.6573,2.9750) mvmt=(0.0000,-0.1168,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0321,0.8724,1.5947) mvmt=(0.1168,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0571,0.6324,1.4897) mvmt=(0.1168,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0571,-1.5788,0.1397) mvmt=(0.1168,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6573,1.4950) mvmt=(0.0000,-0.1168,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2636,3.6573,-1.5100) mvmt=(0.0000,-0.1168,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2214,-0.5627,-0.0250) mvmt=(0.0000,-0.1168,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2714,3.6573,2.9950) mvmt=(0.0000,-0.1168,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3376,3.5390,2.9750) mvmt=(0.0661,-0.1183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.162,7.961,96.995) lpos=(2.338,3.539,2.975) lprev=(2.271,3.657,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3376,3.5390,2.9750) mvmt=(0.0661,-0.1183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3376,3.5390,2.9750) mvmt=(0.0661,-0.1183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9138,0.9386,1.5947) mvmt=(0.1183,0.0661,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0612,0.6985,1.4897) mvmt=(0.1183,0.0661,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3376,3.5390,2.9750) mvmt=(0.0661,-0.1183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.162,7.961,96.995) lpos=(2.338,3.539,2.975) lprev=(2.271,3.657,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3376,3.5390,2.9750) mvmt=(0.0661,-0.1183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3376,3.5390,2.9750) mvmt=(0.0661,-0.1183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9138,0.9386,1.5947) mvmt=(0.1183,0.0661,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0612,0.6985,1.4897) mvmt=(0.1183,0.0661,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0612,0.6985,1.4897) out=(0.0612,0.6985,1.5581) delta=(0.0000,0.0000,0.0684) deltaMag=0.0684 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.8860 dpPos=0.4325 dpMove=-0.4170 iDist=0.1140 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014A caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.3376,3.5390,3.0434) mvmt=(0.0661,-0.1183,0.0684) collide=False insertType=0 objState=0x303 winterp=0.8860 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.162,7.961,97.063) lpos=(2.338,3.539,3.043) lprev=(2.271,3.657,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3376,3.5390,3.0434) mvmt=(0.0661,-0.1183,0.0684) collide=False insertType=0 objState=0x303 winterp=0.8860 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3376,3.5390,3.0434) mvmt=(0.0661,-0.1183,0.0684) collide=False insertType=0 objState=0x303 winterp=0.8860 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.1974,3.5390,-1.4416) mvmt=(0.0661,-0.1183,0.0684) collide=False insertType=0 objState=0x303 winterp=0.8860 return=-1 +[push-back-disp] site=dispatch center=(4.3676,0.2618,0.0484) mvmt=(0.0661,-0.1183,0.0684) collide=False insertType=0 objState=0x303 winterp=0.8860 return=-1 +[push-back-disp] site=dispatch center=(-2.9454,2.9515,-4.3016) mvmt=(0.0661,-0.1183,0.0684) collide=False insertType=0 objState=0x303 winterp=0.8860 return=-1 +[push-back-disp] site=dispatch center=(3.2876,-0.6810,0.0434) mvmt=(0.0661,-0.1183,0.0684) collide=False insertType=0 objState=0x303 winterp=0.8860 return=-1 +[push-back-disp] site=dispatch center=(-0.9138,0.9386,1.6631) mvmt=(0.1183,0.0661,0.0684) collide=False insertType=0 objState=0x303 winterp=0.8860 return=-1 +[push-back-disp] site=dispatch center=(0.0612,0.6985,1.5581) mvmt=(0.1183,0.0661,0.0684) collide=False insertType=0 objState=0x303 winterp=0.8860 return=-1 +[push-back-disp] site=dispatch center=(0.0612,-1.5127,0.2081) mvmt=(0.1183,0.0661,0.0684) collide=False insertType=0 objState=0x303 winterp=0.8860 return=-1 +[push-back-disp] site=dispatch center=(-3.1974,3.5390,1.5634) mvmt=(0.0661,-0.1183,0.0684) collide=False insertType=0 objState=0x303 winterp=0.8860 return=-1 +[push-back-disp] site=dispatch center=(2.3376,3.5390,3.0634) mvmt=(0.0661,-0.1183,0.0684) collide=False insertType=0 objState=0x303 winterp=0.8860 return=-1 +[push-back-disp] site=dispatch center=(2.3376,3.5390,3.0434) mvmt=(0.0661,-0.1183,0.0684) collide=False insertType=1 objState=0x303 winterp=0.8860 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.162,7.961,97.063) lpos=(2.338,3.539,3.043) lprev=(2.271,3.657,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3376,3.5390,3.0434) mvmt=(0.0661,-0.1183,0.0684) collide=False insertType=1 objState=0x303 winterp=0.8860 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3376,3.5390,3.0434) mvmt=(0.0661,-0.1183,0.0684) collide=False insertType=1 objState=0x303 winterp=0.8860 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.1974,3.5390,-1.4416) mvmt=(0.0661,-0.1183,0.0684) collide=False insertType=1 objState=0x303 winterp=0.8860 return=-1 +[push-back-disp] site=dispatch center=(4.3676,0.2618,0.0484) mvmt=(0.0661,-0.1183,0.0684) collide=False insertType=1 objState=0x303 winterp=0.8860 return=-1 +[push-back-disp] site=dispatch center=(-2.9454,2.9515,-4.3016) mvmt=(0.0661,-0.1183,0.0684) collide=False insertType=1 objState=0x303 winterp=0.8860 return=-1 +[push-back-disp] site=dispatch center=(3.2876,-0.6810,0.0434) mvmt=(0.0661,-0.1183,0.0684) collide=False insertType=1 objState=0x303 winterp=0.8860 return=-1 +[push-back-disp] site=dispatch center=(-0.9138,0.9386,1.6631) mvmt=(0.1183,0.0661,0.0684) collide=False insertType=1 objState=0x303 winterp=0.8860 return=-1 +[push-back-disp] site=dispatch center=(0.0612,0.6985,1.5581) mvmt=(0.1183,0.0661,0.0684) collide=False insertType=1 objState=0x303 winterp=0.8860 return=-1 +[push-back-disp] site=dispatch center=(0.0612,-1.5127,0.2081) mvmt=(0.1183,0.0661,0.0684) collide=False insertType=1 objState=0x303 winterp=0.8860 return=-1 +[push-back-disp] site=dispatch center=(-3.1974,3.5390,1.5634) mvmt=(0.0661,-0.1183,0.0684) collide=False insertType=1 objState=0x303 winterp=0.8860 return=-1 +[push-back-disp] site=dispatch center=(2.3376,3.5390,3.0634) mvmt=(0.0661,-0.1183,0.0684) collide=False insertType=1 objState=0x303 winterp=0.8860 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.3034,3.5390,3.0080) mvmt=(0.0319,-0.1183,0.0330) collide=False insertType=0 objState=0x303 winterp=0.8860 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.197,7.961,97.028) lpos=(2.303,3.539,3.008) lprev=(2.271,3.657,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3034,3.5390,3.0080) mvmt=(0.0319,-0.1183,0.0330) collide=False insertType=0 objState=0x303 winterp=0.8860 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3034,3.5390,3.0080) mvmt=(0.0319,-0.1183,0.0330) collide=False insertType=0 objState=0x303 winterp=0.8860 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2316,3.5390,-1.4770) mvmt=(0.0319,-0.1183,0.0330) collide=False insertType=0 objState=0x303 winterp=0.8860 return=-1 +[push-back-disp] site=dispatch center=(-2.9796,2.9515,-4.3370) mvmt=(0.0319,-0.1183,0.0330) collide=False insertType=0 objState=0x303 winterp=0.8860 return=-1 +[push-back-disp] site=dispatch center=(3.2534,-0.6810,0.0080) mvmt=(0.0319,-0.1183,0.0330) collide=False insertType=0 objState=0x303 winterp=0.8860 return=-1 +[push-back-disp] site=dispatch center=(-0.9138,0.9044,1.6277) mvmt=(0.1183,0.0319,0.0330) collide=False insertType=0 objState=0x303 winterp=0.8860 return=-1 +[push-back-disp] site=dispatch center=(0.0612,0.6644,1.5227) mvmt=(0.1183,0.0319,0.0330) collide=False insertType=0 objState=0x303 winterp=0.8860 return=-1 +[push-back-disp] site=dispatch center=(0.0612,-1.5469,0.1727) mvmt=(0.1183,0.0319,0.0330) collide=False insertType=0 objState=0x303 winterp=0.8860 return=-1 +[push-back-disp] site=dispatch center=(-3.2316,3.5390,1.5280) mvmt=(0.0319,-0.1183,0.0330) collide=False insertType=0 objState=0x303 winterp=0.8860 return=-1 +[push-back-disp] site=dispatch center=(2.3034,3.5390,3.0280) mvmt=(0.0319,-0.1183,0.0330) collide=False insertType=0 objState=0x303 winterp=0.8860 return=-1 +[push-back-disp] site=dispatch center=(2.3034,3.5390,2.2580) mvmt=(0.0319,-0.1183,-0.7170) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.197,7.961,96.278) lpos=(2.303,3.539,2.258) lprev=(2.271,3.657,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9138,0.9044,0.8777) mvmt=(0.1183,0.0319,-0.7170) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0612,0.6644,0.7727) mvmt=(0.1183,0.0319,-0.7170) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0612,0.6644,0.7727) out=(0.0612,0.6644,1.5227) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014A -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.3034,3.5390,3.0080) mvmt=(0.0319,-0.1183,0.0330) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.197,7.961,97.028) lpos=(2.303,3.539,3.008) lprev=(2.271,3.657,2.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3034,3.5390,3.0080) mvmt=(0.0319,-0.1183,0.0330) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3034,3.5390,3.0080) mvmt=(0.0319,-0.1183,0.0330) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2316,3.5390,-1.4770) mvmt=(0.0319,-0.1183,0.0330) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9796,2.9515,-4.3370) mvmt=(0.0319,-0.1183,0.0330) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2534,-0.6810,0.0080) mvmt=(0.0319,-0.1183,0.0330) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9138,0.9044,1.6277) mvmt=(0.1183,0.0319,0.0330) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0612,0.6644,1.5227) mvmt=(0.1183,0.0319,0.0330) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0612,-1.5469,0.1727) mvmt=(0.1183,0.0319,0.0330) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2316,3.5390,1.5280) mvmt=(0.0319,-0.1183,0.0330) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3034,3.5390,3.0280) mvmt=(0.0319,-0.1183,0.0330) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cell-transit] 0xA9B4014A -> 0xA9B4014B pos=(128.197,7.961,96.548) reason=resolver +[push-back-disp] site=dispatch center=(2.3034,3.4207,3.0080) mvmt=(0.0000,-0.1183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.197,8.079,97.028) lpos=(2.303,3.421,3.008) lprev=(2.303,3.539,3.008) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3034,3.4207,3.0080) mvmt=(0.0000,-0.1183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3034,3.4207,3.0080) mvmt=(0.0000,-0.1183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2316,3.4207,-1.4770) mvmt=(0.0000,-0.1183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9796,2.8332,-4.3370) mvmt=(0.0000,-0.1183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2534,-0.7993,0.0080) mvmt=(0.0000,-0.1183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7955,0.9044,1.6277) mvmt=(0.1183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1795,0.6644,1.5227) mvmt=(0.1183,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1795,-1.5469,0.1727) mvmt=(0.1183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2316,3.4207,1.5280) mvmt=(0.0000,-0.1183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3034,3.4207,3.0280) mvmt=(0.0000,-0.1183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3034,3.4207,2.2580) mvmt=(0.0000,-0.1183,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.197,8.079,96.278) lpos=(2.303,3.421,2.258) lprev=(2.303,3.539,3.008) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7955,0.9044,0.8777) mvmt=(0.1183,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1795,0.6644,0.7727) mvmt=(0.1183,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1795,0.6644,0.7727) out=(0.1795,0.6644,1.5227) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.3034,3.4207,3.0080) mvmt=(0.0000,-0.1183,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.197,8.079,97.028) lpos=(2.303,3.421,3.008) lprev=(2.303,3.539,3.008) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3034,3.4207,3.0080) mvmt=(0.0000,-0.1183,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3034,3.4207,3.0080) mvmt=(0.0000,-0.1183,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2316,3.4207,-1.4770) mvmt=(0.0000,-0.1183,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9796,2.8332,-4.3370) mvmt=(0.0000,-0.1183,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2534,-0.7993,0.0080) mvmt=(0.0000,-0.1183,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7955,0.9044,1.6277) mvmt=(0.1183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1795,0.6644,1.5227) mvmt=(0.1183,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1795,-1.5469,0.1727) mvmt=(0.1183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2316,3.4207,1.5280) mvmt=(0.0000,-0.1183,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3034,3.4207,3.0280) mvmt=(0.0000,-0.1183,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3684,3.3045,3.0080) mvmt=(0.0650,-0.1163,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.132,8.196,97.028) lpos=(2.368,3.304,3.008) lprev=(2.303,3.421,3.008) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3684,3.3045,3.0080) mvmt=(0.0650,-0.1163,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3684,3.3045,3.0080) mvmt=(0.0650,-0.1163,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.1666,3.3045,-1.4770) mvmt=(0.0650,-0.1163,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3204,2.7170,-4.3370) mvmt=(0.0650,-0.1163,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9146,2.7170,-4.3370) mvmt=(0.0650,-0.1163,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3184,-0.9155,0.0080) mvmt=(0.0650,-0.1163,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6792,0.9694,1.6277) mvmt=(0.1163,0.0650,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2958,0.7294,1.5227) mvmt=(0.1163,0.0650,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3684,3.3045,3.0080) mvmt=(0.0650,-0.1163,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.132,8.196,97.028) lpos=(2.368,3.304,3.008) lprev=(2.303,3.421,3.008) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3684,3.3045,3.0080) mvmt=(0.0650,-0.1163,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3684,3.3045,3.0080) mvmt=(0.0650,-0.1163,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.1666,3.3045,-1.4770) mvmt=(0.0650,-0.1163,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3204,2.7170,-4.3370) mvmt=(0.0650,-0.1163,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9146,2.7170,-4.3370) mvmt=(0.0650,-0.1163,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3184,-0.9155,0.0080) mvmt=(0.0650,-0.1163,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6792,0.9694,1.6277) mvmt=(0.1163,0.0650,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2958,0.7294,1.5227) mvmt=(0.1163,0.0650,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2958,0.7294,1.5227) out=(0.2958,0.7294,1.5900) delta=(0.0000,0.0000,0.0672) deltaMag=0.0672 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.8879 dpPos=0.4333 dpMove=-0.4170 iDist=0.1121 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.3684,3.3045,3.0753) mvmt=(0.0650,-0.1163,0.0672) collide=False insertType=0 objState=0x303 winterp=0.8879 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.132,8.196,97.095) lpos=(2.368,3.304,3.075) lprev=(2.303,3.421,3.008) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3684,3.3045,3.0753) mvmt=(0.0650,-0.1163,0.0672) collide=False insertType=0 objState=0x303 winterp=0.8879 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3684,3.3045,3.0753) mvmt=(0.0650,-0.1163,0.0672) collide=False insertType=0 objState=0x303 winterp=0.8879 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.1666,3.3045,-1.4097) mvmt=(0.0650,-0.1163,0.0672) collide=False insertType=0 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(3.3204,2.7170,-4.2697) mvmt=(0.0650,-0.1163,0.0672) collide=False insertType=0 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(-2.9146,2.7170,-4.2697) mvmt=(0.0650,-0.1163,0.0672) collide=False insertType=0 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(3.3184,-0.9155,0.0753) mvmt=(0.0650,-0.1163,0.0672) collide=False insertType=0 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(-0.6792,0.9694,1.6950) mvmt=(0.1163,0.0650,0.0672) collide=False insertType=0 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(0.2958,0.7294,1.5900) mvmt=(0.1163,0.0650,0.0672) collide=False insertType=0 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(0.2958,-1.4819,0.2400) mvmt=(0.1163,0.0650,0.0672) collide=False insertType=0 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(-3.1666,3.3045,1.5953) mvmt=(0.0650,-0.1163,0.0672) collide=False insertType=0 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(2.3684,3.3045,3.0953) mvmt=(0.0650,-0.1163,0.0672) collide=False insertType=0 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(2.3684,3.3045,3.0753) mvmt=(0.0650,-0.1163,0.0672) collide=False insertType=1 objState=0x303 winterp=0.8879 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.132,8.196,97.095) lpos=(2.368,3.304,3.075) lprev=(2.303,3.421,3.008) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3684,3.3045,3.0753) mvmt=(0.0650,-0.1163,0.0672) collide=False insertType=1 objState=0x303 winterp=0.8879 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3684,3.3045,3.0753) mvmt=(0.0650,-0.1163,0.0672) collide=False insertType=1 objState=0x303 winterp=0.8879 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.1666,3.3045,-1.4097) mvmt=(0.0650,-0.1163,0.0672) collide=False insertType=1 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(3.3204,2.7170,-4.2697) mvmt=(0.0650,-0.1163,0.0672) collide=False insertType=1 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(-2.9146,2.7170,-4.2697) mvmt=(0.0650,-0.1163,0.0672) collide=False insertType=1 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(3.3184,-0.9155,0.0753) mvmt=(0.0650,-0.1163,0.0672) collide=False insertType=1 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(-0.6792,0.9694,1.6950) mvmt=(0.1163,0.0650,0.0672) collide=False insertType=1 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(0.2958,0.7294,1.5900) mvmt=(0.1163,0.0650,0.0672) collide=False insertType=1 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(0.2958,-1.4819,0.2400) mvmt=(0.1163,0.0650,0.0672) collide=False insertType=1 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(-3.1666,3.3045,1.5953) mvmt=(0.0650,-0.1163,0.0672) collide=False insertType=1 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(2.3684,3.3045,3.0953) mvmt=(0.0650,-0.1163,0.0672) collide=False insertType=1 objState=0x303 winterp=0.8879 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.3348,3.3045,3.0405) mvmt=(0.0314,-0.1163,0.0325) collide=False insertType=0 objState=0x303 winterp=0.8879 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.196,97.061) lpos=(2.335,3.304,3.041) lprev=(2.303,3.421,3.008) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.3045,3.0405) mvmt=(0.0314,-0.1163,0.0325) collide=False insertType=0 objState=0x303 winterp=0.8879 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.3045,3.0405) mvmt=(0.0314,-0.1163,0.0325) collide=False insertType=0 objState=0x303 winterp=0.8879 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.3045,-1.4445) mvmt=(0.0314,-0.1163,0.0325) collide=False insertType=0 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(3.2868,2.7170,-4.3045) mvmt=(0.0314,-0.1163,0.0325) collide=False insertType=0 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,2.7170,-4.3045) mvmt=(0.0314,-0.1163,0.0325) collide=False insertType=0 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(3.2848,-0.9155,0.0405) mvmt=(0.0314,-0.1163,0.0325) collide=False insertType=0 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(-0.6792,0.9358,1.6602) mvmt=(0.1163,0.0314,0.0325) collide=False insertType=0 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(0.2958,0.6958,1.5552) mvmt=(0.1163,0.0314,0.0325) collide=False insertType=0 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(0.2958,-1.5155,0.2052) mvmt=(0.1163,0.0314,0.0325) collide=False insertType=0 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.3045,1.5605) mvmt=(0.0314,-0.1163,0.0325) collide=False insertType=0 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.3045,3.0605) mvmt=(0.0314,-0.1163,0.0325) collide=False insertType=0 objState=0x303 winterp=0.8879 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.3045,2.2905) mvmt=(0.0314,-0.1163,-0.7175) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.165,8.196,96.311) lpos=(2.335,3.304,2.291) lprev=(2.303,3.421,3.008) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6792,0.9358,0.9102) mvmt=(0.1163,0.0314,-0.7175) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2958,0.6958,0.8052) mvmt=(0.1163,0.0314,-0.7175) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2958,0.6958,0.8052) out=(0.2958,0.6958,1.5552) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.3348,3.3045,3.0405) mvmt=(0.0314,-0.1163,0.0325) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.196,97.060) lpos=(2.335,3.304,3.040) lprev=(2.303,3.421,3.008) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.3045,3.0405) mvmt=(0.0314,-0.1163,0.0325) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.3045,3.0405) mvmt=(0.0314,-0.1163,0.0325) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.3045,-1.4445) mvmt=(0.0314,-0.1163,0.0325) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2868,2.7170,-4.3045) mvmt=(0.0314,-0.1163,0.0325) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,2.7170,-4.3045) mvmt=(0.0314,-0.1163,0.0325) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2848,-0.9155,0.0405) mvmt=(0.0314,-0.1163,0.0325) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6792,0.9358,1.6602) mvmt=(0.1163,0.0314,0.0325) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2958,0.6958,1.5552) mvmt=(0.1163,0.0314,0.0325) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2958,-1.5155,0.2052) mvmt=(0.1163,0.0314,0.0325) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.3045,1.5605) mvmt=(0.0314,-0.1163,0.0325) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.3045,3.0605) mvmt=(0.0314,-0.1163,0.0325) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.1855,3.0405) mvmt=(0.0000,-0.1190,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.315,97.060) lpos=(2.335,3.185,3.040) lprev=(2.335,3.304,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.1855,3.0405) mvmt=(0.0000,-0.1190,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.1855,3.0405) mvmt=(0.0000,-0.1190,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.1855,3.0405) mvmt=(0.0000,-0.1190,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.3348,3.1855,3.0405) out=(2.3348,3.1855,3.4800) delta=(0.0000,0.0000,0.4395) deltaMag=0.4395 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.2675 dpPos=0.0405 dpMove=-0.6000 iDist=0.7325 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.315,97.060) lpos=(2.335,3.185,3.040) lprev=(2.335,3.304,3.040) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.1855,3.4800) mvmt=(0.0000,-0.1190,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.315,97.500) lpos=(2.335,3.185,3.480) lprev=(2.335,3.304,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.1855,3.4800) mvmt=(0.0000,-0.1190,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.1855,-1.0050) mvmt=(0.0000,-0.1190,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(4.3648,-0.0917,0.4850) mvmt=(0.0000,-0.1190,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(3.2868,2.5980,-3.8650) mvmt=(0.0000,-0.1190,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,2.5980,-3.8650) mvmt=(0.0000,-0.1190,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(3.2848,-1.0345,0.4800) mvmt=(0.0000,-0.1190,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(-0.5602,0.9358,2.0997) mvmt=(0.1190,0.0000,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(0.4148,0.6958,1.9947) mvmt=(0.1190,-0.0000,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(0.4148,-1.5155,0.6447) mvmt=(0.1190,0.0000,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.1855,2.0000) mvmt=(0.0000,-0.1190,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.1855,3.5000) mvmt=(0.0000,-0.1190,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.1855,3.4800) mvmt=(0.0000,-0.1190,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.315,97.500) lpos=(2.335,3.185,3.480) lprev=(2.335,3.304,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.1855,3.4800) mvmt=(0.0000,-0.1190,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.1855,-1.0050) mvmt=(0.0000,-0.1190,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(4.3648,-0.0917,0.4850) mvmt=(0.0000,-0.1190,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(3.2868,2.5980,-3.8650) mvmt=(0.0000,-0.1190,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,2.5980,-3.8650) mvmt=(0.0000,-0.1190,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(3.2848,-1.0345,0.4800) mvmt=(0.0000,-0.1190,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(-0.5602,0.9358,2.0997) mvmt=(0.1190,0.0000,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(0.4148,0.6958,1.9947) mvmt=(0.1190,-0.0000,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(0.4148,-1.5155,0.6447) mvmt=(0.1190,0.0000,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.1855,2.0000) mvmt=(0.0000,-0.1190,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.1855,3.5000) mvmt=(0.0000,-0.1190,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[input] MovementTurnRight Press +[input] MovementForward Press +[push-back-disp] site=dispatch center=(2.7362,3.3403,3.0405) mvmt=(0.4014,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.764,8.160,97.060) lpos=(2.736,3.340,3.040) lprev=(2.335,3.304,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7362,3.3403,3.0405) mvmt=(0.4014,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7362,3.3403,3.0405) mvmt=(0.4014,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7988,3.3403,-1.4445) mvmt=(0.4014,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7662,0.0631,0.0455) mvmt=(0.4014,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6882,2.7528,-4.3045) mvmt=(0.4014,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5468,2.7528,-4.3045) mvmt=(0.4014,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6862,-0.8797,0.0405) mvmt=(0.4014,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7150,1.3372,1.6602) mvmt=(-0.0358,0.4014,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2600,1.0972,1.5552) mvmt=(-0.0358,0.4014,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7362,3.3403,3.0405) mvmt=(0.4014,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.764,8.160,97.060) lpos=(2.736,3.340,3.040) lprev=(2.335,3.304,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7362,3.3403,3.0405) mvmt=(0.4014,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7362,3.3403,3.0405) mvmt=(0.4014,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7988,3.3403,-1.4445) mvmt=(0.4014,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7662,0.0631,0.0455) mvmt=(0.4014,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6882,2.7528,-4.3045) mvmt=(0.4014,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5468,2.7528,-4.3045) mvmt=(0.4014,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6862,-0.8797,0.0405) mvmt=(0.4014,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7150,1.3372,1.6602) mvmt=(-0.0358,0.4014,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2600,1.0972,1.5552) mvmt=(-0.0358,0.4014,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2600,1.0972,1.5552) out=(0.2600,1.0972,1.9800) delta=(0.0000,0.0000,0.4248) deltaMag=0.4248 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.2920 dpPos=0.0552 dpMove=-0.6000 iDist=0.7080 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.7362,3.3403,3.4653) mvmt=(0.4014,0.0358,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.764,8.160,97.485) lpos=(2.736,3.340,3.465) lprev=(2.335,3.304,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7362,3.3403,3.4653) mvmt=(0.4014,0.0358,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7988,3.3403,-1.0197) mvmt=(0.4014,0.0358,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(4.7662,0.0631,0.4703) mvmt=(0.4014,0.0358,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.6882,2.7528,-3.8797) mvmt=(0.4014,0.0358,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.5468,2.7528,-3.8797) mvmt=(0.4014,0.0358,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.6862,-0.8797,0.4653) mvmt=(0.4014,0.0358,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.7150,1.3372,2.0850) mvmt=(-0.0358,0.4014,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.2600,1.0972,1.9800) mvmt=(-0.0358,0.4014,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.2600,-1.1141,0.6300) mvmt=(-0.0358,0.4014,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.7988,3.3403,1.9853) mvmt=(0.4014,0.0358,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.7362,3.3403,3.4853) mvmt=(0.4014,0.0358,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.7362,3.3403,3.4653) mvmt=(0.4014,0.0358,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.764,8.160,97.485) lpos=(2.736,3.340,3.465) lprev=(2.335,3.304,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7362,3.3403,3.4653) mvmt=(0.4014,0.0358,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7988,3.3403,-1.0197) mvmt=(0.4014,0.0358,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(4.7662,0.0631,0.4703) mvmt=(0.4014,0.0358,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.6882,2.7528,-3.8797) mvmt=(0.4014,0.0358,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.5468,2.7528,-3.8797) mvmt=(0.4014,0.0358,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.6862,-0.8797,0.4653) mvmt=(0.4014,0.0358,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.7150,1.3372,2.0850) mvmt=(-0.0358,0.4014,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.2600,1.0972,1.9800) mvmt=(-0.0358,0.4014,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.2600,-1.1141,0.6300) mvmt=(-0.0358,0.4014,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.7988,3.3403,1.9853) mvmt=(0.4014,0.0358,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.7362,3.3403,3.4853) mvmt=(0.4014,0.0358,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.3348,3.3403,3.0405) mvmt=(0.0000,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.160,97.060) lpos=(2.335,3.340,3.040) lprev=(2.335,3.304,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.3403,3.0405) mvmt=(0.0000,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.3403,3.0405) mvmt=(0.0000,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.3403,-1.4445) mvmt=(0.0000,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.2868,2.7528,-4.3045) mvmt=(-0.0000,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,2.7528,-4.3045) mvmt=(-0.0000,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.7150,0.9358,1.6602) mvmt=(-0.0358,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.2600,0.6958,1.5552) mvmt=(-0.0358,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.2600,-1.5155,0.2052) mvmt=(-0.0358,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.3403,1.5605) mvmt=(0.0000,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.3403,3.0605) mvmt=(0.0000,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.3403,2.2905) mvmt=(0.0000,0.0358,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.165,8.160,96.310) lpos=(2.335,3.340,2.290) lprev=(2.335,3.304,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7150,0.9358,0.9102) mvmt=(-0.0358,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2600,0.6958,0.8052) mvmt=(-0.0358,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2600,0.6958,0.8052) out=(0.2600,0.6958,1.5552) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.3348,3.3403,3.0405) mvmt=(0.0000,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.160,97.060) lpos=(2.335,3.340,3.040) lprev=(2.335,3.304,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.3403,3.0405) mvmt=(0.0000,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.3403,3.0405) mvmt=(0.0000,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.3403,-1.4445) mvmt=(0.0000,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2868,2.7528,-4.3045) mvmt=(-0.0000,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,2.7528,-4.3045) mvmt=(-0.0000,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7150,0.9358,1.6602) mvmt=(-0.0358,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2600,0.6958,1.5552) mvmt=(-0.0358,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2600,-1.5155,0.2052) mvmt=(-0.0358,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.3403,1.5605) mvmt=(0.0000,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.3403,3.0605) mvmt=(0.0000,0.0358,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.3785,3.0405) mvmt=(0.0000,0.0382,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.122,97.060) lpos=(2.335,3.378,3.040) lprev=(2.335,3.340,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.3785,3.0405) mvmt=(0.0000,0.0382,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.3785,3.0405) mvmt=(0.0000,0.0382,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.3785,-1.4445) mvmt=(0.0000,0.0382,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,2.7910,-4.3045) mvmt=(0.0000,0.0382,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7532,0.9358,1.6602) mvmt=(-0.0382,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2218,0.6958,1.5552) mvmt=(-0.0382,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2218,-1.5155,0.2052) mvmt=(-0.0382,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.3785,1.5605) mvmt=(0.0000,0.0382,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.3785,3.0605) mvmt=(0.0000,0.0382,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.3785,2.2905) mvmt=(0.0000,0.0382,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.165,8.122,96.310) lpos=(2.335,3.378,2.290) lprev=(2.335,3.340,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7532,0.9358,0.9102) mvmt=(-0.0382,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2218,0.6958,0.8052) mvmt=(-0.0382,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2218,0.6958,0.8052) out=(0.2218,0.6958,1.5552) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.3348,3.3785,3.0405) mvmt=(0.0000,0.0382,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.122,97.060) lpos=(2.335,3.378,3.040) lprev=(2.335,3.340,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.3785,3.0405) mvmt=(0.0000,0.0382,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.3785,3.0405) mvmt=(0.0000,0.0382,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.3785,-1.4445) mvmt=(0.0000,0.0382,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,2.7910,-4.3045) mvmt=(0.0000,0.0382,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7532,0.9358,1.6602) mvmt=(-0.0382,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2218,0.6958,1.5552) mvmt=(-0.0382,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2218,-1.5155,0.2052) mvmt=(-0.0382,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.3785,1.5605) mvmt=(0.0000,0.0382,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.3785,3.0605) mvmt=(0.0000,0.0382,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7532,3.4158,3.0405) mvmt=(0.4184,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.747,8.084,97.060) lpos=(2.753,3.416,3.040) lprev=(2.335,3.378,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7532,3.4158,3.0405) mvmt=(0.4184,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7532,3.4158,3.0405) mvmt=(0.4184,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7818,3.4158,-1.4445) mvmt=(0.4184,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7832,0.1386,0.0455) mvmt=(0.4184,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7052,2.8283,-4.3045) mvmt=(0.4184,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5298,2.8283,-4.3045) mvmt=(0.4184,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7032,-0.8042,0.0405) mvmt=(0.4184,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7906,1.3542,1.6602) mvmt=(-0.0373,0.4184,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1844,1.1142,1.5552) mvmt=(-0.0373,0.4184,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7532,3.4158,3.0405) mvmt=(0.4184,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.747,8.084,97.060) lpos=(2.753,3.416,3.040) lprev=(2.335,3.378,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7532,3.4158,3.0405) mvmt=(0.4184,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7532,3.4158,3.0405) mvmt=(0.4184,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7818,3.4158,-1.4445) mvmt=(0.4184,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7832,0.1386,0.0455) mvmt=(0.4184,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7052,2.8283,-4.3045) mvmt=(0.4184,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5298,2.8283,-4.3045) mvmt=(0.4184,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7032,-0.8042,0.0405) mvmt=(0.4184,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7906,1.3542,1.6602) mvmt=(-0.0373,0.4184,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1844,1.1142,1.5552) mvmt=(-0.0373,0.4184,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1844,1.1142,1.5552) out=(0.1844,1.1142,1.9800) delta=(0.0000,0.0000,0.4248) deltaMag=0.4248 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.2920 dpPos=0.0552 dpMove=-0.6000 iDist=0.7080 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.7532,3.4158,3.4653) mvmt=(0.4184,0.0373,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.747,8.084,97.485) lpos=(2.753,3.416,3.465) lprev=(2.335,3.378,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7532,3.4158,3.4653) mvmt=(0.4184,0.0373,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7818,3.4158,-1.0197) mvmt=(0.4184,0.0373,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(4.7832,0.1386,0.4703) mvmt=(0.4184,0.0373,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.7052,2.8283,-3.8797) mvmt=(0.4184,0.0373,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.5298,2.8283,-3.8797) mvmt=(0.4184,0.0373,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.7032,-0.8042,0.4653) mvmt=(0.4184,0.0373,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.7906,1.3542,2.0850) mvmt=(-0.0373,0.4184,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.1844,1.1142,1.9800) mvmt=(-0.0373,0.4184,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.1844,-1.0971,0.6300) mvmt=(-0.0373,0.4184,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.7818,3.4158,1.9853) mvmt=(0.4184,0.0373,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.7532,3.4158,3.4853) mvmt=(0.4184,0.0373,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.7532,3.4158,3.4653) mvmt=(0.4184,0.0373,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.747,8.084,97.485) lpos=(2.753,3.416,3.465) lprev=(2.335,3.378,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7532,3.4158,3.4653) mvmt=(0.4184,0.0373,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7818,3.4158,-1.0197) mvmt=(0.4184,0.0373,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(4.7832,0.1386,0.4703) mvmt=(0.4184,0.0373,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.7052,2.8283,-3.8797) mvmt=(0.4184,0.0373,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.5298,2.8283,-3.8797) mvmt=(0.4184,0.0373,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.7032,-0.8042,0.4653) mvmt=(0.4184,0.0373,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.7906,1.3542,2.0850) mvmt=(-0.0373,0.4184,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.1844,1.1142,1.9800) mvmt=(-0.0373,0.4184,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.1844,-1.0971,0.6300) mvmt=(-0.0373,0.4184,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.7818,3.4158,1.9853) mvmt=(0.4184,0.0373,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.7532,3.4158,3.4853) mvmt=(0.4184,0.0373,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.3348,3.4158,3.0405) mvmt=(0.0000,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.084,97.060) lpos=(2.335,3.416,3.040) lprev=(2.335,3.378,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.4158,3.0405) mvmt=(0.0000,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.4158,3.0405) mvmt=(0.0000,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.4158,-1.4445) mvmt=(0.0000,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,2.8283,-4.3045) mvmt=(0.0000,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.7906,0.9358,1.6602) mvmt=(-0.0373,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.1844,0.6958,1.5552) mvmt=(-0.0373,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.1844,-1.5155,0.2052) mvmt=(-0.0373,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.4158,1.5605) mvmt=(0.0000,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.4158,3.0605) mvmt=(0.0000,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.4158,2.2905) mvmt=(0.0000,0.0373,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.165,8.084,96.310) lpos=(2.335,3.416,2.290) lprev=(2.335,3.378,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7906,0.9358,0.9102) mvmt=(-0.0373,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1844,0.6958,0.8052) mvmt=(-0.0373,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1844,0.6958,0.8052) out=(0.1844,0.6958,1.5552) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.3348,3.4158,3.0405) mvmt=(0.0000,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.084,97.060) lpos=(2.335,3.416,3.040) lprev=(2.335,3.378,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.4158,3.0405) mvmt=(0.0000,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.4158,3.0405) mvmt=(0.0000,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.4158,-1.4445) mvmt=(0.0000,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,2.8283,-4.3045) mvmt=(0.0000,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7906,0.9358,1.6602) mvmt=(-0.0373,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1844,0.6958,1.5552) mvmt=(-0.0373,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1844,-1.5155,0.2052) mvmt=(-0.0373,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.4158,1.5605) mvmt=(0.0000,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.4158,3.0605) mvmt=(0.0000,0.0373,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.4530,3.0405) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.047,97.060) lpos=(2.335,3.453,3.040) lprev=(2.335,3.416,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.4530,3.0405) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.4530,3.0405) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.4530,-1.4445) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,2.8655,-4.3045) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8278,0.9358,1.6602) mvmt=(-0.0372,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1472,0.6958,1.5552) mvmt=(-0.0372,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1472,-1.5155,0.2052) mvmt=(-0.0372,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.4530,1.5605) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.4530,3.0605) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.4530,2.2905) mvmt=(0.0000,0.0372,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.165,8.047,96.310) lpos=(2.335,3.453,2.290) lprev=(2.335,3.416,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8278,0.9358,0.9102) mvmt=(-0.0372,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1472,0.6958,0.8052) mvmt=(-0.0372,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1472,0.6958,0.8052) out=(0.1472,0.6958,1.5552) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.3348,3.4530,3.0405) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.047,97.060) lpos=(2.335,3.453,3.040) lprev=(2.335,3.416,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.4530,3.0405) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.4530,3.0405) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.4530,-1.4445) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,2.8655,-4.3045) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8278,0.9358,1.6602) mvmt=(-0.0372,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1472,0.6958,1.5552) mvmt=(-0.0372,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1472,-1.5155,0.2052) mvmt=(-0.0372,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.4530,1.5605) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.4530,3.0605) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7622,3.4912,3.0405) mvmt=(0.4274,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.738,8.009,97.060) lpos=(2.762,3.491,3.040) lprev=(2.335,3.453,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7622,3.4912,3.0405) mvmt=(0.4274,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7622,3.4912,3.0405) mvmt=(0.4274,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7728,3.4912,-1.4445) mvmt=(0.4274,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7922,0.2139,0.0455) mvmt=(0.4274,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7142,2.9037,-4.3045) mvmt=(0.4274,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5208,2.9037,-4.3045) mvmt=(0.4274,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7122,-0.7288,0.0405) mvmt=(0.4274,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8659,1.3632,1.6602) mvmt=(-0.0381,0.4274,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1091,1.1232,1.5552) mvmt=(-0.0381,0.4274,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7622,3.4912,3.0405) mvmt=(0.4274,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.738,8.009,97.060) lpos=(2.762,3.491,3.040) lprev=(2.335,3.453,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7622,3.4912,3.0405) mvmt=(0.4274,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7622,3.4912,3.0405) mvmt=(0.4274,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7728,3.4912,-1.4445) mvmt=(0.4274,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7922,0.2139,0.0455) mvmt=(0.4274,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7142,2.9037,-4.3045) mvmt=(0.4274,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5208,2.9037,-4.3045) mvmt=(0.4274,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7122,-0.7288,0.0405) mvmt=(0.4274,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8659,1.3632,1.6602) mvmt=(-0.0381,0.4274,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1091,1.1232,1.5552) mvmt=(-0.0381,0.4274,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1091,1.1232,1.5552) out=(0.1091,1.1232,1.9800) delta=(0.0000,0.0000,0.4248) deltaMag=0.4248 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.2920 dpPos=0.0552 dpMove=-0.6000 iDist=0.7080 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.7622,3.4912,3.4653) mvmt=(0.4274,0.0381,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.738,8.009,97.485) lpos=(2.762,3.491,3.465) lprev=(2.335,3.453,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7622,3.4912,3.4653) mvmt=(0.4274,0.0381,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7728,3.4912,-1.0197) mvmt=(0.4274,0.0381,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(4.7922,0.2139,0.4703) mvmt=(0.4274,0.0381,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.7142,2.9037,-3.8797) mvmt=(0.4274,0.0381,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.5208,2.9037,-3.8797) mvmt=(0.4274,0.0381,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.7122,-0.7288,0.4653) mvmt=(0.4274,0.0381,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.8659,1.3632,2.0850) mvmt=(-0.0381,0.4274,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.1091,1.1232,1.9800) mvmt=(-0.0381,0.4274,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.1091,-1.0881,0.6300) mvmt=(-0.0381,0.4274,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.7728,3.4912,1.9853) mvmt=(0.4274,0.0381,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.7622,3.4912,3.4853) mvmt=(0.4274,0.0381,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.7622,3.4912,3.4653) mvmt=(0.4274,0.0381,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.738,8.009,97.485) lpos=(2.762,3.491,3.465) lprev=(2.335,3.453,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7622,3.4912,3.4653) mvmt=(0.4274,0.0381,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7728,3.4912,-1.0197) mvmt=(0.4274,0.0381,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(4.7922,0.2139,0.4703) mvmt=(0.4274,0.0381,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.7142,2.9037,-3.8797) mvmt=(0.4274,0.0381,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.5208,2.9037,-3.8797) mvmt=(0.4274,0.0381,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.7122,-0.7288,0.4653) mvmt=(0.4274,0.0381,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.8659,1.3632,2.0850) mvmt=(-0.0381,0.4274,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.1091,1.1232,1.9800) mvmt=(-0.0381,0.4274,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.1091,-1.0881,0.6300) mvmt=(-0.0381,0.4274,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.7728,3.4912,1.9853) mvmt=(0.4274,0.0381,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.7622,3.4912,3.4853) mvmt=(0.4274,0.0381,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.3348,3.4912,3.0405) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.009,97.060) lpos=(2.335,3.491,3.040) lprev=(2.335,3.453,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.4912,3.0405) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.4912,3.0405) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.4912,-1.4445) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,2.9037,-4.3045) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.8659,0.9358,1.6602) mvmt=(-0.0381,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.1091,0.6958,1.5552) mvmt=(-0.0381,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.1091,-1.5155,0.2052) mvmt=(-0.0381,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.4912,1.5605) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.4912,3.0605) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.4912,2.2905) mvmt=(0.0000,0.0381,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.165,8.009,96.310) lpos=(2.335,3.491,2.290) lprev=(2.335,3.453,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8659,0.9358,0.9102) mvmt=(-0.0381,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1091,0.6958,0.8052) mvmt=(-0.0381,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1091,0.6958,0.8052) out=(0.1091,0.6958,1.5552) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.3348,3.4912,3.0405) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.009,97.060) lpos=(2.335,3.491,3.040) lprev=(2.335,3.453,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.4912,3.0405) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.4912,3.0405) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.4912,-1.4445) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,2.9037,-4.3045) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8659,0.9358,1.6602) mvmt=(-0.0381,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1091,0.6958,1.5552) mvmt=(-0.0381,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1091,-1.5155,0.2052) mvmt=(-0.0381,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.4912,1.5605) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.4912,3.0605) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.5284,3.0405) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,7.972,97.060) lpos=(2.335,3.528,3.040) lprev=(2.335,3.491,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.5284,3.0405) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.5284,3.0405) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.5284,-1.4445) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,2.9409,-4.3045) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9031,0.9358,1.6602) mvmt=(-0.0372,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0719,0.6958,1.5552) mvmt=(-0.0372,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0719,-1.5155,0.2052) mvmt=(-0.0372,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.5284,1.5605) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.5284,3.0605) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.5284,2.2905) mvmt=(0.0000,0.0372,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.165,7.972,96.310) lpos=(2.335,3.528,2.290) lprev=(2.335,3.491,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9031,0.9358,0.9102) mvmt=(-0.0372,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0719,0.6958,0.8052) mvmt=(-0.0372,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0719,0.6958,0.8052) out=(0.0719,0.6958,1.5552) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.3348,3.5284,3.0405) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,7.972,97.060) lpos=(2.335,3.528,3.040) lprev=(2.335,3.491,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.5284,3.0405) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.5284,3.0405) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.5284,-1.4445) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,2.9409,-4.3045) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9031,0.9358,1.6602) mvmt=(-0.0372,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0719,0.6958,1.5552) mvmt=(-0.0372,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0719,-1.5155,0.2052) mvmt=(-0.0372,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.5284,1.5605) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.5284,3.0605) mvmt=(0.0000,0.0372,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7490,3.5653,3.0405) mvmt=(0.4142,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.751,7.935,97.060) lpos=(2.749,3.565,3.040) lprev=(2.335,3.528,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7490,3.5653,3.0405) mvmt=(0.4142,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7490,3.5653,3.0405) mvmt=(0.4142,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7860,3.5653,-1.4445) mvmt=(0.4142,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7790,0.2881,0.0455) mvmt=(0.4142,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7010,2.9778,-4.3045) mvmt=(0.4142,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5340,2.9778,-4.3045) mvmt=(0.4142,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6990,-0.6547,0.0405) mvmt=(0.4142,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9401,1.3500,1.6602) mvmt=(-0.0370,0.4142,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0349,1.1100,1.5552) mvmt=(-0.0370,0.4142,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7490,3.5653,3.0405) mvmt=(0.4142,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.751,7.935,97.060) lpos=(2.749,3.565,3.040) lprev=(2.335,3.528,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7490,3.5653,3.0405) mvmt=(0.4142,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7490,3.5653,3.0405) mvmt=(0.4142,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7860,3.5653,-1.4445) mvmt=(0.4142,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7790,0.2881,0.0455) mvmt=(0.4142,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7010,2.9778,-4.3045) mvmt=(0.4142,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5340,2.9778,-4.3045) mvmt=(0.4142,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6990,-0.6547,0.0405) mvmt=(0.4142,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9401,1.3500,1.6602) mvmt=(-0.0370,0.4142,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0349,1.1100,1.5552) mvmt=(-0.0370,0.4142,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0349,1.1100,1.5552) out=(0.0349,1.1100,1.9800) delta=(0.0000,0.0000,0.4248) deltaMag=0.4248 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.2920 dpPos=0.0552 dpMove=-0.6000 iDist=0.7080 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.7490,3.5653,3.4653) mvmt=(0.4142,0.0370,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.751,7.935,97.485) lpos=(2.749,3.565,3.465) lprev=(2.335,3.528,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7490,3.5653,3.4653) mvmt=(0.4142,0.0370,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7860,3.5653,-1.0197) mvmt=(0.4142,0.0370,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(4.7790,0.2881,0.4703) mvmt=(0.4142,0.0370,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.7010,2.9778,-3.8797) mvmt=(0.4142,0.0370,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.5340,2.9778,-3.8797) mvmt=(0.4142,0.0370,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.6990,-0.6547,0.4653) mvmt=(0.4142,0.0370,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.9401,1.3500,2.0850) mvmt=(-0.0370,0.4142,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.0349,1.1100,1.9800) mvmt=(-0.0370,0.4142,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.0349,-1.1013,0.6300) mvmt=(-0.0370,0.4142,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.7860,3.5653,1.9853) mvmt=(0.4142,0.0370,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.7490,3.5653,3.4853) mvmt=(0.4142,0.0370,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.7490,3.5653,3.4653) mvmt=(0.4142,0.0370,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.751,7.935,97.485) lpos=(2.749,3.565,3.465) lprev=(2.335,3.528,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7490,3.5653,3.4653) mvmt=(0.4142,0.0370,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7860,3.5653,-1.0197) mvmt=(0.4142,0.0370,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(4.7790,0.2881,0.4703) mvmt=(0.4142,0.0370,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.7010,2.9778,-3.8797) mvmt=(0.4142,0.0370,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.5340,2.9778,-3.8797) mvmt=(0.4142,0.0370,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.6990,-0.6547,0.4653) mvmt=(0.4142,0.0370,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.9401,1.3500,2.0850) mvmt=(-0.0370,0.4142,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.0349,1.1100,1.9800) mvmt=(-0.0370,0.4142,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.0349,-1.1013,0.6300) mvmt=(-0.0370,0.4142,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.7860,3.5653,1.9853) mvmt=(0.4142,0.0370,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.7490,3.5653,3.4853) mvmt=(0.4142,0.0370,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.3348,3.5653,3.0405) mvmt=(0.0000,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,7.935,97.060) lpos=(2.335,3.565,3.040) lprev=(2.335,3.528,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.5653,3.0405) mvmt=(0.0000,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.5653,3.0405) mvmt=(0.0000,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.5653,-1.4445) mvmt=(0.0000,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,2.9778,-4.3045) mvmt=(0.0000,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.9401,0.9358,1.6602) mvmt=(-0.0370,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.0349,0.6958,1.5552) mvmt=(-0.0370,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.0349,-1.5155,0.2052) mvmt=(-0.0370,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.5653,1.5605) mvmt=(0.0000,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.5653,3.0605) mvmt=(0.0000,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.5653,2.2905) mvmt=(0.0000,0.0370,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.165,7.935,96.310) lpos=(2.335,3.565,2.290) lprev=(2.335,3.528,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9401,0.9358,0.9102) mvmt=(-0.0370,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0349,0.6958,0.8052) mvmt=(-0.0370,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0349,0.6958,0.8052) out=(0.0349,0.6958,1.5552) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.3348,3.5653,3.0405) mvmt=(0.0000,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,7.935,97.060) lpos=(2.335,3.565,3.040) lprev=(2.335,3.528,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.5653,3.0405) mvmt=(0.0000,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.5653,3.0405) mvmt=(0.0000,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.5653,-1.4445) mvmt=(0.0000,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,2.9778,-4.3045) mvmt=(0.0000,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9401,0.9358,1.6602) mvmt=(-0.0370,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0349,0.6958,1.5552) mvmt=(-0.0370,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0349,-1.5155,0.2052) mvmt=(-0.0370,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.5653,1.5605) mvmt=(0.0000,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.5653,3.0605) mvmt=(0.0000,0.0370,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.6034,3.0405) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,7.897,97.060) lpos=(2.335,3.603,3.040) lprev=(2.335,3.565,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.6034,3.0405) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.6034,3.0405) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.6034,-1.4445) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,3.0159,-4.3045) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9782,0.9358,1.6602) mvmt=(-0.0381,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0032,0.6958,1.5552) mvmt=(-0.0381,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0032,-1.5155,0.2052) mvmt=(-0.0381,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.6034,1.5605) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.6034,3.0605) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.6034,2.2905) mvmt=(0.0000,0.0381,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.165,7.897,96.310) lpos=(2.335,3.603,2.290) lprev=(2.335,3.565,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9782,0.9358,0.9102) mvmt=(-0.0381,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0032,0.6958,0.8052) mvmt=(-0.0381,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0032,0.6958,0.8052) out=(-0.0032,0.6958,1.5552) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.3348,3.6034,3.0405) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,7.897,97.060) lpos=(2.335,3.603,3.040) lprev=(2.335,3.565,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.6034,3.0405) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.6034,3.0405) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.6034,-1.4445) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,3.0159,-4.3045) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9782,0.9358,1.6602) mvmt=(-0.0381,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0032,0.6958,1.5552) mvmt=(-0.0381,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0032,-1.5155,0.2052) mvmt=(-0.0381,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.6034,1.5605) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.6034,3.0605) mvmt=(0.0000,0.0381,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7738,3.6426,3.0405) mvmt=(0.4391,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.726,7.857,97.060) lpos=(2.774,3.643,3.040) lprev=(2.335,3.603,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7738,3.6426,3.0405) mvmt=(0.4391,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7738,3.6426,3.0405) mvmt=(0.4391,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7612,3.6426,-1.4445) mvmt=(0.4391,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8038,0.3654,0.0455) mvmt=(0.4391,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7258,3.0551,-4.3045) mvmt=(0.4391,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5091,3.0551,-4.3045) mvmt=(0.4391,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7238,-0.5774,0.0405) mvmt=(0.4391,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0174,1.3748,1.6602) mvmt=(-0.0392,0.4391,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0424,1.1348,1.5552) mvmt=(-0.0392,0.4391,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7738,3.6426,3.0405) mvmt=(0.4391,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.726,7.857,97.060) lpos=(2.774,3.643,3.040) lprev=(2.335,3.603,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7738,3.6426,3.0405) mvmt=(0.4391,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7738,3.6426,3.0405) mvmt=(0.4391,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7612,3.6426,-1.4445) mvmt=(0.4391,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8038,0.3654,0.0455) mvmt=(0.4391,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7258,3.0551,-4.3045) mvmt=(0.4391,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5091,3.0551,-4.3045) mvmt=(0.4391,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7238,-0.5774,0.0405) mvmt=(0.4391,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0174,1.3748,1.6602) mvmt=(-0.0392,0.4391,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0424,1.1348,1.5552) mvmt=(-0.0392,0.4391,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0424,1.1348,1.5552) out=(-0.0424,1.1348,1.9800) delta=(0.0000,0.0000,0.4248) deltaMag=0.4248 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.2920 dpPos=0.0552 dpMove=-0.6000 iDist=0.7080 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.7738,3.6426,3.4653) mvmt=(0.4391,0.0392,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.726,7.857,97.485) lpos=(2.774,3.643,3.465) lprev=(2.335,3.603,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7738,3.6426,3.4653) mvmt=(0.4391,0.0392,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7612,3.6426,-1.0197) mvmt=(0.4391,0.0392,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(4.8038,0.3654,0.4703) mvmt=(0.4391,0.0392,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.7258,3.0551,-3.8797) mvmt=(0.4391,0.0392,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.5091,3.0551,-3.8797) mvmt=(0.4391,0.0392,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.7238,-0.5774,0.4653) mvmt=(0.4391,0.0392,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-1.0174,1.3748,2.0850) mvmt=(-0.0392,0.4391,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.0424,1.1348,1.9800) mvmt=(-0.0392,0.4391,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.0424,-1.0764,0.6300) mvmt=(-0.0392,0.4391,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.7612,3.6426,1.9853) mvmt=(0.4391,0.0392,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.7738,3.6426,3.4853) mvmt=(0.4391,0.0392,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.7738,3.6426,3.4653) mvmt=(0.4391,0.0392,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.726,7.857,97.485) lpos=(2.774,3.643,3.465) lprev=(2.335,3.603,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7738,3.6426,3.4653) mvmt=(0.4391,0.0392,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7612,3.6426,-1.0197) mvmt=(0.4391,0.0392,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(4.8038,0.3654,0.4703) mvmt=(0.4391,0.0392,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.7258,3.0551,-3.8797) mvmt=(0.4391,0.0392,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.5091,3.0551,-3.8797) mvmt=(0.4391,0.0392,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.7238,-0.5774,0.4653) mvmt=(0.4391,0.0392,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-1.0174,1.3748,2.0850) mvmt=(-0.0392,0.4391,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.0424,1.1348,1.9800) mvmt=(-0.0392,0.4391,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.0424,-1.0764,0.6300) mvmt=(-0.0392,0.4391,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.7612,3.6426,1.9853) mvmt=(0.4391,0.0392,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.7738,3.6426,3.4853) mvmt=(0.4391,0.0392,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.3348,3.6426,3.0405) mvmt=(0.0000,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,7.857,97.060) lpos=(2.335,3.643,3.040) lprev=(2.335,3.603,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.6426,3.0405) mvmt=(0.0000,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.6426,3.0405) mvmt=(0.0000,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.6426,-1.4445) mvmt=(0.0000,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,3.0551,-4.3045) mvmt=(0.0000,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.2848,-0.5774,0.0405) mvmt=(0.0000,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-1.0174,0.9358,1.6602) mvmt=(-0.0392,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.0424,0.6958,1.5552) mvmt=(-0.0392,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.0424,-1.5155,0.2052) mvmt=(-0.0392,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.6426,1.5605) mvmt=(0.0000,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.6426,3.0605) mvmt=(0.0000,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.6426,2.2905) mvmt=(0.0000,0.0392,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.165,7.857,96.310) lpos=(2.335,3.643,2.290) lprev=(2.335,3.603,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0174,0.9358,0.9102) mvmt=(-0.0392,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0424,0.6958,0.8052) mvmt=(-0.0392,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0424,0.6958,0.8052) out=(-0.0424,0.6958,1.5552) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.3348,3.6426,3.0405) mvmt=(0.0000,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,7.857,97.060) lpos=(2.335,3.643,3.040) lprev=(2.335,3.603,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.6426,3.0405) mvmt=(0.0000,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.6426,3.0405) mvmt=(0.0000,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.6426,-1.4445) mvmt=(0.0000,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,3.0551,-4.3045) mvmt=(0.0000,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2848,-0.5774,0.0405) mvmt=(0.0000,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0174,0.9358,1.6602) mvmt=(-0.0392,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0424,0.6958,1.5552) mvmt=(-0.0392,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0424,-1.5155,0.2052) mvmt=(-0.0392,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.6426,1.5605) mvmt=(0.0000,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.6426,3.0605) mvmt=(0.0000,0.0392,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.6778,3.0405) mvmt=(0.0000,0.0352,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,7.822,97.060) lpos=(2.335,3.678,3.040) lprev=(2.335,3.643,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.6778,3.0405) mvmt=(0.0000,0.0352,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.6778,3.0405) mvmt=(0.0000,0.0352,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.6778,-1.4445) mvmt=(0.0000,0.0352,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,3.0903,-4.3045) mvmt=(0.0000,0.0352,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2848,-0.5422,0.0405) mvmt=(0.0000,0.0352,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0526,0.9358,1.6602) mvmt=(-0.0352,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0776,0.6958,1.5552) mvmt=(-0.0352,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0776,-1.5155,0.2052) mvmt=(-0.0352,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.6778,1.5605) mvmt=(0.0000,0.0352,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.6778,3.0605) mvmt=(0.0000,0.0352,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.6778,2.2905) mvmt=(0.0000,0.0352,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.165,7.822,96.310) lpos=(2.335,3.678,2.290) lprev=(2.335,3.643,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0526,0.9358,0.9102) mvmt=(-0.0352,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0776,0.6958,0.8052) mvmt=(-0.0352,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0776,0.6958,0.8052) out=(-0.0776,0.6958,1.5552) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.3348,3.6778,3.0405) mvmt=(0.0000,0.0352,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,7.822,97.060) lpos=(2.335,3.678,3.040) lprev=(2.335,3.643,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.6778,3.0405) mvmt=(0.0000,0.0352,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.6778,3.0405) mvmt=(0.0000,0.0352,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.6778,-1.4445) mvmt=(0.0000,0.0352,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,3.0903,-4.3045) mvmt=(0.0000,0.0352,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2848,-0.5422,0.0405) mvmt=(0.0000,0.0352,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0526,0.9358,1.6602) mvmt=(-0.0352,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0776,0.6958,1.5552) mvmt=(-0.0352,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0776,-1.5155,0.2052) mvmt=(-0.0352,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.6778,1.5605) mvmt=(0.0000,0.0352,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.6778,3.0605) mvmt=(0.0000,0.0352,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7877,3.7182,3.0405) mvmt=(0.4529,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.712,7.782,97.060) lpos=(2.788,3.718,3.040) lprev=(2.335,3.678,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7877,3.7182,3.0405) mvmt=(0.4529,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7877,3.7182,3.0405) mvmt=(0.4529,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7473,3.7182,-1.4445) mvmt=(0.4529,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8177,0.4410,0.0455) mvmt=(0.4529,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7397,3.1307,-4.3045) mvmt=(0.4529,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4953,3.1307,-4.3045) mvmt=(0.4529,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7377,-0.5018,0.0405) mvmt=(0.4529,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0930,1.3887,1.6602) mvmt=(-0.0404,0.4529,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1180,1.1487,1.5552) mvmt=(-0.0404,0.4529,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7877,3.7182,3.0405) mvmt=(0.4529,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.712,7.782,97.060) lpos=(2.788,3.718,3.040) lprev=(2.335,3.678,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7877,3.7182,3.0405) mvmt=(0.4529,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7877,3.7182,3.0405) mvmt=(0.4529,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7473,3.7182,-1.4445) mvmt=(0.4529,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8177,0.4410,0.0455) mvmt=(0.4529,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7397,3.1307,-4.3045) mvmt=(0.4529,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4953,3.1307,-4.3045) mvmt=(0.4529,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7377,-0.5018,0.0405) mvmt=(0.4529,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0930,1.3887,1.6602) mvmt=(-0.0404,0.4529,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1180,1.1487,1.5552) mvmt=(-0.0404,0.4529,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1180,1.1487,1.5552) out=(-0.1180,1.1487,1.9800) delta=(0.0000,0.0000,0.4248) deltaMag=0.4248 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.2920 dpPos=0.0552 dpMove=-0.6000 iDist=0.7080 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.7877,3.7182,3.4653) mvmt=(0.4529,0.0404,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.712,7.782,97.485) lpos=(2.788,3.718,3.465) lprev=(2.335,3.678,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7877,3.7182,3.4653) mvmt=(0.4529,0.0404,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7473,3.7182,-1.0197) mvmt=(0.4529,0.0404,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(4.8177,0.4410,0.4703) mvmt=(0.4529,0.0404,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.7397,3.1307,-3.8797) mvmt=(0.4529,0.0404,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.4953,3.1307,-3.8797) mvmt=(0.4529,0.0404,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.7377,-0.5018,0.4653) mvmt=(0.4529,0.0404,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-1.0930,1.3887,2.0850) mvmt=(-0.0404,0.4529,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.1180,1.1487,1.9800) mvmt=(-0.0404,0.4529,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.1180,-1.0626,0.6300) mvmt=(-0.0404,0.4529,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.7473,3.7182,1.9853) mvmt=(0.4529,0.0404,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.3423,1.9397,3.4778) mvmt=(-0.4539,-0.0267,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.7877,3.7182,3.4853) mvmt=(0.4529,0.0404,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.7877,3.7182,3.4653) mvmt=(0.4529,0.0404,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.712,7.782,97.485) lpos=(2.788,3.718,3.465) lprev=(2.335,3.678,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7877,3.7182,3.4653) mvmt=(0.4529,0.0404,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7473,3.7182,-1.0197) mvmt=(0.4529,0.0404,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(4.8177,0.4410,0.4703) mvmt=(0.4529,0.0404,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.7397,3.1307,-3.8797) mvmt=(0.4529,0.0404,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.4953,3.1307,-3.8797) mvmt=(0.4529,0.0404,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.7377,-0.5018,0.4653) mvmt=(0.4529,0.0404,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-1.0930,1.3887,2.0850) mvmt=(-0.0404,0.4529,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.1180,1.1487,1.9800) mvmt=(-0.0404,0.4529,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.1180,-1.0626,0.6300) mvmt=(-0.0404,0.4529,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.7473,3.7182,1.9853) mvmt=(0.4529,0.0404,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.3423,1.9397,3.4778) mvmt=(-0.4539,-0.0267,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.7877,3.7182,3.4853) mvmt=(0.4529,0.0404,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.3348,3.7182,3.0405) mvmt=(0.0000,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,7.782,97.060) lpos=(2.335,3.718,3.040) lprev=(2.335,3.678,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.7182,3.0405) mvmt=(0.0000,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.7182,3.0405) mvmt=(0.0000,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.7182,-1.4445) mvmt=(0.0000,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,3.1307,-4.3045) mvmt=(0.0000,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.2848,-0.5018,0.0405) mvmt=(0.0000,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-1.0930,0.9358,1.6602) mvmt=(-0.0404,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.1180,0.6958,1.5552) mvmt=(-0.0404,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.1180,-1.5155,0.2052) mvmt=(-0.0404,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.7182,1.5605) mvmt=(0.0000,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.7182,3.0605) mvmt=(0.0000,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.7182,2.2905) mvmt=(0.0000,0.0404,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.165,7.782,96.310) lpos=(2.335,3.718,2.290) lprev=(2.335,3.678,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0930,0.9358,0.9102) mvmt=(-0.0404,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1180,0.6958,0.8052) mvmt=(-0.0404,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1180,0.6958,0.8052) out=(-0.1180,0.6958,1.5552) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.3348,3.7182,3.0405) mvmt=(0.0000,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,7.782,97.060) lpos=(2.335,3.718,3.040) lprev=(2.335,3.678,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.7182,3.0405) mvmt=(0.0000,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.7182,3.0405) mvmt=(0.0000,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.7182,-1.4445) mvmt=(0.0000,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,3.1307,-4.3045) mvmt=(0.0000,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2848,-0.5018,0.0405) mvmt=(0.0000,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0930,0.9358,1.6602) mvmt=(-0.0404,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1180,0.6958,1.5552) mvmt=(-0.0404,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1180,-1.5155,0.2052) mvmt=(-0.0404,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.7182,1.5605) mvmt=(0.0000,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.7182,3.0605) mvmt=(0.0000,0.0404,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.7557,3.0405) mvmt=(0.0000,0.0375,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,7.744,97.060) lpos=(2.335,3.756,3.040) lprev=(2.335,3.718,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.7557,3.0405) mvmt=(0.0000,0.0375,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.7557,3.0405) mvmt=(0.0000,0.0375,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.7557,-1.4445) mvmt=(0.0000,0.0375,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2848,-0.4643,0.0405) mvmt=(0.0000,0.0375,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1305,0.9358,1.6602) mvmt=(-0.0375,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1555,0.6958,1.5552) mvmt=(-0.0375,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1555,-1.5155,0.2052) mvmt=(-0.0375,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.7557,1.5605) mvmt=(0.0000,0.0375,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.7557,3.0605) mvmt=(0.0000,0.0375,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.7557,2.2905) mvmt=(0.0000,0.0375,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.165,7.744,96.310) lpos=(2.335,3.756,2.290) lprev=(2.335,3.718,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1305,0.9358,0.9102) mvmt=(-0.0375,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1555,0.6958,0.8052) mvmt=(-0.0375,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1555,0.6958,0.8052) out=(-0.1555,0.6958,1.5552) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.3348,3.7557,3.0405) mvmt=(0.0000,0.0375,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,7.744,97.060) lpos=(2.335,3.756,3.040) lprev=(2.335,3.718,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.7557,3.0405) mvmt=(0.0000,0.0375,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.7557,3.0405) mvmt=(0.0000,0.0375,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.7557,-1.4445) mvmt=(0.0000,0.0375,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2848,-0.4643,0.0405) mvmt=(0.0000,0.0375,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1305,0.9358,1.6602) mvmt=(-0.0375,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1555,0.6958,1.5552) mvmt=(-0.0375,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1555,-1.5155,0.2052) mvmt=(-0.0375,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.7557,1.5605) mvmt=(0.0000,0.0375,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.7557,3.0605) mvmt=(0.0000,0.0375,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[input] SelectLeft Press +[input] MovementTurnRight Press +[input] MovementForward Press +[push-back-disp] site=dispatch center=(2.6263,3.4514,3.0405) mvmt=(0.2915,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.874,8.049,97.060) lpos=(2.626,3.451,3.040) lprev=(2.335,3.756,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6263,3.4514,3.0405) mvmt=(0.2915,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.6263,3.4514,3.0405) mvmt=(0.2915,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.9087,3.4514,-1.4445) mvmt=(0.2915,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6563,0.1742,0.0455) mvmt=(0.2915,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5783,2.8639,-4.3045) mvmt=(0.2915,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6567,2.8639,-4.3045) mvmt=(0.2915,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5763,-0.7686,0.0405) mvmt=(0.2915,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.2273,1.6602) mvmt=(0.3043,0.2915,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,0.9873,1.5552) mvmt=(0.3043,0.2915,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6263,3.4514,3.0405) mvmt=(0.2915,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.874,8.049,97.060) lpos=(2.626,3.451,3.040) lprev=(2.335,3.756,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6263,3.4514,3.0405) mvmt=(0.2915,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.6263,3.4514,3.0405) mvmt=(0.2915,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.9087,3.4514,-1.4445) mvmt=(0.2915,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6563,0.1742,0.0455) mvmt=(0.2915,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5783,2.8639,-4.3045) mvmt=(0.2915,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6567,2.8639,-4.3045) mvmt=(0.2915,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5763,-0.7686,0.0405) mvmt=(0.2915,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.2273,1.6602) mvmt=(0.3043,0.2915,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,0.9873,1.5552) mvmt=(0.3043,0.2915,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1488,0.9873,1.5552) out=(0.1488,0.9873,1.9800) delta=(0.0000,0.0000,0.4248) deltaMag=0.4248 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.2920 dpPos=0.0552 dpMove=-0.6000 iDist=0.7080 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.6263,3.4514,3.4653) mvmt=(0.2915,-0.3043,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.874,8.049,97.485) lpos=(2.626,3.451,3.465) lprev=(2.335,3.756,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6263,3.4514,3.4653) mvmt=(0.2915,-0.3043,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.9087,3.4514,-1.0197) mvmt=(0.2915,-0.3043,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(4.6563,0.1742,0.4703) mvmt=(0.2915,-0.3043,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.5783,2.8639,-3.8797) mvmt=(0.2915,-0.3043,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.6567,2.8639,-3.8797) mvmt=(0.2915,-0.3043,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.5763,-0.7686,0.4653) mvmt=(0.2915,-0.3043,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.2273,2.0850) mvmt=(0.3043,0.2915,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.1488,0.9873,1.9800) mvmt=(0.3043,0.2915,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-1.2240,0.6300) mvmt=(0.3043,0.2915,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.9087,3.4514,1.9853) mvmt=(0.2915,-0.3043,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.1729,2.2015,3.4778) mvmt=(-0.2822,0.3130,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.6263,3.4514,3.4853) mvmt=(0.2915,-0.3043,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.6263,3.4514,3.4653) mvmt=(0.2915,-0.3043,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.874,8.049,97.485) lpos=(2.626,3.451,3.465) lprev=(2.335,3.756,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6263,3.4514,3.4653) mvmt=(0.2915,-0.3043,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.9087,3.4514,-1.0197) mvmt=(0.2915,-0.3043,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(4.6563,0.1742,0.4703) mvmt=(0.2915,-0.3043,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.5783,2.8639,-3.8797) mvmt=(0.2915,-0.3043,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.6567,2.8639,-3.8797) mvmt=(0.2915,-0.3043,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.5763,-0.7686,0.4653) mvmt=(0.2915,-0.3043,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.2273,2.0850) mvmt=(0.3043,0.2915,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.1488,0.9873,1.9800) mvmt=(0.3043,0.2915,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-1.2240,0.6300) mvmt=(0.3043,0.2915,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.9087,3.4514,1.9853) mvmt=(0.2915,-0.3043,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.1729,2.2015,3.4778) mvmt=(-0.2822,0.3130,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.6263,3.4514,3.4853) mvmt=(0.2915,-0.3043,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.3348,3.4514,3.0405) mvmt=(0.0000,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.049,97.060) lpos=(2.335,3.451,3.040) lprev=(2.335,3.756,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.4514,3.0405) mvmt=(0.0000,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.4514,3.0405) mvmt=(0.0000,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.4514,-1.4445) mvmt=(0.0000,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(4.3648,0.1742,0.0455) mvmt=(0.0000,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.2868,2.8639,-4.3045) mvmt=(0.0000,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,2.8639,-4.3045) mvmt=(0.0000,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.2848,-0.7686,0.0405) mvmt=(0.0000,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,0.9358,1.6602) mvmt=(0.3043,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.1488,0.6958,1.5552) mvmt=(0.3043,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-1.5155,0.2052) mvmt=(0.3043,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.4514,1.5605) mvmt=(0.0000,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.4514,3.0605) mvmt=(0.0000,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.4514,2.2905) mvmt=(0.0000,-0.3043,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.165,8.049,96.310) lpos=(2.335,3.451,2.290) lprev=(2.335,3.756,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8262,0.9358,0.9102) mvmt=(0.3043,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,0.6958,0.8052) mvmt=(0.3043,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1488,0.6958,0.8052) out=(0.1488,0.6958,1.5552) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.3348,3.4514,3.0405) mvmt=(0.0000,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.049,97.060) lpos=(2.335,3.451,3.040) lprev=(2.335,3.756,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.4514,3.0405) mvmt=(0.0000,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.4514,3.0405) mvmt=(0.0000,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.4514,-1.4445) mvmt=(0.0000,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3648,0.1742,0.0455) mvmt=(0.0000,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2868,2.8639,-4.3045) mvmt=(0.0000,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,2.8639,-4.3045) mvmt=(0.0000,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2848,-0.7686,0.0405) mvmt=(0.0000,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,0.9358,1.6602) mvmt=(0.3043,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,0.6958,1.5552) mvmt=(0.3043,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-1.5155,0.2052) mvmt=(0.3043,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.4514,1.5605) mvmt=(0.0000,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.4514,3.0605) mvmt=(0.0000,-0.3043,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.1265,3.0405) mvmt=(0.0000,-0.3250,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.374,97.060) lpos=(2.335,3.126,3.040) lprev=(2.335,3.451,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.1265,3.0405) mvmt=(0.0000,-0.3250,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.1265,3.0405) mvmt=(0.0000,-0.3250,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.1265,3.0405) mvmt=(0.0000,-0.3250,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.3348,3.1265,3.0405) out=(2.3348,3.1265,3.4800) delta=(0.0000,0.0000,0.4395) deltaMag=0.4395 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.2675 dpPos=0.0405 dpMove=-0.6000 iDist=0.7325 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.374,97.060) lpos=(2.335,3.126,3.040) lprev=(2.335,3.451,3.040) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.1265,3.4800) mvmt=(0.0000,-0.3250,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.374,97.500) lpos=(2.335,3.126,3.480) lprev=(2.335,3.451,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.1265,3.4800) mvmt=(0.0000,-0.3250,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.1265,-1.0050) mvmt=(0.0000,-0.3250,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(4.3648,-0.1507,0.4850) mvmt=(0.0000,-0.3250,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(3.2868,2.5390,-3.8650) mvmt=(0.0000,-0.3250,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,2.5390,-3.8650) mvmt=(0.0000,-0.3250,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(3.2848,-1.0935,0.4800) mvmt=(0.0000,-0.3250,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(-0.5012,0.9358,2.0997) mvmt=(0.3250,-0.0000,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(0.4738,0.6958,1.9947) mvmt=(0.3250,-0.0000,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(0.4738,-1.5155,0.6447) mvmt=(0.3250,-0.0000,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.1265,2.0000) mvmt=(0.0000,-0.3250,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.1265,3.5000) mvmt=(0.0000,-0.3250,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.1265,3.4800) mvmt=(0.0000,-0.3250,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.374,97.500) lpos=(2.335,3.126,3.480) lprev=(2.335,3.451,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.1265,3.4800) mvmt=(0.0000,-0.3250,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.1265,-1.0050) mvmt=(0.0000,-0.3250,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(4.3648,-0.1507,0.4850) mvmt=(0.0000,-0.3250,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(3.2868,2.5390,-3.8650) mvmt=(0.0000,-0.3250,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,2.5390,-3.8650) mvmt=(0.0000,-0.3250,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(3.2848,-1.0935,0.4800) mvmt=(0.0000,-0.3250,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(-0.5012,0.9358,2.0997) mvmt=(0.3250,-0.0000,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(0.4738,0.6958,1.9947) mvmt=(0.3250,-0.0000,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(0.4738,-1.5155,0.6447) mvmt=(0.3250,-0.0000,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.1265,2.0000) mvmt=(0.0000,-0.3250,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.1265,3.5000) mvmt=(0.0000,-0.3250,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.6347,3.4514,3.0405) mvmt=(0.2999,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.865,8.049,97.060) lpos=(2.635,3.451,3.040) lprev=(2.335,3.451,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6347,3.4514,3.0405) mvmt=(0.2999,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.6347,3.4514,3.0405) mvmt=(0.2999,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.9003,3.4514,-1.4445) mvmt=(0.2999,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6647,0.1742,0.0455) mvmt=(0.2999,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5867,2.8639,-4.3045) mvmt=(0.2999,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6483,2.8639,-4.3045) mvmt=(0.2999,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5847,-0.7686,0.0405) mvmt=(0.2999,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.2357,1.6602) mvmt=(0.0000,0.2999,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,0.9957,1.5552) mvmt=(0.0000,0.2999,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6347,3.4514,3.0405) mvmt=(0.2999,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.865,8.049,97.060) lpos=(2.635,3.451,3.040) lprev=(2.335,3.451,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6347,3.4514,3.0405) mvmt=(0.2999,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.6347,3.4514,3.0405) mvmt=(0.2999,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.9003,3.4514,-1.4445) mvmt=(0.2999,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6647,0.1742,0.0455) mvmt=(0.2999,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5867,2.8639,-4.3045) mvmt=(0.2999,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6483,2.8639,-4.3045) mvmt=(0.2999,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5847,-0.7686,0.0405) mvmt=(0.2999,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.2357,1.6602) mvmt=(0.0000,0.2999,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,0.9957,1.5552) mvmt=(0.0000,0.2999,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1488,0.9957,1.5552) out=(0.1488,0.9957,1.9800) delta=(0.0000,0.0000,0.4248) deltaMag=0.4248 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.2920 dpPos=0.0552 dpMove=-0.6000 iDist=0.7080 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.6347,3.4514,3.4653) mvmt=(0.2999,0.0000,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.865,8.049,97.485) lpos=(2.635,3.451,3.465) lprev=(2.335,3.451,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6347,3.4514,3.4653) mvmt=(0.2999,0.0000,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.9003,3.4514,-1.0197) mvmt=(0.2999,0.0000,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(4.6647,0.1742,0.4703) mvmt=(0.2999,0.0000,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.5867,2.8639,-3.8797) mvmt=(0.2999,0.0000,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.6483,2.8639,-3.8797) mvmt=(0.2999,0.0000,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.5847,-0.7686,0.4653) mvmt=(0.2999,0.0000,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.2357,2.0850) mvmt=(0.0000,0.2999,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.1488,0.9957,1.9800) mvmt=(0.0000,0.2999,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-1.2156,0.6300) mvmt=(0.0000,0.2999,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.9003,3.4514,1.9853) mvmt=(0.2999,0.0000,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.6347,3.4514,3.4853) mvmt=(0.2999,0.0000,0.4248) collide=False insertType=0 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.6347,3.4514,3.4653) mvmt=(0.2999,0.0000,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.865,8.049,97.485) lpos=(2.635,3.451,3.465) lprev=(2.335,3.451,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6347,3.4514,3.4653) mvmt=(0.2999,0.0000,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.9003,3.4514,-1.0197) mvmt=(0.2999,0.0000,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(4.6647,0.1742,0.4703) mvmt=(0.2999,0.0000,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.5867,2.8639,-3.8797) mvmt=(0.2999,0.0000,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.6483,2.8639,-3.8797) mvmt=(0.2999,0.0000,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(3.5847,-0.7686,0.4653) mvmt=(0.2999,0.0000,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.2357,2.0850) mvmt=(0.0000,0.2999,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.1488,0.9957,1.9800) mvmt=(0.0000,0.2999,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-1.2156,0.6300) mvmt=(0.0000,0.2999,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(-2.9003,3.4514,1.9853) mvmt=(0.2999,0.0000,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[push-back-disp] site=dispatch center=(2.6347,3.4514,3.4853) mvmt=(0.2999,0.0000,0.4248) collide=False insertType=1 objState=0x303 winterp=0.2920 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.3348,3.2731,3.0405) mvmt=(0.0000,-0.1783,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.227,97.060) lpos=(2.335,3.273,3.040) lprev=(2.335,3.451,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.2731,3.0405) mvmt=(0.0000,-0.1783,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3348,3.2731,3.0405) mvmt=(0.0000,-0.1783,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.2731,3.0405) mvmt=(0.0000,-0.1783,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.3348,3.2731,3.0405) out=(2.3348,3.2731,3.4800) delta=(0.0000,0.0000,0.4395) deltaMag=0.4395 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.2675 dpPos=0.0405 dpMove=-0.6000 iDist=0.7325 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.227,97.060) lpos=(2.335,3.273,3.040) lprev=(2.335,3.451,3.040) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.2731,3.4800) mvmt=(0.0000,-0.1783,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.227,97.500) lpos=(2.335,3.273,3.480) lprev=(2.335,3.451,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.2731,3.4800) mvmt=(0.0000,-0.1783,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.2731,-1.0050) mvmt=(0.0000,-0.1783,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(4.3648,-0.0041,0.4850) mvmt=(0.0000,-0.1783,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(3.2868,2.6856,-3.8650) mvmt=(0.0000,-0.1783,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,2.6856,-3.8650) mvmt=(0.0000,-0.1783,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(3.2848,-0.9469,0.4800) mvmt=(0.0000,-0.1783,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(-0.6478,0.9358,2.0997) mvmt=(0.1783,-0.0000,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(0.3272,0.6958,1.9947) mvmt=(0.1783,-0.0000,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(0.3272,-1.5155,0.6447) mvmt=(0.1783,0.0000,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.2731,2.0000) mvmt=(0.0000,-0.1783,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.2731,3.5000) mvmt=(0.0000,-0.1783,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.2731,3.4800) mvmt=(0.0000,-0.1783,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,8.227,97.500) lpos=(2.335,3.273,3.480) lprev=(2.335,3.451,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3348,3.2731,3.4800) mvmt=(0.0000,-0.1783,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2002,3.2731,-1.0050) mvmt=(0.0000,-0.1783,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(4.3648,-0.0041,0.4850) mvmt=(0.0000,-0.1783,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(3.2868,2.6856,-3.8650) mvmt=(0.0000,-0.1783,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(-2.9482,2.6856,-3.8650) mvmt=(0.0000,-0.1783,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(3.2848,-0.9469,0.4800) mvmt=(0.0000,-0.1783,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(-0.6478,0.9358,2.0997) mvmt=(0.1783,-0.0000,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(0.3272,0.6958,1.9947) mvmt=(0.1783,-0.0000,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(0.3272,-1.5155,0.6447) mvmt=(0.1783,0.0000,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(-3.2002,3.2731,2.0000) mvmt=(0.0000,-0.1783,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(2.3348,3.2731,3.5000) mvmt=(0.0000,-0.1783,0.4395) collide=False insertType=1 objState=0x303 winterp=0.2675 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:672 +[push-back-disp] site=dispatch center=(2.5056,3.4514,3.4800) mvmt=(0.1709,0.0000,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.049,97.500) lpos=(2.506,3.451,3.480) lprev=(2.335,3.451,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.4514,3.4800) mvmt=(0.1709,0.0000,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.4514,-1.0050) mvmt=(0.1709,0.0000,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(4.5356,0.1742,0.4850) mvmt=(0.1709,0.0000,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.8639,-3.8650) mvmt=(0.1709,0.0000,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.8639,-3.8650) mvmt=(0.1709,0.0000,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.7686,0.4800) mvmt=(0.1709,0.0000,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.1066,2.0997) mvmt=(0.0000,0.1709,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(0.1488,0.8666,1.9947) mvmt=(0.0000,0.1709,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-1.3446,0.6447) mvmt=(0.0000,0.1709,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.4514,2.0000) mvmt=(0.1709,0.0000,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.4514,3.5000) mvmt=(0.1709,0.0000,0.4395) collide=False insertType=0 objState=0x303 winterp=0.2675 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.4514,2.7300) mvmt=(0.1709,0.0000,-0.3105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,8.049,96.750) lpos=(2.506,3.451,2.730) lprev=(2.335,3.451,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.4514,2.7300) mvmt=(0.1709,0.0000,-0.3105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.4514,2.7300) mvmt=(0.1709,0.0000,-0.3105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8262,1.1066,1.3497) mvmt=(0.0000,0.1709,-0.3105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,0.8666,1.2447) mvmt=(0.0000,0.1709,-0.3105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1488,0.8666,1.2447) out=(0.1488,0.8666,1.7319) delta=(0.0000,0.0000,0.4872) deltaMag=0.4872 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3503 dpPos=0.1414 dpMove=-0.5213 iDist=0.6497 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.4514,3.2172) mvmt=(0.1709,0.0000,0.1767) collide=False insertType=0 objState=0x303 winterp=0.3503 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.049,97.237) lpos=(2.506,3.451,3.217) lprev=(2.335,3.451,3.040) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.4514,3.2172) mvmt=(0.1709,0.0000,0.1767) collide=False insertType=0 objState=0x303 winterp=0.3503 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.4514,3.2172) mvmt=(0.1709,0.0000,0.1767) collide=False insertType=0 objState=0x303 winterp=0.3503 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.4514,-1.2678) mvmt=(0.1709,0.0000,0.1767) collide=False insertType=0 objState=0x303 winterp=0.3503 return=-1 +[push-back-disp] site=dispatch center=(4.5356,0.1742,0.2222) mvmt=(0.1709,0.0000,0.1767) collide=False insertType=0 objState=0x303 winterp=0.3503 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.8639,-4.1278) mvmt=(0.1709,0.0000,0.1767) collide=False insertType=0 objState=0x303 winterp=0.3503 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.8639,-4.1278) mvmt=(0.1709,0.0000,0.1767) collide=False insertType=0 objState=0x303 winterp=0.3503 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.7686,0.2172) mvmt=(0.1709,0.0000,0.1767) collide=False insertType=0 objState=0x303 winterp=0.3503 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.1066,1.8369) mvmt=(0.0000,0.1709,0.1767) collide=False insertType=0 objState=0x303 winterp=0.3503 return=-1 +[push-back-disp] site=dispatch center=(0.1488,0.8666,1.7319) mvmt=(0.0000,0.1709,0.1767) collide=False insertType=0 objState=0x303 winterp=0.3503 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-1.3446,0.3819) mvmt=(0.0000,0.1709,0.1767) collide=False insertType=0 objState=0x303 winterp=0.3503 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.4514,1.7372) mvmt=(0.1709,0.0000,0.1767) collide=False insertType=0 objState=0x303 winterp=0.3503 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.4514,3.2372) mvmt=(0.1709,0.0000,0.1767) collide=False insertType=0 objState=0x303 winterp=0.3503 return=-1 +[push-back-disp] site=dispatch center=(2.8056,3.4514,3.2172) mvmt=(0.3000,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.694,8.049,97.237) lpos=(2.806,3.451,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8056,3.4514,3.2172) mvmt=(0.3000,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8056,3.4514,3.2172) mvmt=(0.3000,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7294,3.4514,-1.2678) mvmt=(0.3000,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7576,2.8639,-4.1278) mvmt=(0.3000,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4774,2.8639,-4.1278) mvmt=(0.3000,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7556,-0.7686,0.2172) mvmt=(0.3000,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.4066,1.8369) mvmt=(0.0000,0.3000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1666,1.7319) mvmt=(0.0000,0.3000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8056,3.4514,3.2172) mvmt=(0.3000,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.694,8.049,97.237) lpos=(2.806,3.451,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8056,3.4514,3.2172) mvmt=(0.3000,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8056,3.4514,3.2172) mvmt=(0.3000,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7294,3.4514,-1.2678) mvmt=(0.3000,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7576,2.8639,-4.1278) mvmt=(0.3000,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4774,2.8639,-4.1278) mvmt=(0.3000,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7556,-0.7686,0.2172) mvmt=(0.3000,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.4066,1.8369) mvmt=(0.0000,0.3000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1666,1.7319) mvmt=(0.0000,0.3000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1488,1.1666,1.7319) out=(0.1488,1.1666,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.8056,3.4514,3.4653) mvmt=(0.3000,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.694,8.049,97.485) lpos=(2.806,3.451,3.465) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8056,3.4514,3.4653) mvmt=(0.3000,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7294,3.4514,-1.0197) mvmt=(0.3000,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.8356,0.1742,0.4703) mvmt=(0.3000,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7576,2.8639,-3.8797) mvmt=(0.3000,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4774,2.8639,-3.8797) mvmt=(0.3000,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7556,-0.7686,0.4653) mvmt=(0.3000,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.4066,2.0850) mvmt=(0.0000,0.3000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1666,1.9800) mvmt=(0.0000,0.3000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-1.0447,0.6300) mvmt=(0.0000,0.3000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7294,3.4514,1.9853) mvmt=(0.3000,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8056,3.4514,3.4853) mvmt=(0.3000,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8056,3.4514,3.4653) mvmt=(0.3000,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.694,8.049,97.485) lpos=(2.806,3.451,3.465) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8056,3.4514,3.4653) mvmt=(0.3000,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7294,3.4514,-1.0197) mvmt=(0.3000,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.8356,0.1742,0.4703) mvmt=(0.3000,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7576,2.8639,-3.8797) mvmt=(0.3000,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4774,2.8639,-3.8797) mvmt=(0.3000,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7556,-0.7686,0.4653) mvmt=(0.3000,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.4066,2.0850) mvmt=(0.0000,0.3000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1666,1.9800) mvmt=(0.0000,0.3000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-1.0447,0.6300) mvmt=(0.0000,0.3000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7294,3.4514,1.9853) mvmt=(0.3000,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8056,3.4514,3.4853) mvmt=(0.3000,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.1391,3.2172) mvmt=(0.0000,-0.3124,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.361,97.237) lpos=(2.506,3.139,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1391,3.2172) mvmt=(0.0000,-0.3124,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.1391,3.2172) mvmt=(0.0000,-0.3124,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1391,3.2172) mvmt=(0.0000,-0.3124,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.1391,3.2172) out=(2.5056,3.1391,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.361,97.237) lpos=(2.506,3.139,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1391,3.4800) mvmt=(0.0000,-0.3124,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.361,97.500) lpos=(2.506,3.139,3.480) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1391,3.4800) mvmt=(0.0000,-0.3124,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1391,-1.0050) mvmt=(0.0000,-0.3124,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(4.5356,-0.1382,0.4850) mvmt=(0.0000,-0.3124,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5516,-3.8650) mvmt=(0.0000,-0.3124,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5516,-3.8650) mvmt=(0.0000,-0.3124,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0809,0.4800) mvmt=(0.0000,-0.3124,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5138,1.1066,2.0997) mvmt=(0.3124,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4612,0.8666,1.9947) mvmt=(0.3124,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4612,-1.3446,0.6447) mvmt=(0.3124,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1391,2.0000) mvmt=(0.0000,-0.3124,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1391,3.5000) mvmt=(0.0000,-0.3124,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1391,3.4800) mvmt=(0.0000,-0.3124,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.361,97.500) lpos=(2.506,3.139,3.480) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1391,3.4800) mvmt=(0.0000,-0.3124,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1391,-1.0050) mvmt=(0.0000,-0.3124,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(4.5356,-0.1382,0.4850) mvmt=(0.0000,-0.3124,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5516,-3.8650) mvmt=(0.0000,-0.3124,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5516,-3.8650) mvmt=(0.0000,-0.3124,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0809,0.4800) mvmt=(0.0000,-0.3124,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5138,1.1066,2.0997) mvmt=(0.3124,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4612,0.8666,1.9947) mvmt=(0.3124,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4612,-1.3446,0.6447) mvmt=(0.3124,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1391,2.0000) mvmt=(0.0000,-0.3124,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1391,3.5000) mvmt=(0.0000,-0.3124,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.8103,3.4514,3.2172) mvmt=(0.3047,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.690,8.049,97.237) lpos=(2.810,3.451,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8103,3.4514,3.2172) mvmt=(0.3047,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8103,3.4514,3.2172) mvmt=(0.3047,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7247,3.4514,-1.2678) mvmt=(0.3047,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7623,2.8639,-4.1278) mvmt=(0.3047,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4727,2.8639,-4.1278) mvmt=(0.3047,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7603,-0.7686,0.2172) mvmt=(0.3047,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.4113,1.8369) mvmt=(0.0000,0.3047,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1713,1.7319) mvmt=(0.0000,0.3047,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8103,3.4514,3.2172) mvmt=(0.3047,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.690,8.049,97.237) lpos=(2.810,3.451,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8103,3.4514,3.2172) mvmt=(0.3047,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8103,3.4514,3.2172) mvmt=(0.3047,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7247,3.4514,-1.2678) mvmt=(0.3047,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7623,2.8639,-4.1278) mvmt=(0.3047,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4727,2.8639,-4.1278) mvmt=(0.3047,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7603,-0.7686,0.2172) mvmt=(0.3047,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.4113,1.8369) mvmt=(0.0000,0.3047,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1713,1.7319) mvmt=(0.0000,0.3047,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1488,1.1713,1.7319) out=(0.1488,1.1713,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.8103,3.4514,3.4653) mvmt=(0.3047,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.690,8.049,97.485) lpos=(2.810,3.451,3.465) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8103,3.4514,3.4653) mvmt=(0.3047,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7247,3.4514,-1.0197) mvmt=(0.3047,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.8403,0.1742,0.4703) mvmt=(0.3047,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7623,2.8639,-3.8797) mvmt=(0.3047,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4727,2.8639,-3.8797) mvmt=(0.3047,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7603,-0.7686,0.4653) mvmt=(0.3047,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.4113,2.0850) mvmt=(0.0000,0.3047,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1713,1.9800) mvmt=(0.0000,0.3047,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-1.0400,0.6300) mvmt=(0.0000,0.3047,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7247,3.4514,1.9853) mvmt=(0.3047,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8103,3.4514,3.4853) mvmt=(0.3047,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8103,3.4514,3.4653) mvmt=(0.3047,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.690,8.049,97.485) lpos=(2.810,3.451,3.465) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8103,3.4514,3.4653) mvmt=(0.3047,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7247,3.4514,-1.0197) mvmt=(0.3047,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.8403,0.1742,0.4703) mvmt=(0.3047,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7623,2.8639,-3.8797) mvmt=(0.3047,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4727,2.8639,-3.8797) mvmt=(0.3047,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7603,-0.7686,0.4653) mvmt=(0.3047,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.4113,2.0850) mvmt=(0.0000,0.3047,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1713,1.9800) mvmt=(0.0000,0.3047,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-1.0400,0.6300) mvmt=(0.0000,0.3047,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7247,3.4514,1.9853) mvmt=(0.3047,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8103,3.4514,3.4853) mvmt=(0.3047,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.1342,3.2172) mvmt=(0.0000,-0.3173,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.366,97.237) lpos=(2.506,3.134,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1342,3.2172) mvmt=(0.0000,-0.3173,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.1342,3.2172) mvmt=(0.0000,-0.3173,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1342,3.2172) mvmt=(0.0000,-0.3173,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.1342,3.2172) out=(2.5056,3.1342,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.366,97.237) lpos=(2.506,3.134,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1342,3.4800) mvmt=(0.0000,-0.3173,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.366,97.500) lpos=(2.506,3.134,3.480) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1342,3.4800) mvmt=(0.0000,-0.3173,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1342,-1.0050) mvmt=(0.0000,-0.3173,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(4.5356,-0.1430,0.4850) mvmt=(0.0000,-0.3173,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5467,-3.8650) mvmt=(0.0000,-0.3173,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5467,-3.8650) mvmt=(0.0000,-0.3173,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0858,0.4800) mvmt=(0.0000,-0.3173,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5089,1.1066,2.0997) mvmt=(0.3173,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4661,0.8666,1.9947) mvmt=(0.3173,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4661,-1.3446,0.6447) mvmt=(0.3173,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1342,2.0000) mvmt=(0.0000,-0.3173,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1342,3.5000) mvmt=(0.0000,-0.3173,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1342,3.4800) mvmt=(0.0000,-0.3173,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.366,97.500) lpos=(2.506,3.134,3.480) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1342,3.4800) mvmt=(0.0000,-0.3173,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1342,-1.0050) mvmt=(0.0000,-0.3173,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(4.5356,-0.1430,0.4850) mvmt=(0.0000,-0.3173,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5467,-3.8650) mvmt=(0.0000,-0.3173,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5467,-3.8650) mvmt=(0.0000,-0.3173,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0858,0.4800) mvmt=(0.0000,-0.3173,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5089,1.1066,2.0997) mvmt=(0.3173,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4661,0.8666,1.9947) mvmt=(0.3173,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4661,-1.3446,0.6447) mvmt=(0.3173,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1342,2.0000) mvmt=(0.0000,-0.3173,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1342,3.5000) mvmt=(0.0000,-0.3173,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.8109,3.4514,3.2172) mvmt=(0.3053,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.689,8.049,97.237) lpos=(2.811,3.451,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8109,3.4514,3.2172) mvmt=(0.3053,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8109,3.4514,3.2172) mvmt=(0.3053,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7241,3.4514,-1.2678) mvmt=(0.3053,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7629,2.8639,-4.1278) mvmt=(0.3053,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4721,2.8639,-4.1278) mvmt=(0.3053,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7609,-0.7686,0.2172) mvmt=(0.3053,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.4119,1.8369) mvmt=(0.0000,0.3053,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1719,1.7319) mvmt=(0.0000,0.3053,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8109,3.4514,3.2172) mvmt=(0.3053,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.689,8.049,97.237) lpos=(2.811,3.451,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8109,3.4514,3.2172) mvmt=(0.3053,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8109,3.4514,3.2172) mvmt=(0.3053,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7241,3.4514,-1.2678) mvmt=(0.3053,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7629,2.8639,-4.1278) mvmt=(0.3053,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4721,2.8639,-4.1278) mvmt=(0.3053,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7609,-0.7686,0.2172) mvmt=(0.3053,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.4119,1.8369) mvmt=(0.0000,0.3053,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1719,1.7319) mvmt=(0.0000,0.3053,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1488,1.1719,1.7319) out=(0.1488,1.1719,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.8109,3.4514,3.4653) mvmt=(0.3053,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.689,8.049,97.485) lpos=(2.811,3.451,3.465) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8109,3.4514,3.4653) mvmt=(0.3053,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7241,3.4514,-1.0197) mvmt=(0.3053,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.8409,0.1742,0.4703) mvmt=(0.3053,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7629,2.8639,-3.8797) mvmt=(0.3053,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4721,2.8639,-3.8797) mvmt=(0.3053,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7609,-0.7686,0.4653) mvmt=(0.3053,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.4119,2.0850) mvmt=(0.0000,0.3053,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1719,1.9800) mvmt=(0.0000,0.3053,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-1.0394,0.6300) mvmt=(0.0000,0.3053,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7241,3.4514,1.9853) mvmt=(0.3053,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8109,3.4514,3.4853) mvmt=(0.3053,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8109,3.4514,3.4653) mvmt=(0.3053,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.689,8.049,97.485) lpos=(2.811,3.451,3.465) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8109,3.4514,3.4653) mvmt=(0.3053,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7241,3.4514,-1.0197) mvmt=(0.3053,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.8409,0.1742,0.4703) mvmt=(0.3053,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7629,2.8639,-3.8797) mvmt=(0.3053,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4721,2.8639,-3.8797) mvmt=(0.3053,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7609,-0.7686,0.4653) mvmt=(0.3053,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.4119,2.0850) mvmt=(0.0000,0.3053,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1719,1.9800) mvmt=(0.0000,0.3053,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-1.0394,0.6300) mvmt=(0.0000,0.3053,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7241,3.4514,1.9853) mvmt=(0.3053,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8109,3.4514,3.4853) mvmt=(0.3053,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.1300,3.2172) mvmt=(0.0000,-0.3214,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.370,97.237) lpos=(2.506,3.130,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1300,3.2172) mvmt=(0.0000,-0.3214,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.1300,3.2172) mvmt=(0.0000,-0.3214,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1300,3.2172) mvmt=(0.0000,-0.3214,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.1300,3.2172) out=(2.5056,3.1300,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.370,97.237) lpos=(2.506,3.130,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1300,3.4800) mvmt=(0.0000,-0.3214,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.370,97.500) lpos=(2.506,3.130,3.480) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1300,3.4800) mvmt=(0.0000,-0.3214,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1300,-1.0050) mvmt=(0.0000,-0.3214,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(4.5356,-0.1472,0.4850) mvmt=(0.0000,-0.3214,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5425,-3.8650) mvmt=(0.0000,-0.3214,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5425,-3.8650) mvmt=(0.0000,-0.3214,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0900,0.4800) mvmt=(0.0000,-0.3214,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5048,1.1066,2.0997) mvmt=(0.3214,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4702,0.8666,1.9947) mvmt=(0.3214,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4702,-1.3446,0.6447) mvmt=(0.3214,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1300,2.0000) mvmt=(0.0000,-0.3214,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1300,3.5000) mvmt=(0.0000,-0.3214,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1300,3.4800) mvmt=(0.0000,-0.3214,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.370,97.500) lpos=(2.506,3.130,3.480) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1300,3.4800) mvmt=(0.0000,-0.3214,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1300,-1.0050) mvmt=(0.0000,-0.3214,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(4.5356,-0.1472,0.4850) mvmt=(0.0000,-0.3214,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5425,-3.8650) mvmt=(0.0000,-0.3214,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5425,-3.8650) mvmt=(0.0000,-0.3214,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0900,0.4800) mvmt=(0.0000,-0.3214,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5048,1.1066,2.0997) mvmt=(0.3214,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4702,0.8666,1.9947) mvmt=(0.3214,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4702,-1.3446,0.6447) mvmt=(0.3214,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1300,2.0000) mvmt=(0.0000,-0.3214,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1300,3.5000) mvmt=(0.0000,-0.3214,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.7881,3.4514,3.2172) mvmt=(0.2825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.712,8.049,97.237) lpos=(2.788,3.451,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7881,3.4514,3.2172) mvmt=(0.2825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7881,3.4514,3.2172) mvmt=(0.2825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7469,3.4514,-1.2678) mvmt=(0.2825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7401,2.8639,-4.1278) mvmt=(0.2825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4949,2.8639,-4.1278) mvmt=(0.2825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7381,-0.7686,0.2172) mvmt=(0.2825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.3891,1.8369) mvmt=(0.0000,0.2825,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1491,1.7319) mvmt=(0.0000,0.2825,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7881,3.4514,3.2172) mvmt=(0.2825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.712,8.049,97.237) lpos=(2.788,3.451,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7881,3.4514,3.2172) mvmt=(0.2825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7881,3.4514,3.2172) mvmt=(0.2825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7469,3.4514,-1.2678) mvmt=(0.2825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7401,2.8639,-4.1278) mvmt=(0.2825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4949,2.8639,-4.1278) mvmt=(0.2825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7381,-0.7686,0.2172) mvmt=(0.2825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.3891,1.8369) mvmt=(0.0000,0.2825,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1491,1.7319) mvmt=(0.0000,0.2825,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1488,1.1491,1.7319) out=(0.1488,1.1491,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.7881,3.4514,3.4653) mvmt=(0.2825,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.712,8.049,97.485) lpos=(2.788,3.451,3.465) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7881,3.4514,3.4653) mvmt=(0.2825,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7469,3.4514,-1.0197) mvmt=(0.2825,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.8181,0.1742,0.4703) mvmt=(0.2825,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7401,2.8639,-3.8797) mvmt=(0.2825,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4949,2.8639,-3.8797) mvmt=(0.2825,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7381,-0.7686,0.4653) mvmt=(0.2825,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.3891,2.0850) mvmt=(0.0000,0.2825,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1491,1.9800) mvmt=(0.0000,0.2825,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-1.0622,0.6300) mvmt=(0.0000,0.2825,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7469,3.4514,1.9853) mvmt=(0.2825,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.7881,3.4514,3.4853) mvmt=(0.2825,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.7881,3.4514,3.4653) mvmt=(0.2825,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.712,8.049,97.485) lpos=(2.788,3.451,3.465) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7881,3.4514,3.4653) mvmt=(0.2825,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7469,3.4514,-1.0197) mvmt=(0.2825,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.8181,0.1742,0.4703) mvmt=(0.2825,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7401,2.8639,-3.8797) mvmt=(0.2825,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4949,2.8639,-3.8797) mvmt=(0.2825,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7381,-0.7686,0.4653) mvmt=(0.2825,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.3891,2.0850) mvmt=(0.0000,0.2825,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1491,1.9800) mvmt=(0.0000,0.2825,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-1.0622,0.6300) mvmt=(0.0000,0.2825,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7469,3.4514,1.9853) mvmt=(0.2825,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.7881,3.4514,3.4853) mvmt=(0.2825,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.1259,3.2172) mvmt=(0.0000,-0.3255,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.374,97.237) lpos=(2.506,3.126,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1259,3.2172) mvmt=(0.0000,-0.3255,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.1259,3.2172) mvmt=(0.0000,-0.3255,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1259,3.2172) mvmt=(0.0000,-0.3255,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.1259,3.2172) out=(2.5056,3.1259,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.374,97.237) lpos=(2.506,3.126,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1259,3.4800) mvmt=(0.0000,-0.3255,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.374,97.500) lpos=(2.506,3.126,3.480) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1259,3.4800) mvmt=(0.0000,-0.3255,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1259,-1.0050) mvmt=(0.0000,-0.3255,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(4.5356,-0.1513,0.4850) mvmt=(0.0000,-0.3255,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5384,-3.8650) mvmt=(0.0000,-0.3255,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5384,-3.8650) mvmt=(0.0000,-0.3255,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0941,0.4800) mvmt=(0.0000,-0.3255,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5006,1.1066,2.0997) mvmt=(0.3255,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4744,0.8666,1.9947) mvmt=(0.3255,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4744,-1.3446,0.6447) mvmt=(0.3255,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1259,2.0000) mvmt=(0.0000,-0.3255,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1259,3.5000) mvmt=(0.0000,-0.3255,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1259,3.4800) mvmt=(0.0000,-0.3255,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.374,97.500) lpos=(2.506,3.126,3.480) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1259,3.4800) mvmt=(0.0000,-0.3255,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1259,-1.0050) mvmt=(0.0000,-0.3255,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(4.5356,-0.1513,0.4850) mvmt=(0.0000,-0.3255,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5384,-3.8650) mvmt=(0.0000,-0.3255,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5384,-3.8650) mvmt=(0.0000,-0.3255,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0941,0.4800) mvmt=(0.0000,-0.3255,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5006,1.1066,2.0997) mvmt=(0.3255,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4744,0.8666,1.9947) mvmt=(0.3255,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4744,-1.3446,0.6447) mvmt=(0.3255,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1259,2.0000) mvmt=(0.0000,-0.3255,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1259,3.5000) mvmt=(0.0000,-0.3255,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.8140,3.4514,3.2172) mvmt=(0.3084,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.686,8.049,97.237) lpos=(2.814,3.451,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8140,3.4514,3.2172) mvmt=(0.3084,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8140,3.4514,3.2172) mvmt=(0.3084,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7210,3.4514,-1.2678) mvmt=(0.3084,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7660,2.8639,-4.1278) mvmt=(0.3084,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4690,2.8639,-4.1278) mvmt=(0.3084,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7640,-0.7686,0.2172) mvmt=(0.3084,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.4150,1.8369) mvmt=(0.0000,0.3084,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1750,1.7319) mvmt=(0.0000,0.3084,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8140,3.4514,3.2172) mvmt=(0.3084,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.686,8.049,97.237) lpos=(2.814,3.451,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8140,3.4514,3.2172) mvmt=(0.3084,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8140,3.4514,3.2172) mvmt=(0.3084,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7210,3.4514,-1.2678) mvmt=(0.3084,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7660,2.8639,-4.1278) mvmt=(0.3084,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4690,2.8639,-4.1278) mvmt=(0.3084,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7640,-0.7686,0.2172) mvmt=(0.3084,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.4150,1.8369) mvmt=(0.0000,0.3084,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1750,1.7319) mvmt=(0.0000,0.3084,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1488,1.1750,1.7319) out=(0.1488,1.1750,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.8140,3.4514,3.4653) mvmt=(0.3084,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.686,8.049,97.485) lpos=(2.814,3.451,3.465) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8140,3.4514,3.4653) mvmt=(0.3084,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7210,3.4514,-1.0197) mvmt=(0.3084,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.8440,0.1742,0.4703) mvmt=(0.3084,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7660,2.8639,-3.8797) mvmt=(0.3084,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4690,2.8639,-3.8797) mvmt=(0.3084,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7640,-0.7686,0.4653) mvmt=(0.3084,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.4150,2.0850) mvmt=(0.0000,0.3084,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1750,1.9800) mvmt=(0.0000,0.3084,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-1.0362,0.6300) mvmt=(0.0000,0.3084,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7210,3.4514,1.9853) mvmt=(0.3084,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8140,3.4514,3.4853) mvmt=(0.3084,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8140,3.4514,3.4653) mvmt=(0.3084,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.686,8.049,97.485) lpos=(2.814,3.451,3.465) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8140,3.4514,3.4653) mvmt=(0.3084,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7210,3.4514,-1.0197) mvmt=(0.3084,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.8440,0.1742,0.4703) mvmt=(0.3084,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7660,2.8639,-3.8797) mvmt=(0.3084,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4690,2.8639,-3.8797) mvmt=(0.3084,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7640,-0.7686,0.4653) mvmt=(0.3084,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.4150,2.0850) mvmt=(0.0000,0.3084,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1750,1.9800) mvmt=(0.0000,0.3084,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-1.0362,0.6300) mvmt=(0.0000,0.3084,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7210,3.4514,1.9853) mvmt=(0.3084,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8140,3.4514,3.4853) mvmt=(0.3084,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.1304,3.2172) mvmt=(0.0000,-0.3211,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.370,97.237) lpos=(2.506,3.130,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1304,3.2172) mvmt=(0.0000,-0.3211,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.1304,3.2172) mvmt=(0.0000,-0.3211,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1304,3.2172) mvmt=(0.0000,-0.3211,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.1304,3.2172) out=(2.5056,3.1304,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.370,97.237) lpos=(2.506,3.130,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1304,3.4800) mvmt=(0.0000,-0.3211,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.370,97.500) lpos=(2.506,3.130,3.480) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1304,3.4800) mvmt=(0.0000,-0.3211,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1304,-1.0050) mvmt=(0.0000,-0.3211,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(4.5356,-0.1469,0.4850) mvmt=(0.0000,-0.3211,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5429,-3.8650) mvmt=(0.0000,-0.3211,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5429,-3.8650) mvmt=(0.0000,-0.3211,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0896,0.4800) mvmt=(0.0000,-0.3211,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5051,1.1066,2.0997) mvmt=(0.3211,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4699,0.8666,1.9947) mvmt=(0.3211,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4699,-1.3446,0.6447) mvmt=(0.3211,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1304,2.0000) mvmt=(0.0000,-0.3211,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1304,3.5000) mvmt=(0.0000,-0.3211,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1304,3.4800) mvmt=(0.0000,-0.3211,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.370,97.500) lpos=(2.506,3.130,3.480) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1304,3.4800) mvmt=(0.0000,-0.3211,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1304,-1.0050) mvmt=(0.0000,-0.3211,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(4.5356,-0.1469,0.4850) mvmt=(0.0000,-0.3211,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5429,-3.8650) mvmt=(0.0000,-0.3211,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5429,-3.8650) mvmt=(0.0000,-0.3211,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0896,0.4800) mvmt=(0.0000,-0.3211,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5051,1.1066,2.0997) mvmt=(0.3211,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4699,0.8666,1.9947) mvmt=(0.3211,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4699,-1.3446,0.6447) mvmt=(0.3211,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1304,2.0000) mvmt=(0.0000,-0.3211,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1304,3.5000) mvmt=(0.0000,-0.3211,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[input] MovementTurnLeft Press +[push-back-disp] site=dispatch center=(2.7949,3.4514,3.2172) mvmt=(0.2893,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.705,8.049,97.237) lpos=(2.795,3.451,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7949,3.4514,3.2172) mvmt=(0.2893,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7949,3.4514,3.2172) mvmt=(0.2893,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7401,3.4514,-1.2678) mvmt=(0.2893,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7469,2.8639,-4.1278) mvmt=(0.2893,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4881,2.8639,-4.1278) mvmt=(0.2893,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7449,-0.7686,0.2172) mvmt=(0.2893,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.3959,1.8369) mvmt=(0.0000,0.2893,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1559,1.7319) mvmt=(0.0000,0.2893,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7949,3.4514,3.2172) mvmt=(0.2893,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.705,8.049,97.237) lpos=(2.795,3.451,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7949,3.4514,3.2172) mvmt=(0.2893,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7949,3.4514,3.2172) mvmt=(0.2893,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7401,3.4514,-1.2678) mvmt=(0.2893,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7469,2.8639,-4.1278) mvmt=(0.2893,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4881,2.8639,-4.1278) mvmt=(0.2893,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7449,-0.7686,0.2172) mvmt=(0.2893,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.3959,1.8369) mvmt=(0.0000,0.2893,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1559,1.7319) mvmt=(0.0000,0.2893,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1488,1.1559,1.7319) out=(0.1488,1.1559,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.7949,3.4514,3.4653) mvmt=(0.2893,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.705,8.049,97.485) lpos=(2.795,3.451,3.465) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7949,3.4514,3.4653) mvmt=(0.2893,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7401,3.4514,-1.0197) mvmt=(0.2893,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.8249,0.1742,0.4703) mvmt=(0.2893,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7469,2.8639,-3.8797) mvmt=(0.2893,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4881,2.8639,-3.8797) mvmt=(0.2893,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7449,-0.7686,0.4653) mvmt=(0.2893,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.3959,2.0850) mvmt=(0.0000,0.2893,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1559,1.9800) mvmt=(0.0000,0.2893,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-1.0554,0.6300) mvmt=(0.0000,0.2893,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7401,3.4514,1.9853) mvmt=(0.2893,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.7949,3.4514,3.4853) mvmt=(0.2893,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.7949,3.4514,3.4653) mvmt=(0.2893,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.705,8.049,97.485) lpos=(2.795,3.451,3.465) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7949,3.4514,3.4653) mvmt=(0.2893,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7401,3.4514,-1.0197) mvmt=(0.2893,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.8249,0.1742,0.4703) mvmt=(0.2893,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7469,2.8639,-3.8797) mvmt=(0.2893,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4881,2.8639,-3.8797) mvmt=(0.2893,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7449,-0.7686,0.4653) mvmt=(0.2893,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.3959,2.0850) mvmt=(0.0000,0.2893,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1559,1.9800) mvmt=(0.0000,0.2893,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-1.0554,0.6300) mvmt=(0.0000,0.2893,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7401,3.4514,1.9853) mvmt=(0.2893,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.7949,3.4514,3.4853) mvmt=(0.2893,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.1717,3.2172) mvmt=(0.0000,-0.2797,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.328,97.237) lpos=(2.506,3.172,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1717,3.2172) mvmt=(0.0000,-0.2797,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.1717,3.2172) mvmt=(0.0000,-0.2797,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1717,3.2172) mvmt=(0.0000,-0.2797,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.1717,3.2172) out=(2.5056,3.1717,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.328,97.237) lpos=(2.506,3.172,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1717,3.4800) mvmt=(0.0000,-0.2797,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.328,97.500) lpos=(2.506,3.172,3.480) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1717,3.4800) mvmt=(0.0000,-0.2797,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1717,-1.0050) mvmt=(0.0000,-0.2797,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(4.5356,-0.1055,0.4850) mvmt=(0.0000,-0.2797,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5842,-3.8650) mvmt=(0.0000,-0.2797,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5842,-3.8650) mvmt=(0.0000,-0.2797,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0483,0.4800) mvmt=(0.0000,-0.2797,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5465,1.1066,2.0997) mvmt=(0.2797,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4285,0.8666,1.9947) mvmt=(0.2797,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4285,-1.3446,0.6447) mvmt=(0.2797,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1717,2.0000) mvmt=(0.0000,-0.2797,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1717,3.5000) mvmt=(0.0000,-0.2797,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1717,3.4800) mvmt=(0.0000,-0.2797,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.328,97.500) lpos=(2.506,3.172,3.480) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1717,3.4800) mvmt=(0.0000,-0.2797,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1717,-1.0050) mvmt=(0.0000,-0.2797,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(4.5356,-0.1055,0.4850) mvmt=(0.0000,-0.2797,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5842,-3.8650) mvmt=(0.0000,-0.2797,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5842,-3.8650) mvmt=(0.0000,-0.2797,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0483,0.4800) mvmt=(0.0000,-0.2797,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5465,1.1066,2.0997) mvmt=(0.2797,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4285,0.8666,1.9947) mvmt=(0.2797,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4285,-1.3446,0.6447) mvmt=(0.2797,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1717,2.0000) mvmt=(0.0000,-0.2797,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1717,3.5000) mvmt=(0.0000,-0.2797,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.8339,3.4514,3.2172) mvmt=(0.3283,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.666,8.049,97.237) lpos=(2.834,3.451,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8339,3.4514,3.2172) mvmt=(0.3283,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8339,3.4514,3.2172) mvmt=(0.3283,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7011,3.4514,-1.2678) mvmt=(0.3283,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7859,2.8639,-4.1278) mvmt=(0.3283,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4491,2.8639,-4.1278) mvmt=(0.3283,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7839,-0.7686,0.2172) mvmt=(0.3283,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.4349,1.8369) mvmt=(0.0000,0.3283,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1949,1.7319) mvmt=(0.0000,0.3283,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8339,3.4514,3.2172) mvmt=(0.3283,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.666,8.049,97.237) lpos=(2.834,3.451,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8339,3.4514,3.2172) mvmt=(0.3283,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8339,3.4514,3.2172) mvmt=(0.3283,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7011,3.4514,-1.2678) mvmt=(0.3283,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7859,2.8639,-4.1278) mvmt=(0.3283,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4491,2.8639,-4.1278) mvmt=(0.3283,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7839,-0.7686,0.2172) mvmt=(0.3283,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.4349,1.8369) mvmt=(0.0000,0.3283,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1949,1.7319) mvmt=(0.0000,0.3283,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1488,1.1949,1.7319) out=(0.1488,1.1949,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.8339,3.4514,3.4653) mvmt=(0.3283,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.666,8.049,97.485) lpos=(2.834,3.451,3.465) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8339,3.4514,3.4653) mvmt=(0.3283,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7011,3.4514,-1.0197) mvmt=(0.3283,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.8639,0.1742,0.4703) mvmt=(0.3283,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7859,2.8639,-3.8797) mvmt=(0.3283,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4491,2.8639,-3.8797) mvmt=(0.3283,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7839,-0.7686,0.4653) mvmt=(0.3283,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.4349,2.0850) mvmt=(0.0000,0.3283,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1949,1.9800) mvmt=(0.0000,0.3283,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-1.0164,0.6300) mvmt=(0.0000,0.3283,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7011,3.4514,1.9853) mvmt=(0.3283,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8339,3.4514,3.4853) mvmt=(0.3283,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8339,3.4514,3.4653) mvmt=(0.3283,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.666,8.049,97.485) lpos=(2.834,3.451,3.465) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8339,3.4514,3.4653) mvmt=(0.3283,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7011,3.4514,-1.0197) mvmt=(0.3283,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.8639,0.1742,0.4703) mvmt=(0.3283,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7859,2.8639,-3.8797) mvmt=(0.3283,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4491,2.8639,-3.8797) mvmt=(0.3283,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7839,-0.7686,0.4653) mvmt=(0.3283,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.4349,2.0850) mvmt=(0.0000,0.3283,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.1949,1.9800) mvmt=(0.0000,0.3283,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-1.0164,0.6300) mvmt=(0.0000,0.3283,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7011,3.4514,1.9853) mvmt=(0.3283,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8339,3.4514,3.4853) mvmt=(0.3283,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.2365,3.2172) mvmt=(0.0000,-0.2149,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.264,97.237) lpos=(2.506,3.236,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2365,3.2172) mvmt=(0.0000,-0.2149,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2365,3.2172) mvmt=(0.0000,-0.2149,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2365,3.2172) mvmt=(0.0000,-0.2149,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.2365,3.2172) out=(2.5056,3.2365,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.264,97.237) lpos=(2.506,3.236,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2365,3.4800) mvmt=(0.0000,-0.2149,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.264,97.500) lpos=(2.506,3.236,3.480) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2365,3.4800) mvmt=(0.0000,-0.2149,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2365,-1.0050) mvmt=(0.0000,-0.2149,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6490,-3.8650) mvmt=(0.0000,-0.2149,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6490,-3.8650) mvmt=(0.0000,-0.2149,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.9835,0.4800) mvmt=(0.0000,-0.2149,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.6112,1.1066,2.0997) mvmt=(0.2149,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.3638,0.8666,1.9947) mvmt=(0.2149,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.3638,-1.3446,0.6447) mvmt=(0.2149,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2365,2.0000) mvmt=(0.0000,-0.2149,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2365,3.5000) mvmt=(0.0000,-0.2149,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2365,3.4800) mvmt=(0.0000,-0.2149,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.264,97.500) lpos=(2.506,3.236,3.480) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2365,3.4800) mvmt=(0.0000,-0.2149,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2365,-1.0050) mvmt=(0.0000,-0.2149,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6490,-3.8650) mvmt=(0.0000,-0.2149,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6490,-3.8650) mvmt=(0.0000,-0.2149,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.9835,0.4800) mvmt=(0.0000,-0.2149,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.6112,1.1066,2.0997) mvmt=(0.2149,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.3638,0.8666,1.9947) mvmt=(0.2149,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.3638,-1.3446,0.6447) mvmt=(0.2149,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2365,2.0000) mvmt=(0.0000,-0.2149,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2365,3.5000) mvmt=(0.0000,-0.2149,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9039,3.4514,3.2172) mvmt=(0.3983,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.596,8.049,97.237) lpos=(2.904,3.451,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9039,3.4514,3.2172) mvmt=(0.3983,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9039,3.4514,3.2172) mvmt=(0.3983,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6311,3.4514,-1.2678) mvmt=(0.3983,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9339,0.1742,0.2222) mvmt=(0.3983,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8559,2.8639,-4.1278) mvmt=(0.3983,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3791,2.8639,-4.1278) mvmt=(0.3983,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8539,-0.7686,0.2172) mvmt=(0.3983,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.5049,1.8369) mvmt=(0.0000,0.3983,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.2649,1.7319) mvmt=(0.0000,0.3983,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9039,3.4514,3.2172) mvmt=(0.3983,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.596,8.049,97.237) lpos=(2.904,3.451,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9039,3.4514,3.2172) mvmt=(0.3983,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9039,3.4514,3.2172) mvmt=(0.3983,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6311,3.4514,-1.2678) mvmt=(0.3983,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9339,0.1742,0.2222) mvmt=(0.3983,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8559,2.8639,-4.1278) mvmt=(0.3983,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3791,2.8639,-4.1278) mvmt=(0.3983,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8539,-0.7686,0.2172) mvmt=(0.3983,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.5049,1.8369) mvmt=(0.0000,0.3983,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.2649,1.7319) mvmt=(0.0000,0.3983,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1488,1.2649,1.7319) out=(0.1488,1.2649,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9039,3.4514,3.4653) mvmt=(0.3983,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.596,8.049,97.485) lpos=(2.904,3.451,3.465) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9039,3.4514,3.4653) mvmt=(0.3983,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6311,3.4514,-1.0197) mvmt=(0.3983,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9339,0.1742,0.4703) mvmt=(0.3983,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8559,2.8639,-3.8797) mvmt=(0.3983,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3791,2.8639,-3.8797) mvmt=(0.3983,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8539,-0.7686,0.4653) mvmt=(0.3983,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.5049,2.0850) mvmt=(0.0000,0.3983,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.2649,1.9800) mvmt=(0.0000,0.3983,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-0.9464,0.6300) mvmt=(0.0000,0.3983,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6311,3.4514,1.9853) mvmt=(0.3983,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9039,3.4514,3.4853) mvmt=(0.3983,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9039,3.4514,3.4653) mvmt=(0.3983,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.596,8.049,97.485) lpos=(2.904,3.451,3.465) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9039,3.4514,3.4653) mvmt=(0.3983,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6311,3.4514,-1.0197) mvmt=(0.3983,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9339,0.1742,0.4703) mvmt=(0.3983,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8559,2.8639,-3.8797) mvmt=(0.3983,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3791,2.8639,-3.8797) mvmt=(0.3983,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8539,-0.7686,0.4653) mvmt=(0.3983,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.8262,1.5049,2.0850) mvmt=(0.0000,0.3983,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,1.2649,1.9800) mvmt=(0.0000,0.3983,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-0.9464,0.6300) mvmt=(0.0000,0.3983,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6311,3.4514,1.9853) mvmt=(0.3983,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9039,3.4514,3.4853) mvmt=(0.3983,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.3086,3.2172) mvmt=(0.0000,-0.1428,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.191,97.237) lpos=(2.506,3.309,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.3086,3.2172) mvmt=(0.0000,-0.1428,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.3086,3.2172) mvmt=(0.0000,-0.1428,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.3086,-1.2678) mvmt=(0.0000,-0.1428,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.7211,-4.1278) mvmt=(0.0000,-0.1428,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.7211,-4.1278) mvmt=(0.0000,-0.1428,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6834,1.1066,1.8369) mvmt=(0.1428,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2916,0.8666,1.7319) mvmt=(0.1428,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2916,-1.3446,0.3819) mvmt=(0.1428,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.3086,1.7372) mvmt=(0.0000,-0.1428,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.3086,3.2372) mvmt=(0.0000,-0.1428,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.3086,2.4672) mvmt=(0.0000,-0.1428,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,8.191,96.487) lpos=(2.506,3.309,2.467) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.3086,2.4672) mvmt=(0.0000,-0.1428,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6834,1.1066,1.0869) mvmt=(0.1428,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2916,0.8666,0.9819) mvmt=(0.1428,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2916,0.8666,0.9819) out=(0.2916,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.3086,3.2172) mvmt=(0.0000,-0.1428,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.191,97.237) lpos=(2.506,3.309,3.217) lprev=(2.506,3.451,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.3086,3.2172) mvmt=(0.0000,-0.1428,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.3086,3.2172) mvmt=(0.0000,-0.1428,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.3086,-1.2678) mvmt=(0.0000,-0.1428,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.7211,-4.1278) mvmt=(0.0000,-0.1428,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.7211,-4.1278) mvmt=(0.0000,-0.1428,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6834,1.1066,1.8369) mvmt=(0.1428,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2916,0.8666,1.7319) mvmt=(0.1428,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2916,-1.3446,0.3819) mvmt=(0.1428,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.3086,1.7372) mvmt=(0.0000,-0.1428,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.3086,3.2372) mvmt=(0.0000,-0.1428,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9240,3.2034,3.2172) mvmt=(0.4183,-0.1052,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.576,8.297,97.237) lpos=(2.924,3.203,3.217) lprev=(2.506,3.309,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9240,3.2034,3.2172) mvmt=(0.4183,-0.1052,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9240,3.2034,3.2172) mvmt=(0.4183,-0.1052,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9240,3.2034,3.2172) mvmt=(0.4183,-0.1052,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.9240,3.2034,3.2172) out=(2.9240,3.2034,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.576,8.297,97.237) lpos=(2.924,3.203,3.217) lprev=(2.506,3.309,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.9240,3.2034,3.4800) mvmt=(0.4183,-0.1052,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.576,8.297,97.500) lpos=(2.924,3.203,3.480) lprev=(2.506,3.309,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9240,3.2034,3.4800) mvmt=(0.4183,-0.1052,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6111,3.2034,-1.0050) mvmt=(0.4183,-0.1052,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(4.9539,-0.0738,0.4850) mvmt=(0.4183,-0.1052,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8759,2.6159,-3.8650) mvmt=(0.4183,-0.1052,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.3590,2.6159,-3.8650) mvmt=(0.4183,-0.1052,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8739,-1.0166,0.4800) mvmt=(0.4183,-0.1052,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5781,1.5249,2.0997) mvmt=(0.1052,0.4183,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.3969,1.2849,1.9947) mvmt=(0.1052,0.4183,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.3969,-0.9263,0.6447) mvmt=(0.1052,0.4183,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.6111,3.2034,2.0000) mvmt=(0.4183,-0.1052,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.9239,3.2034,3.5000) mvmt=(0.4183,-0.1052,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.9240,3.2034,3.4800) mvmt=(0.4183,-0.1052,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.576,8.297,97.500) lpos=(2.924,3.203,3.480) lprev=(2.506,3.309,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9240,3.2034,3.4800) mvmt=(0.4183,-0.1052,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6111,3.2034,-1.0050) mvmt=(0.4183,-0.1052,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(4.9539,-0.0738,0.4850) mvmt=(0.4183,-0.1052,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8759,2.6159,-3.8650) mvmt=(0.4183,-0.1052,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.3590,2.6159,-3.8650) mvmt=(0.4183,-0.1052,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8739,-1.0166,0.4800) mvmt=(0.4183,-0.1052,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5781,1.5249,2.0997) mvmt=(0.1052,0.4183,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.3969,1.2849,1.9947) mvmt=(0.1052,0.4183,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.3969,-0.9263,0.6447) mvmt=(0.1052,0.4183,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.6111,3.2034,2.0000) mvmt=(0.4183,-0.1052,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.9239,3.2034,3.5000) mvmt=(0.4183,-0.1052,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Slid +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=4 halted=False +[push-back-disp] site=dispatch center=(2.9240,3.3086,3.2172) mvmt=(0.4183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.576,8.191,97.237) lpos=(2.924,3.309,3.217) lprev=(2.506,3.309,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9240,3.3086,3.2172) mvmt=(0.4183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9240,3.3086,3.2172) mvmt=(0.4183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6111,3.3086,-1.2678) mvmt=(0.4183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(4.9539,0.0314,0.2222) mvmt=(0.4183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8759,2.7211,-4.1278) mvmt=(0.4183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.3590,2.7211,-4.1278) mvmt=(0.4183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8739,-0.9114,0.2172) mvmt=(0.4183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.6834,1.5249,1.8369) mvmt=(0.0000,0.4183,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.2916,1.2849,1.7319) mvmt=(0.0000,0.4183,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.9240,3.3086,3.2172) mvmt=(0.4183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.576,8.191,97.237) lpos=(2.924,3.309,3.217) lprev=(2.506,3.309,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9240,3.3086,3.2172) mvmt=(0.4183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9240,3.3086,3.2172) mvmt=(0.4183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6111,3.3086,-1.2678) mvmt=(0.4183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9539,0.0314,0.2222) mvmt=(0.4183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8759,2.7211,-4.1278) mvmt=(0.4183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3590,2.7211,-4.1278) mvmt=(0.4183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8739,-0.9114,0.2172) mvmt=(0.4183,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6834,1.5249,1.8369) mvmt=(0.0000,0.4183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2916,1.2849,1.7319) mvmt=(0.0000,0.4183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2916,1.2849,1.7319) out=(0.2916,1.2849,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9240,3.3086,3.4653) mvmt=(0.4183,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.576,8.191,97.485) lpos=(2.924,3.309,3.465) lprev=(2.506,3.309,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9240,3.3086,3.4653) mvmt=(0.4183,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6111,3.3086,-1.0197) mvmt=(0.4183,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9539,0.0314,0.4703) mvmt=(0.4183,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8759,2.7211,-3.8797) mvmt=(0.4183,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3590,2.7211,-3.8797) mvmt=(0.4183,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8739,-0.9114,0.4653) mvmt=(0.4183,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6834,1.5249,2.0850) mvmt=(0.0000,0.4183,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2916,1.2849,1.9800) mvmt=(0.0000,0.4183,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2916,-0.9263,0.6300) mvmt=(0.0000,0.4183,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6111,3.3086,1.9853) mvmt=(0.4183,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9239,3.3086,3.4853) mvmt=(0.4183,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9240,3.3086,3.4653) mvmt=(0.4183,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.576,8.191,97.485) lpos=(2.924,3.309,3.465) lprev=(2.506,3.309,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9240,3.3086,3.4653) mvmt=(0.4183,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6111,3.3086,-1.0197) mvmt=(0.4183,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9539,0.0314,0.4703) mvmt=(0.4183,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8759,2.7211,-3.8797) mvmt=(0.4183,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3590,2.7211,-3.8797) mvmt=(0.4183,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8739,-0.9114,0.4653) mvmt=(0.4183,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6834,1.5249,2.0850) mvmt=(0.0000,0.4183,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2916,1.2849,1.9800) mvmt=(0.0000,0.4183,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2916,-0.9263,0.6300) mvmt=(0.0000,0.4183,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6111,3.3086,1.9853) mvmt=(0.4183,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9239,3.3086,3.4853) mvmt=(0.4183,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.2422,3.2172) mvmt=(0.0000,-0.0664,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.258,97.237) lpos=(2.506,3.242,3.217) lprev=(2.506,3.309,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2422,3.2172) mvmt=(0.0000,-0.0664,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2422,3.2172) mvmt=(0.0000,-0.0664,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2422,-1.2678) mvmt=(0.0000,-0.0664,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6547,-4.1278) mvmt=(0.0000,-0.0664,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6547,-4.1278) mvmt=(0.0000,-0.0664,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6170,1.1066,1.8369) mvmt=(0.0664,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3580,0.8666,1.7319) mvmt=(0.0664,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3580,-1.3446,0.3819) mvmt=(0.0664,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2422,1.7372) mvmt=(0.0000,-0.0664,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2422,3.2372) mvmt=(0.0000,-0.0664,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2422,2.4672) mvmt=(0.0000,-0.0664,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,8.258,96.487) lpos=(2.506,3.242,2.467) lprev=(2.506,3.309,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2422,2.4672) mvmt=(0.0000,-0.0664,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6170,1.1066,1.0869) mvmt=(0.0664,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3580,0.8666,0.9819) mvmt=(0.0664,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3580,0.8666,0.9819) out=(0.3580,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.2422,3.2172) mvmt=(0.0000,-0.0664,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.258,97.237) lpos=(2.506,3.242,3.217) lprev=(2.506,3.309,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2422,3.2172) mvmt=(0.0000,-0.0664,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2422,3.2172) mvmt=(0.0000,-0.0664,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2422,-1.2678) mvmt=(0.0000,-0.0664,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6547,-4.1278) mvmt=(0.0000,-0.0664,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6547,-4.1278) mvmt=(0.0000,-0.0664,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6170,1.1066,1.8369) mvmt=(0.0664,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3580,0.8666,1.7319) mvmt=(0.0664,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3580,-1.3446,0.3819) mvmt=(0.0664,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2422,1.7372) mvmt=(0.0000,-0.0664,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2422,3.2372) mvmt=(0.0000,-0.0664,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9280,3.2072,3.2172) mvmt=(0.4224,-0.0350,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.572,8.293,97.237) lpos=(2.928,3.207,3.217) lprev=(2.506,3.242,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9280,3.2072,3.2172) mvmt=(0.4224,-0.0350,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9280,3.2072,3.2172) mvmt=(0.4224,-0.0350,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9280,3.2072,3.2172) mvmt=(0.4224,-0.0350,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.9280,3.2072,3.2172) out=(2.9280,3.2072,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.572,8.293,97.237) lpos=(2.928,3.207,3.217) lprev=(2.506,3.242,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.9280,3.2072,3.4800) mvmt=(0.4224,-0.0350,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.572,8.293,97.500) lpos=(2.928,3.207,3.480) lprev=(2.506,3.242,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9280,3.2072,3.4800) mvmt=(0.4224,-0.0350,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6070,3.2072,-1.0050) mvmt=(0.4224,-0.0350,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(4.9580,-0.0700,0.4850) mvmt=(0.4224,-0.0350,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8800,2.6197,-3.8650) mvmt=(0.4224,-0.0350,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.3550,2.6197,-3.8650) mvmt=(0.4224,-0.0350,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8780,-1.0128,0.4800) mvmt=(0.4224,-0.0350,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5820,1.5290,2.0997) mvmt=(0.0350,0.4224,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.3930,1.2890,1.9947) mvmt=(0.0350,0.4224,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.3930,-0.9222,0.6447) mvmt=(0.0350,0.4224,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.6070,3.2072,2.0000) mvmt=(0.4224,-0.0350,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.9280,3.2072,3.5000) mvmt=(0.4224,-0.0350,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.9280,3.2072,3.4800) mvmt=(0.4224,-0.0350,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.572,8.293,97.500) lpos=(2.928,3.207,3.480) lprev=(2.506,3.242,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9280,3.2072,3.4800) mvmt=(0.4224,-0.0350,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6070,3.2072,-1.0050) mvmt=(0.4224,-0.0350,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(4.9580,-0.0700,0.4850) mvmt=(0.4224,-0.0350,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8800,2.6197,-3.8650) mvmt=(0.4224,-0.0350,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.3550,2.6197,-3.8650) mvmt=(0.4224,-0.0350,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8780,-1.0128,0.4800) mvmt=(0.4224,-0.0350,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5820,1.5290,2.0997) mvmt=(0.0350,0.4224,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.3930,1.2890,1.9947) mvmt=(0.0350,0.4224,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.3930,-0.9222,0.6447) mvmt=(0.0350,0.4224,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.6070,3.2072,2.0000) mvmt=(0.4224,-0.0350,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.9280,3.2072,3.5000) mvmt=(0.4224,-0.0350,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Slid +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=4 halted=False +[push-back-disp] site=dispatch center=(2.9280,3.2422,3.2172) mvmt=(0.4224,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.572,8.258,97.237) lpos=(2.928,3.242,3.217) lprev=(2.506,3.242,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9280,3.2422,3.2172) mvmt=(0.4224,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9280,3.2422,3.2172) mvmt=(0.4224,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6070,3.2422,-1.2678) mvmt=(0.4224,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(4.9580,-0.0350,0.2222) mvmt=(0.4224,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8800,2.6547,-4.1278) mvmt=(0.4224,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.3550,2.6547,-4.1278) mvmt=(0.4224,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8780,-0.9778,0.2172) mvmt=(0.4224,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.6170,1.5290,1.8369) mvmt=(0.0000,0.4224,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.3580,1.2890,1.7319) mvmt=(0.0000,0.4224,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.9280,3.2422,3.2172) mvmt=(0.4224,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.572,8.258,97.237) lpos=(2.928,3.242,3.217) lprev=(2.506,3.242,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9280,3.2422,3.2172) mvmt=(0.4224,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9280,3.2422,3.2172) mvmt=(0.4224,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6070,3.2422,-1.2678) mvmt=(0.4224,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9580,-0.0350,0.2222) mvmt=(0.4224,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8800,2.6547,-4.1278) mvmt=(0.4224,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3550,2.6547,-4.1278) mvmt=(0.4224,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8780,-0.9778,0.2172) mvmt=(0.4224,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6170,1.5290,1.8369) mvmt=(0.0000,0.4224,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3580,1.2890,1.7319) mvmt=(0.0000,0.4224,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3580,1.2890,1.7319) out=(0.3580,1.2890,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9280,3.2422,3.4653) mvmt=(0.4224,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.572,8.258,97.485) lpos=(2.928,3.242,3.465) lprev=(2.506,3.242,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9280,3.2422,3.4653) mvmt=(0.4224,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6070,3.2422,-1.0197) mvmt=(0.4224,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9580,-0.0350,0.4703) mvmt=(0.4224,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8800,2.6547,-3.8797) mvmt=(0.4224,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3550,2.6547,-3.8797) mvmt=(0.4224,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8780,-0.9778,0.4653) mvmt=(0.4224,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6170,1.5290,2.0850) mvmt=(0.0000,0.4224,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.3580,1.2890,1.9800) mvmt=(0.0000,0.4224,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.3580,-0.9222,0.6300) mvmt=(0.0000,0.4224,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6070,3.2422,1.9853) mvmt=(0.4224,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9280,3.2422,3.4853) mvmt=(0.4224,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9280,3.2422,3.4653) mvmt=(0.4224,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.572,8.258,97.485) lpos=(2.928,3.242,3.465) lprev=(2.506,3.242,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9280,3.2422,3.4653) mvmt=(0.4224,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6070,3.2422,-1.0197) mvmt=(0.4224,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9580,-0.0350,0.4703) mvmt=(0.4224,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8800,2.6547,-3.8797) mvmt=(0.4224,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3550,2.6547,-3.8797) mvmt=(0.4224,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8780,-0.9778,0.4653) mvmt=(0.4224,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6170,1.5290,2.0850) mvmt=(0.0000,0.4224,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.3580,1.2890,1.9800) mvmt=(0.0000,0.4224,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.3580,-0.9222,0.6300) mvmt=(0.0000,0.4224,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6070,3.2422,1.9853) mvmt=(0.4224,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9280,3.2422,3.4853) mvmt=(0.4224,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.2406,3.2172) mvmt=(0.0000,-0.0016,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.259,97.237) lpos=(2.506,3.241,3.217) lprev=(2.506,3.242,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2406,3.2172) mvmt=(0.0000,-0.0016,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2406,3.2172) mvmt=(0.0000,-0.0016,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2406,-1.2678) mvmt=(0.0000,-0.0016,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6531,-4.1278) mvmt=(0.0000,-0.0016,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6531,-4.1278) mvmt=(0.0000,-0.0016,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6154,1.1066,1.8369) mvmt=(0.0016,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3596,0.8666,1.7319) mvmt=(0.0016,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3596,-1.3446,0.3819) mvmt=(0.0016,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2406,1.7372) mvmt=(0.0000,-0.0016,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2406,3.2372) mvmt=(0.0000,-0.0016,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2406,2.4672) mvmt=(0.0000,-0.0016,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,8.259,96.487) lpos=(2.506,3.241,2.467) lprev=(2.506,3.242,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2406,2.4672) mvmt=(0.0000,-0.0016,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6154,1.1066,1.0869) mvmt=(0.0016,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3596,0.8666,0.9819) mvmt=(0.0016,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3596,0.8666,0.9819) out=(0.3596,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.2406,3.2172) mvmt=(0.0000,-0.0016,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.259,97.237) lpos=(2.506,3.241,3.217) lprev=(2.506,3.242,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2406,3.2172) mvmt=(0.0000,-0.0016,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2406,3.2172) mvmt=(0.0000,-0.0016,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2406,-1.2678) mvmt=(0.0000,-0.0016,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6531,-4.1278) mvmt=(0.0000,-0.0016,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6531,-4.1278) mvmt=(0.0000,-0.0016,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6154,1.1066,1.8369) mvmt=(0.0016,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3596,0.8666,1.7319) mvmt=(0.0016,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3596,-1.3446,0.3819) mvmt=(0.0016,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2406,1.7372) mvmt=(0.0000,-0.0016,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2406,3.2372) mvmt=(0.0000,-0.0016,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9266,3.2744,3.2172) mvmt=(0.4210,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.573,8.226,97.237) lpos=(2.927,3.274,3.217) lprev=(2.506,3.241,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9266,3.2744,3.2172) mvmt=(0.4210,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9266,3.2744,3.2172) mvmt=(0.4210,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6084,3.2744,-1.2678) mvmt=(0.4210,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9566,-0.0028,0.2222) mvmt=(0.4210,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8786,2.6869,-4.1278) mvmt=(0.4210,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3564,2.6869,-4.1278) mvmt=(0.4210,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8766,-0.9456,0.2172) mvmt=(0.4210,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6491,1.5276,1.8369) mvmt=(-0.0337,0.4210,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3259,1.2876,1.7319) mvmt=(-0.0337,0.4210,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9266,3.2744,3.2172) mvmt=(0.4210,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.573,8.226,97.237) lpos=(2.927,3.274,3.217) lprev=(2.506,3.241,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9266,3.2744,3.2172) mvmt=(0.4210,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9266,3.2744,3.2172) mvmt=(0.4210,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6084,3.2744,-1.2678) mvmt=(0.4210,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9566,-0.0028,0.2222) mvmt=(0.4210,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8786,2.6869,-4.1278) mvmt=(0.4210,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3564,2.6869,-4.1278) mvmt=(0.4210,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8766,-0.9456,0.2172) mvmt=(0.4210,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6491,1.5276,1.8369) mvmt=(-0.0337,0.4210,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3259,1.2876,1.7319) mvmt=(-0.0337,0.4210,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3259,1.2876,1.7319) out=(0.3259,1.2876,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9266,3.2744,3.4653) mvmt=(0.4210,0.0337,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.573,8.226,97.485) lpos=(2.927,3.274,3.465) lprev=(2.506,3.241,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9266,3.2744,3.4653) mvmt=(0.4210,0.0337,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6084,3.2744,-1.0197) mvmt=(0.4210,0.0337,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9566,-0.0028,0.4703) mvmt=(0.4210,0.0337,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8786,2.6869,-3.8797) mvmt=(0.4210,0.0337,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3564,2.6869,-3.8797) mvmt=(0.4210,0.0337,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8766,-0.9456,0.4653) mvmt=(0.4210,0.0337,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6491,1.5276,2.0850) mvmt=(-0.0337,0.4210,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.3259,1.2876,1.9800) mvmt=(-0.0337,0.4210,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.3259,-0.9237,0.6300) mvmt=(-0.0337,0.4210,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6084,3.2744,1.9853) mvmt=(0.4210,0.0337,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9266,3.2744,3.4853) mvmt=(0.4210,0.0337,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9266,3.2744,3.4653) mvmt=(0.4210,0.0337,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.573,8.226,97.485) lpos=(2.927,3.274,3.465) lprev=(2.506,3.241,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9266,3.2744,3.4653) mvmt=(0.4210,0.0337,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6084,3.2744,-1.0197) mvmt=(0.4210,0.0337,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9566,-0.0028,0.4703) mvmt=(0.4210,0.0337,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8786,2.6869,-3.8797) mvmt=(0.4210,0.0337,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3564,2.6869,-3.8797) mvmt=(0.4210,0.0337,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8766,-0.9456,0.4653) mvmt=(0.4210,0.0337,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6491,1.5276,2.0850) mvmt=(-0.0337,0.4210,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.3259,1.2876,1.9800) mvmt=(-0.0337,0.4210,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.3259,-0.9237,0.6300) mvmt=(-0.0337,0.4210,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6084,3.2744,1.9853) mvmt=(0.4210,0.0337,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9266,3.2744,3.4853) mvmt=(0.4210,0.0337,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.5056,3.2744,3.2172) mvmt=(0.0000,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.226,97.237) lpos=(2.506,3.274,3.217) lprev=(2.506,3.241,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2744,3.2172) mvmt=(0.0000,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2744,3.2172) mvmt=(0.0000,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2744,-1.2678) mvmt=(0.0000,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6869,-4.1278) mvmt=(0.0000,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6869,-4.1278) mvmt=(0.0000,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6491,1.1066,1.8369) mvmt=(-0.0337,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.3259,0.8666,1.7319) mvmt=(-0.0337,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.3259,-1.3446,0.3819) mvmt=(-0.0337,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2744,1.7372) mvmt=(0.0000,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2744,3.2372) mvmt=(0.0000,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2744,2.4672) mvmt=(0.0000,0.0337,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,8.226,96.487) lpos=(2.506,3.274,2.467) lprev=(2.506,3.241,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2744,2.4672) mvmt=(0.0000,0.0337,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6491,1.1066,1.0869) mvmt=(-0.0337,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3259,0.8666,0.9819) mvmt=(-0.0337,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3259,0.8666,0.9819) out=(0.3259,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.2744,3.2172) mvmt=(0.0000,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.226,97.237) lpos=(2.506,3.274,3.217) lprev=(2.506,3.241,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2744,3.2172) mvmt=(0.0000,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2744,3.2172) mvmt=(0.0000,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2744,-1.2678) mvmt=(0.0000,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6869,-4.1278) mvmt=(0.0000,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6869,-4.1278) mvmt=(0.0000,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6491,1.1066,1.8369) mvmt=(-0.0337,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3259,0.8666,1.7319) mvmt=(-0.0337,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3259,-1.3446,0.3819) mvmt=(-0.0337,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2744,1.7372) mvmt=(0.0000,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2744,3.2372) mvmt=(0.0000,0.0337,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.3440,3.2172) mvmt=(0.0000,0.0696,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.156,97.237) lpos=(2.506,3.344,3.217) lprev=(2.506,3.274,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.3440,3.2172) mvmt=(0.0000,0.0696,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.3440,3.2172) mvmt=(0.0000,0.0696,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.3440,-1.2678) mvmt=(0.0000,0.0696,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.7565,-4.1278) mvmt=(-0.0000,0.0696,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.7565,-4.1278) mvmt=(-0.0000,0.0696,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7188,1.1066,1.8369) mvmt=(-0.0696,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2562,0.8666,1.7319) mvmt=(-0.0696,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2562,-1.3446,0.3819) mvmt=(-0.0696,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.3440,1.7372) mvmt=(0.0000,0.0696,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.3440,3.2372) mvmt=(0.0000,0.0696,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.3440,2.4672) mvmt=(0.0000,0.0696,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,8.156,96.487) lpos=(2.506,3.344,2.467) lprev=(2.506,3.274,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.3440,2.4672) mvmt=(0.0000,0.0696,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7188,1.1066,1.0869) mvmt=(-0.0696,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2562,0.8666,0.9819) mvmt=(-0.0696,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2562,0.8666,0.9819) out=(0.2562,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.3440,3.2172) mvmt=(0.0000,0.0696,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.156,97.237) lpos=(2.506,3.344,3.217) lprev=(2.506,3.274,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.3440,3.2172) mvmt=(0.0000,0.0696,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.3440,3.2172) mvmt=(0.0000,0.0696,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.3440,-1.2678) mvmt=(0.0000,0.0696,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.7565,-4.1278) mvmt=(-0.0000,0.0696,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.7565,-4.1278) mvmt=(-0.0000,0.0696,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7188,1.1066,1.8369) mvmt=(-0.0696,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2562,0.8666,1.7319) mvmt=(-0.0696,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2562,-1.3446,0.3819) mvmt=(-0.0696,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.3440,1.7372) mvmt=(0.0000,0.0696,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.3440,3.2372) mvmt=(0.0000,0.0696,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9062,3.4449,3.2172) mvmt=(0.4006,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.594,8.055,97.237) lpos=(2.906,3.445,3.217) lprev=(2.506,3.344,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9062,3.4449,3.2172) mvmt=(0.4006,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9062,3.4449,3.2172) mvmt=(0.4006,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6288,3.4449,-1.2678) mvmt=(0.4006,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9362,0.1677,0.2222) mvmt=(0.4006,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8582,2.8574,-4.1278) mvmt=(0.4006,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3768,2.8574,-4.1278) mvmt=(0.4006,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8562,-0.7751,0.2172) mvmt=(0.4006,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8196,1.5072,1.8369) mvmt=(-0.1009,0.4006,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1554,1.2672,1.7319) mvmt=(-0.1009,0.4006,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9062,3.4449,3.2172) mvmt=(0.4006,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.594,8.055,97.237) lpos=(2.906,3.445,3.217) lprev=(2.506,3.344,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9062,3.4449,3.2172) mvmt=(0.4006,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9062,3.4449,3.2172) mvmt=(0.4006,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6288,3.4449,-1.2678) mvmt=(0.4006,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9362,0.1677,0.2222) mvmt=(0.4006,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8582,2.8574,-4.1278) mvmt=(0.4006,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3768,2.8574,-4.1278) mvmt=(0.4006,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8562,-0.7751,0.2172) mvmt=(0.4006,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8196,1.5072,1.8369) mvmt=(-0.1009,0.4006,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1554,1.2672,1.7319) mvmt=(-0.1009,0.4006,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1554,1.2672,1.7319) out=(0.1554,1.2672,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9062,3.4449,3.4653) mvmt=(0.4006,0.1009,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.594,8.055,97.485) lpos=(2.906,3.445,3.465) lprev=(2.506,3.344,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9062,3.4449,3.4653) mvmt=(0.4006,0.1009,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6288,3.4449,-1.0197) mvmt=(0.4006,0.1009,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9362,0.1677,0.4703) mvmt=(0.4006,0.1009,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8582,2.8574,-3.8797) mvmt=(0.4006,0.1009,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3768,2.8574,-3.8797) mvmt=(0.4006,0.1009,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8562,-0.7751,0.4653) mvmt=(0.4006,0.1009,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.8196,1.5072,2.0850) mvmt=(-0.1009,0.4006,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1554,1.2672,1.9800) mvmt=(-0.1009,0.4006,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1554,-0.9441,0.6300) mvmt=(-0.1009,0.4006,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6288,3.4449,1.9853) mvmt=(0.4006,0.1009,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9062,3.4449,3.4853) mvmt=(0.4006,0.1009,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9062,3.4449,3.4653) mvmt=(0.4006,0.1009,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.594,8.055,97.485) lpos=(2.906,3.445,3.465) lprev=(2.506,3.344,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9062,3.4449,3.4653) mvmt=(0.4006,0.1009,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6288,3.4449,-1.0197) mvmt=(0.4006,0.1009,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9362,0.1677,0.4703) mvmt=(0.4006,0.1009,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8582,2.8574,-3.8797) mvmt=(0.4006,0.1009,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3768,2.8574,-3.8797) mvmt=(0.4006,0.1009,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8562,-0.7751,0.4653) mvmt=(0.4006,0.1009,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.8196,1.5072,2.0850) mvmt=(-0.1009,0.4006,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1554,1.2672,1.9800) mvmt=(-0.1009,0.4006,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1554,-0.9441,0.6300) mvmt=(-0.1009,0.4006,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6288,3.4449,1.9853) mvmt=(0.4006,0.1009,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9062,3.4449,3.4853) mvmt=(0.4006,0.1009,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.5056,3.4449,3.2172) mvmt=(0.0000,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.055,97.237) lpos=(2.506,3.445,3.217) lprev=(2.506,3.344,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.4449,3.2172) mvmt=(0.0000,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.4449,3.2172) mvmt=(0.0000,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.4449,-1.2678) mvmt=(0.0000,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.8574,-4.1278) mvmt=(0.0000,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.8574,-4.1278) mvmt=(0.0000,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.8196,1.1066,1.8369) mvmt=(-0.1009,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1554,0.8666,1.7319) mvmt=(-0.1009,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1554,-1.3446,0.3819) mvmt=(-0.1009,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.4449,1.7372) mvmt=(0.0000,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.4449,3.2372) mvmt=(0.0000,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.4449,2.4672) mvmt=(0.0000,0.1009,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,8.055,96.487) lpos=(2.506,3.445,2.467) lprev=(2.506,3.344,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.4449,2.4672) mvmt=(0.0000,0.1009,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8196,1.1066,1.0869) mvmt=(-0.1009,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1554,0.8666,0.9819) mvmt=(-0.1009,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1554,0.8666,0.9819) out=(0.1554,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.4449,3.2172) mvmt=(0.0000,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.055,97.237) lpos=(2.506,3.445,3.217) lprev=(2.506,3.344,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.4449,3.2172) mvmt=(0.0000,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.4449,3.2172) mvmt=(0.0000,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.4449,-1.2678) mvmt=(0.0000,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.8574,-4.1278) mvmt=(0.0000,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.8574,-4.1278) mvmt=(0.0000,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8196,1.1066,1.8369) mvmt=(-0.1009,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1554,0.8666,1.7319) mvmt=(-0.1009,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1554,-1.3446,0.3819) mvmt=(-0.1009,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.4449,1.7372) mvmt=(0.0000,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.4449,3.2372) mvmt=(0.0000,0.1009,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.5875,3.2172) mvmt=(0.0000,0.1426,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.912,97.237) lpos=(2.506,3.588,3.217) lprev=(2.506,3.445,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.5875,3.2172) mvmt=(0.0000,0.1426,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.5875,3.2172) mvmt=(0.0000,0.1426,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.5875,-1.2678) mvmt=(0.0000,0.1426,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.0000,-4.1278) mvmt=(0.0000,0.1426,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.0000,-4.1278) mvmt=(0.0000,0.1426,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9623,1.1066,1.8369) mvmt=(-0.1426,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0127,0.8666,1.7319) mvmt=(-0.1426,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0127,-1.3446,0.3819) mvmt=(-0.1426,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.5875,1.7372) mvmt=(0.0000,0.1426,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.5875,3.2372) mvmt=(0.0000,0.1426,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.5875,2.4672) mvmt=(0.0000,0.1426,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,7.912,96.487) lpos=(2.506,3.588,2.467) lprev=(2.506,3.445,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.5875,2.4672) mvmt=(0.0000,0.1426,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9623,1.1066,1.0869) mvmt=(-0.1426,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0127,0.8666,0.9819) mvmt=(-0.1426,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0127,0.8666,0.9819) out=(0.0127,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.5875,3.2172) mvmt=(0.0000,0.1426,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.912,97.237) lpos=(2.506,3.588,3.217) lprev=(2.506,3.445,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.5875,3.2172) mvmt=(0.0000,0.1426,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.5875,3.2172) mvmt=(0.0000,0.1426,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.5875,-1.2678) mvmt=(0.0000,0.1426,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.0000,-4.1278) mvmt=(0.0000,0.1426,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.0000,-4.1278) mvmt=(0.0000,0.1426,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9623,1.1066,1.8369) mvmt=(-0.1426,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0127,0.8666,1.7319) mvmt=(-0.1426,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0127,-1.3446,0.3819) mvmt=(-0.1426,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.5875,1.7372) mvmt=(0.0000,0.1426,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.5875,3.2372) mvmt=(0.0000,0.1426,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8885,3.7570,3.2172) mvmt=(0.3829,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.611,7.743,97.237) lpos=(2.889,3.757,3.217) lprev=(2.506,3.588,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8885,3.7570,3.2172) mvmt=(0.3829,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8885,3.7570,3.2172) mvmt=(0.3829,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6465,3.7570,-1.2678) mvmt=(0.3829,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9185,0.4798,0.2222) mvmt=(0.3829,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8405,3.1695,-4.1278) mvmt=(0.3829,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3945,3.1695,-4.1278) mvmt=(0.3829,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8385,-0.4630,0.2172) mvmt=(0.3829,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1317,1.4895,1.8369) mvmt=(-0.1695,0.3829,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1567,1.2495,1.7319) mvmt=(-0.1695,0.3829,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8885,3.7570,3.2172) mvmt=(0.3829,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.611,7.743,97.237) lpos=(2.889,3.757,3.217) lprev=(2.506,3.588,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8885,3.7570,3.2172) mvmt=(0.3829,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8885,3.7570,3.2172) mvmt=(0.3829,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6465,3.7570,-1.2678) mvmt=(0.3829,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9185,0.4798,0.2222) mvmt=(0.3829,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8405,3.1695,-4.1278) mvmt=(0.3829,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3945,3.1695,-4.1278) mvmt=(0.3829,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8385,-0.4630,0.2172) mvmt=(0.3829,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1317,1.4895,1.8369) mvmt=(-0.1695,0.3829,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1567,1.2495,1.7319) mvmt=(-0.1695,0.3829,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1567,1.2495,1.7319) out=(-0.1567,1.2495,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.8885,3.7570,3.4653) mvmt=(0.3829,0.1695,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.611,7.743,97.485) lpos=(2.889,3.757,3.465) lprev=(2.506,3.588,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8885,3.7570,3.4653) mvmt=(0.3829,0.1695,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6465,3.7570,-1.0197) mvmt=(0.3829,0.1695,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9185,0.4798,0.4703) mvmt=(0.3829,0.1695,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8405,3.1695,-3.8797) mvmt=(0.3829,0.1695,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3945,3.1695,-3.8797) mvmt=(0.3829,0.1695,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8385,-0.4630,0.4653) mvmt=(0.3829,0.1695,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.1317,1.4895,2.0850) mvmt=(-0.1695,0.3829,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.1567,1.2495,1.9800) mvmt=(-0.1695,0.3829,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.1567,-0.9617,0.6300) mvmt=(-0.1695,0.3829,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6465,3.7570,1.9853) mvmt=(0.3829,0.1695,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8885,3.7570,3.4853) mvmt=(0.3829,0.1695,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8885,3.7570,3.4653) mvmt=(0.3829,0.1695,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.611,7.743,97.485) lpos=(2.889,3.757,3.465) lprev=(2.506,3.588,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8885,3.7570,3.4653) mvmt=(0.3829,0.1695,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6465,3.7570,-1.0197) mvmt=(0.3829,0.1695,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9185,0.4798,0.4703) mvmt=(0.3829,0.1695,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8405,3.1695,-3.8797) mvmt=(0.3829,0.1695,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3945,3.1695,-3.8797) mvmt=(0.3829,0.1695,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8385,-0.4630,0.4653) mvmt=(0.3829,0.1695,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.1317,1.4895,2.0850) mvmt=(-0.1695,0.3829,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.1567,1.2495,1.9800) mvmt=(-0.1695,0.3829,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.1567,-0.9617,0.6300) mvmt=(-0.1695,0.3829,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6465,3.7570,1.9853) mvmt=(0.3829,0.1695,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8885,3.7570,3.4853) mvmt=(0.3829,0.1695,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.5056,3.7570,3.2172) mvmt=(0.0000,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.743,97.237) lpos=(2.506,3.757,3.217) lprev=(2.506,3.588,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.7570,3.2172) mvmt=(0.0000,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.7570,3.2172) mvmt=(0.0000,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.7570,-1.2678) mvmt=(0.0000,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.1695,-4.1278) mvmt=(0.0000,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.1695,-4.1278) mvmt=(0.0000,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.1317,1.1066,1.8369) mvmt=(-0.1695,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.1567,0.8666,1.7319) mvmt=(-0.1695,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.1567,-1.3446,0.3819) mvmt=(-0.1695,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.7570,1.7372) mvmt=(0.0000,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.7570,3.2372) mvmt=(0.0000,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.7570,2.4672) mvmt=(0.0000,0.1695,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,7.743,96.487) lpos=(2.506,3.757,2.467) lprev=(2.506,3.588,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.7570,2.4672) mvmt=(0.0000,0.1695,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1317,1.1066,1.0869) mvmt=(-0.1695,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1567,0.8666,0.9819) mvmt=(-0.1695,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1567,0.8666,0.9819) out=(-0.1567,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.7570,3.2172) mvmt=(0.0000,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.743,97.237) lpos=(2.506,3.757,3.217) lprev=(2.506,3.588,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.7570,3.2172) mvmt=(0.0000,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.7570,3.2172) mvmt=(0.0000,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.7570,-1.2678) mvmt=(0.0000,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.1695,-4.1278) mvmt=(0.0000,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.1695,-4.1278) mvmt=(0.0000,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1317,1.1066,1.8369) mvmt=(-0.1695,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1567,0.8666,1.7319) mvmt=(-0.1695,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1567,-1.3446,0.3819) mvmt=(-0.1695,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.7570,1.7372) mvmt=(0.0000,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.7570,3.2372) mvmt=(0.0000,0.1695,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9570,3.2172) mvmt=(0.0000,0.2000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.543,97.237) lpos=(2.506,3.957,3.217) lprev=(2.506,3.757,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9570,3.2172) mvmt=(0.0000,0.2000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.9570,3.2172) mvmt=(0.0000,0.2000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9570,-1.2678) mvmt=(0.0000,0.2000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3695,-4.1278) mvmt=(0.0000,0.2000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.2630,0.2172) mvmt=(0.0000,0.2000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.1066,1.8369) mvmt=(-0.2000,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,0.8666,1.7319) mvmt=(-0.2000,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,-1.3446,0.3819) mvmt=(-0.2000,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9570,1.7372) mvmt=(0.0000,0.2000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9570,3.2372) mvmt=(0.0000,0.2000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9570,2.4672) mvmt=(0.0000,0.2000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,7.543,96.487) lpos=(2.506,3.957,2.467) lprev=(2.506,3.757,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9570,2.4672) mvmt=(0.0000,0.2000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3317,1.1066,1.0869) mvmt=(-0.2000,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,0.8666,0.9819) mvmt=(-0.2000,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3567,0.8666,0.9819) out=(-0.3567,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.9570,3.2172) mvmt=(0.0000,0.2000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.543,97.237) lpos=(2.506,3.957,3.217) lprev=(2.506,3.757,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9570,3.2172) mvmt=(0.0000,0.2000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.9570,3.2172) mvmt=(0.0000,0.2000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9570,-1.2678) mvmt=(0.0000,0.2000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3695,-4.1278) mvmt=(0.0000,0.2000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.2630,0.2172) mvmt=(0.0000,0.2000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.1066,1.8369) mvmt=(-0.2000,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,0.8666,1.7319) mvmt=(-0.2000,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,-1.3446,0.3819) mvmt=(-0.2000,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9570,1.7372) mvmt=(0.0000,0.2000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9570,3.2372) mvmt=(0.0000,0.2000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8628,4.1832,3.2172) mvmt=(0.3572,0.2262,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.637,7.317,97.237) lpos=(2.863,4.183,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8628,4.1832,3.2172) mvmt=(0.3572,0.2262,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8628,4.1832,3.2172) mvmt=(0.3572,0.2262,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.8628,4.1832,3.2172) out=(2.8628,4.1832,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.637,7.317,97.237) lpos=(2.863,4.183,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.8628,4.1832,3.4800) mvmt=(0.3572,0.2262,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.637,7.317,97.500) lpos=(2.863,4.183,3.480) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8628,4.1832,3.4800) mvmt=(0.3572,0.2262,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6722,4.1832,-1.0050) mvmt=(0.3572,0.2262,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(4.8928,0.9060,0.4850) mvmt=(0.3572,0.2262,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8148,3.5957,-3.8650) mvmt=(0.3572,0.2262,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.4202,3.5957,-3.8650) mvmt=(0.3572,0.2262,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8128,-0.0368,0.4800) mvmt=(0.3572,0.2262,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.5579,1.4638,2.0997) mvmt=(-0.2262,0.3572,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5829,1.2238,1.9947) mvmt=(-0.2262,0.3572,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5829,-0.9875,0.6447) mvmt=(-0.2262,0.3572,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.6722,4.1832,2.0000) mvmt=(0.3572,0.2262,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.8628,4.1832,3.5000) mvmt=(0.3572,0.2262,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.8628,4.1832,3.4800) mvmt=(0.3572,0.2262,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.637,7.317,97.500) lpos=(2.863,4.183,3.480) lprev=(2.506,3.957,3.217) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=Slid +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=4 halted=False +[push-back-disp] site=dispatch center=(2.8628,3.9570,3.2172) mvmt=(0.3572,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.637,7.543,97.237) lpos=(2.863,3.957,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8628,3.9570,3.2172) mvmt=(0.3572,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8628,3.9570,3.2172) mvmt=(0.3572,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6722,3.9570,-1.2678) mvmt=(0.3572,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8148,3.3695,-4.1278) mvmt=(0.3572,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.4202,3.3695,-4.1278) mvmt=(0.3572,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8128,-0.2630,0.2172) mvmt=(0.3572,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.4638,1.8369) mvmt=(0.0000,0.3572,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2238,1.7319) mvmt=(0.0000,0.3572,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.8628,3.9570,3.2172) mvmt=(0.3572,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.637,7.543,97.237) lpos=(2.863,3.957,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8628,3.9570,3.2172) mvmt=(0.3572,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8628,3.9570,3.2172) mvmt=(0.3572,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6722,3.9570,-1.2678) mvmt=(0.3572,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8148,3.3695,-4.1278) mvmt=(0.3572,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4202,3.3695,-4.1278) mvmt=(0.3572,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8128,-0.2630,0.2172) mvmt=(0.3572,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.4638,1.8369) mvmt=(0.0000,0.3572,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2238,1.7319) mvmt=(0.0000,0.3572,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3567,1.2238,1.7319) out=(-0.3567,1.2238,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.8628,3.9570,3.4653) mvmt=(0.3572,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.637,7.543,97.485) lpos=(2.863,3.957,3.465) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8628,3.9570,3.4653) mvmt=(0.3572,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6722,3.9570,-1.0197) mvmt=(0.3572,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.8928,0.6798,0.4703) mvmt=(0.3572,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8148,3.3695,-3.8797) mvmt=(0.3572,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4202,3.3695,-3.8797) mvmt=(0.3572,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8128,-0.2630,0.4653) mvmt=(0.3572,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.4638,2.0850) mvmt=(0.0000,0.3572,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2238,1.9800) mvmt=(0.0000,0.3572,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,-0.9875,0.6300) mvmt=(0.0000,0.3572,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6722,3.9570,1.9853) mvmt=(0.3572,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8628,3.9570,3.4853) mvmt=(0.3572,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8628,3.9570,3.4653) mvmt=(0.3572,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.637,7.543,97.485) lpos=(2.863,3.957,3.465) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8628,3.9570,3.4653) mvmt=(0.3572,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6722,3.9570,-1.0197) mvmt=(0.3572,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.8928,0.6798,0.4703) mvmt=(0.3572,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8148,3.3695,-3.8797) mvmt=(0.3572,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4202,3.3695,-3.8797) mvmt=(0.3572,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8128,-0.2630,0.4653) mvmt=(0.3572,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.4638,2.0850) mvmt=(0.0000,0.3572,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2238,1.9800) mvmt=(0.0000,0.3572,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,-0.9875,0.6300) mvmt=(0.0000,0.3572,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6722,3.9570,1.9853) mvmt=(0.3572,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8628,3.9570,3.4853) mvmt=(0.3572,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,4.1811,3.2172) mvmt=(0.0000,0.2241,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.319,97.237) lpos=(2.506,4.181,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.1811,3.2172) mvmt=(0.0000,0.2241,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.1811,3.2172) mvmt=(0.0000,0.2241,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,4.1811,3.2172) out=(2.5056,4.1811,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.319,97.237) lpos=(2.506,4.181,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.1811,3.4800) mvmt=(0.0000,0.2241,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.319,97.500) lpos=(2.506,4.181,3.480) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.1811,3.4800) mvmt=(0.0000,0.2241,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.1811,-1.0050) mvmt=(0.0000,0.2241,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.5936,-3.8650) mvmt=(0.0000,0.2241,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.5936,-3.8650) mvmt=(0.0000,0.2241,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.0389,0.4800) mvmt=(0.0000,0.2241,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.5558,1.1066,2.0997) mvmt=(-0.2241,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5808,0.8666,1.9947) mvmt=(-0.2241,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5808,-1.3446,0.6447) mvmt=(-0.2241,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.1811,2.0000) mvmt=(0.0000,0.2241,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.1811,3.5000) mvmt=(0.0000,0.2241,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.1811,3.4800) mvmt=(0.0000,0.2241,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.319,97.500) lpos=(2.506,4.181,3.480) lprev=(2.506,3.957,3.217) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.8762,3.9570,3.2172) mvmt=(0.3706,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.624,7.543,97.237) lpos=(2.876,3.957,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8762,3.9570,3.2172) mvmt=(0.3706,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8762,3.9570,3.2172) mvmt=(0.3706,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6588,3.9570,-1.2678) mvmt=(0.3706,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8282,3.3695,-4.1278) mvmt=(0.3706,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4068,3.3695,-4.1278) mvmt=(0.3706,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8262,-0.2630,0.2172) mvmt=(0.3706,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.4772,1.8369) mvmt=(0.0000,0.3706,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2372,1.7319) mvmt=(0.0000,0.3706,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8762,3.9570,3.2172) mvmt=(0.3706,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.624,7.543,97.237) lpos=(2.876,3.957,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8762,3.9570,3.2172) mvmt=(0.3706,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8762,3.9570,3.2172) mvmt=(0.3706,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6588,3.9570,-1.2678) mvmt=(0.3706,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8282,3.3695,-4.1278) mvmt=(0.3706,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4068,3.3695,-4.1278) mvmt=(0.3706,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8262,-0.2630,0.2172) mvmt=(0.3706,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.4772,1.8369) mvmt=(0.0000,0.3706,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2372,1.7319) mvmt=(0.0000,0.3706,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3567,1.2372,1.7319) out=(-0.3567,1.2372,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.8762,3.9570,3.4653) mvmt=(0.3706,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.624,7.543,97.485) lpos=(2.876,3.957,3.465) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8762,3.9570,3.4653) mvmt=(0.3706,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6588,3.9570,-1.0197) mvmt=(0.3706,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9062,0.6798,0.4703) mvmt=(0.3706,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8282,3.3695,-3.8797) mvmt=(0.3706,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4068,3.3695,-3.8797) mvmt=(0.3706,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8262,-0.2630,0.4653) mvmt=(0.3706,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.4772,2.0850) mvmt=(0.0000,0.3706,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2372,1.9800) mvmt=(0.0000,0.3706,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,-0.9741,0.6300) mvmt=(0.0000,0.3706,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6588,3.9570,1.9853) mvmt=(0.3706,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8762,3.9570,3.4853) mvmt=(0.3706,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8762,3.9570,3.4653) mvmt=(0.3706,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.624,7.543,97.485) lpos=(2.876,3.957,3.465) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8762,3.9570,3.4653) mvmt=(0.3706,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6588,3.9570,-1.0197) mvmt=(0.3706,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9062,0.6798,0.4703) mvmt=(0.3706,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8282,3.3695,-3.8797) mvmt=(0.3706,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4068,3.3695,-3.8797) mvmt=(0.3706,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8262,-0.2630,0.4653) mvmt=(0.3706,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.4772,2.0850) mvmt=(0.0000,0.3706,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2372,1.9800) mvmt=(0.0000,0.3706,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,-0.9741,0.6300) mvmt=(0.0000,0.3706,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6588,3.9570,1.9853) mvmt=(0.3706,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8762,3.9570,3.4853) mvmt=(0.3706,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,4.1792,3.2172) mvmt=(0.0000,0.2222,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.321,97.237) lpos=(2.506,4.179,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.1792,3.2172) mvmt=(0.0000,0.2222,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.1792,3.2172) mvmt=(0.0000,0.2222,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,4.1792,3.2172) out=(2.5056,4.1792,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.321,97.237) lpos=(2.506,4.179,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.1792,3.4800) mvmt=(0.0000,0.2222,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.321,97.500) lpos=(2.506,4.179,3.480) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.1792,3.4800) mvmt=(0.0000,0.2222,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.1792,-1.0050) mvmt=(0.0000,0.2222,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.5917,-3.8650) mvmt=(0.0000,0.2222,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.5917,-3.8650) mvmt=(0.0000,0.2222,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.0408,0.4800) mvmt=(0.0000,0.2222,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.5540,1.1066,2.0997) mvmt=(-0.2222,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5790,0.8666,1.9947) mvmt=(-0.2222,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5790,-1.3446,0.6447) mvmt=(-0.2222,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.1792,2.0000) mvmt=(0.0000,0.2222,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.1792,3.5000) mvmt=(0.0000,0.2222,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.1792,3.4800) mvmt=(0.0000,0.2222,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.321,97.500) lpos=(2.506,4.179,3.480) lprev=(2.506,3.957,3.217) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.8537,3.9570,3.2172) mvmt=(0.3481,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.646,7.543,97.237) lpos=(2.854,3.957,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8537,3.9570,3.2172) mvmt=(0.3481,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8537,3.9570,3.2172) mvmt=(0.3481,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6813,3.9570,-1.2678) mvmt=(0.3481,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8057,3.3695,-4.1278) mvmt=(0.3481,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4293,3.3695,-4.1278) mvmt=(0.3481,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8037,-0.2630,0.2172) mvmt=(0.3481,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.4547,1.8369) mvmt=(0.0000,0.3481,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2147,1.7319) mvmt=(0.0000,0.3481,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8537,3.9570,3.2172) mvmt=(0.3481,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.646,7.543,97.237) lpos=(2.854,3.957,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8537,3.9570,3.2172) mvmt=(0.3481,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8537,3.9570,3.2172) mvmt=(0.3481,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6813,3.9570,-1.2678) mvmt=(0.3481,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8057,3.3695,-4.1278) mvmt=(0.3481,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4293,3.3695,-4.1278) mvmt=(0.3481,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8037,-0.2630,0.2172) mvmt=(0.3481,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.4547,1.8369) mvmt=(0.0000,0.3481,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2147,1.7319) mvmt=(0.0000,0.3481,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3567,1.2147,1.7319) out=(-0.3567,1.2147,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.8537,3.9570,3.4653) mvmt=(0.3481,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.646,7.543,97.485) lpos=(2.854,3.957,3.465) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8537,3.9570,3.4653) mvmt=(0.3481,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6813,3.9570,-1.0197) mvmt=(0.3481,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.8837,0.6798,0.4703) mvmt=(0.3481,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8057,3.3695,-3.8797) mvmt=(0.3481,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4293,3.3695,-3.8797) mvmt=(0.3481,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8037,-0.2630,0.4653) mvmt=(0.3481,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.4547,2.0850) mvmt=(0.0000,0.3481,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2147,1.9800) mvmt=(0.0000,0.3481,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,-0.9966,0.6300) mvmt=(0.0000,0.3481,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6813,3.9570,1.9853) mvmt=(0.3481,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8537,3.9570,3.4853) mvmt=(0.3481,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8537,3.9570,3.4653) mvmt=(0.3481,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.646,7.543,97.485) lpos=(2.854,3.957,3.465) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8537,3.9570,3.4653) mvmt=(0.3481,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6813,3.9570,-1.0197) mvmt=(0.3481,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.8837,0.6798,0.4703) mvmt=(0.3481,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8057,3.3695,-3.8797) mvmt=(0.3481,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4293,3.3695,-3.8797) mvmt=(0.3481,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8037,-0.2630,0.4653) mvmt=(0.3481,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.4547,2.0850) mvmt=(0.0000,0.3481,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2147,1.9800) mvmt=(0.0000,0.3481,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,-0.9966,0.6300) mvmt=(0.0000,0.3481,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6813,3.9570,1.9853) mvmt=(0.3481,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8537,3.9570,3.4853) mvmt=(0.3481,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,4.1793,3.2172) mvmt=(0.0000,0.2223,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.321,97.237) lpos=(2.506,4.179,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.1793,3.2172) mvmt=(0.0000,0.2223,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.1793,3.2172) mvmt=(0.0000,0.2223,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,4.1793,3.2172) out=(2.5056,4.1793,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.321,97.237) lpos=(2.506,4.179,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.1793,3.4800) mvmt=(0.0000,0.2223,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.321,97.500) lpos=(2.506,4.179,3.480) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.1793,3.4800) mvmt=(0.0000,0.2223,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.1793,-1.0050) mvmt=(0.0000,0.2223,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.5918,-3.8650) mvmt=(0.0000,0.2223,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.5918,-3.8650) mvmt=(0.0000,0.2223,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.0407,0.4800) mvmt=(0.0000,0.2223,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.5540,1.1066,2.0997) mvmt=(-0.2223,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5790,0.8666,1.9947) mvmt=(-0.2223,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5790,-1.3446,0.6447) mvmt=(-0.2223,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.1793,2.0000) mvmt=(0.0000,0.2223,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.1793,3.5000) mvmt=(0.0000,0.2223,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.1793,3.4800) mvmt=(0.0000,0.2223,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.321,97.500) lpos=(2.506,4.179,3.480) lprev=(2.506,3.957,3.217) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.8601,3.9570,3.2172) mvmt=(0.3544,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.640,7.543,97.237) lpos=(2.860,3.957,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8601,3.9570,3.2172) mvmt=(0.3544,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8601,3.9570,3.2172) mvmt=(0.3544,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6749,3.9570,-1.2678) mvmt=(0.3544,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8121,3.3695,-4.1278) mvmt=(0.3544,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4229,3.3695,-4.1278) mvmt=(0.3544,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8101,-0.2630,0.2172) mvmt=(0.3544,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.4611,1.8369) mvmt=(0.0000,0.3544,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2211,1.7319) mvmt=(0.0000,0.3544,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8601,3.9570,3.2172) mvmt=(0.3544,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.640,7.543,97.237) lpos=(2.860,3.957,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8601,3.9570,3.2172) mvmt=(0.3544,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8601,3.9570,3.2172) mvmt=(0.3544,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6749,3.9570,-1.2678) mvmt=(0.3544,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8121,3.3695,-4.1278) mvmt=(0.3544,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4229,3.3695,-4.1278) mvmt=(0.3544,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8101,-0.2630,0.2172) mvmt=(0.3544,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.4611,1.8369) mvmt=(0.0000,0.3544,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2211,1.7319) mvmt=(0.0000,0.3544,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3567,1.2211,1.7319) out=(-0.3567,1.2211,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.8601,3.9570,3.4653) mvmt=(0.3544,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.640,7.543,97.485) lpos=(2.860,3.957,3.465) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8601,3.9570,3.4653) mvmt=(0.3544,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6749,3.9570,-1.0197) mvmt=(0.3544,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.8901,0.6798,0.4703) mvmt=(0.3544,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8121,3.3695,-3.8797) mvmt=(0.3544,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4229,3.3695,-3.8797) mvmt=(0.3544,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8101,-0.2630,0.4653) mvmt=(0.3544,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.4611,2.0850) mvmt=(0.0000,0.3544,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2211,1.9800) mvmt=(0.0000,0.3544,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,-0.9902,0.6300) mvmt=(0.0000,0.3544,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6749,3.9570,1.9853) mvmt=(0.3544,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8601,3.9570,3.4853) mvmt=(0.3544,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8601,3.9570,3.4653) mvmt=(0.3544,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.640,7.543,97.485) lpos=(2.860,3.957,3.465) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8601,3.9570,3.4653) mvmt=(0.3544,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6749,3.9570,-1.0197) mvmt=(0.3544,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.8901,0.6798,0.4703) mvmt=(0.3544,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8121,3.3695,-3.8797) mvmt=(0.3544,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4229,3.3695,-3.8797) mvmt=(0.3544,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8101,-0.2630,0.4653) mvmt=(0.3544,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.4611,2.0850) mvmt=(0.0000,0.3544,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2211,1.9800) mvmt=(0.0000,0.3544,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,-0.9902,0.6300) mvmt=(0.0000,0.3544,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6749,3.9570,1.9853) mvmt=(0.3544,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8601,3.9570,3.4853) mvmt=(0.3544,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,4.1801,3.2172) mvmt=(0.0000,0.2232,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.320,97.237) lpos=(2.506,4.180,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.1801,3.2172) mvmt=(0.0000,0.2232,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.1801,3.2172) mvmt=(0.0000,0.2232,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,4.1801,3.2172) out=(2.5056,4.1801,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.320,97.237) lpos=(2.506,4.180,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.1801,3.4800) mvmt=(0.0000,0.2232,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.320,97.500) lpos=(2.506,4.180,3.480) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.1801,3.4800) mvmt=(0.0000,0.2232,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.1801,-1.0050) mvmt=(0.0000,0.2232,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.5926,-3.8650) mvmt=(0.0000,0.2232,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.5926,-3.8650) mvmt=(0.0000,0.2232,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.0399,0.4800) mvmt=(0.0000,0.2232,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.5549,1.1066,2.0997) mvmt=(-0.2232,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5799,0.8666,1.9947) mvmt=(-0.2232,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5799,-1.3446,0.6447) mvmt=(-0.2232,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.1801,2.0000) mvmt=(0.0000,0.2232,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.1801,3.5000) mvmt=(0.0000,0.2232,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.1801,3.4800) mvmt=(0.0000,0.2232,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.320,97.500) lpos=(2.506,4.180,3.480) lprev=(2.506,3.957,3.217) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[input] MovementTurnRight Press +[push-back-disp] site=dispatch center=(2.8829,3.9570,3.2172) mvmt=(0.3773,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.617,7.543,97.237) lpos=(2.883,3.957,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8829,3.9570,3.2172) mvmt=(0.3773,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8829,3.9570,3.2172) mvmt=(0.3773,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6521,3.9570,-1.2678) mvmt=(0.3773,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8349,3.3695,-4.1278) mvmt=(0.3773,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4001,3.3695,-4.1278) mvmt=(0.3773,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8329,-0.2630,0.2172) mvmt=(0.3773,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.4839,1.8369) mvmt=(0.0000,0.3773,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2439,1.7319) mvmt=(0.0000,0.3773,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8829,3.9570,3.2172) mvmt=(0.3773,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.617,7.543,97.237) lpos=(2.883,3.957,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8829,3.9570,3.2172) mvmt=(0.3773,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8829,3.9570,3.2172) mvmt=(0.3773,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6521,3.9570,-1.2678) mvmt=(0.3773,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8349,3.3695,-4.1278) mvmt=(0.3773,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4001,3.3695,-4.1278) mvmt=(0.3773,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8329,-0.2630,0.2172) mvmt=(0.3773,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.4839,1.8369) mvmt=(0.0000,0.3773,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2439,1.7319) mvmt=(0.0000,0.3773,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3567,1.2439,1.7319) out=(-0.3567,1.2439,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.8829,3.9570,3.4653) mvmt=(0.3773,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.617,7.543,97.485) lpos=(2.883,3.957,3.465) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8829,3.9570,3.4653) mvmt=(0.3773,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6521,3.9570,-1.0197) mvmt=(0.3773,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9129,0.6798,0.4703) mvmt=(0.3773,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8349,3.3695,-3.8797) mvmt=(0.3773,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4001,3.3695,-3.8797) mvmt=(0.3773,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8329,-0.2630,0.4653) mvmt=(0.3773,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.4839,2.0850) mvmt=(0.0000,0.3773,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2439,1.9800) mvmt=(0.0000,0.3773,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,-0.9674,0.6300) mvmt=(0.0000,0.3773,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6521,3.9570,1.9853) mvmt=(0.3773,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8829,3.9570,3.4853) mvmt=(0.3773,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8829,3.9570,3.4653) mvmt=(0.3773,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.617,7.543,97.485) lpos=(2.883,3.957,3.465) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8829,3.9570,3.4653) mvmt=(0.3773,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6521,3.9570,-1.0197) mvmt=(0.3773,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9129,0.6798,0.4703) mvmt=(0.3773,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8349,3.3695,-3.8797) mvmt=(0.3773,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4001,3.3695,-3.8797) mvmt=(0.3773,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8329,-0.2630,0.4653) mvmt=(0.3773,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.4839,2.0850) mvmt=(0.0000,0.3773,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2439,1.9800) mvmt=(0.0000,0.3773,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,-0.9674,0.6300) mvmt=(0.0000,0.3773,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6521,3.9570,1.9853) mvmt=(0.3773,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8829,3.9570,3.4853) mvmt=(0.3773,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,4.1282,3.2172) mvmt=(0.0000,0.1712,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.372,97.237) lpos=(2.506,4.128,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.1282,3.2172) mvmt=(0.0000,0.1712,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,4.1282,3.2172) mvmt=(0.0000,0.1712,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.1282,3.2172) mvmt=(0.0000,0.1712,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,4.1282,3.2172) out=(2.5056,4.1282,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.372,97.237) lpos=(2.506,4.128,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.1282,3.4800) mvmt=(0.0000,0.1712,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.372,97.500) lpos=(2.506,4.128,3.480) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.1282,3.4800) mvmt=(0.0000,0.1712,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.1282,-1.0050) mvmt=(0.0000,0.1712,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.5407,-3.8650) mvmt=(0.0000,0.1712,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.0918,0.4800) mvmt=(0.0000,0.1712,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.5029,1.1066,2.0997) mvmt=(-0.1712,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5279,0.8666,1.9947) mvmt=(-0.1712,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5279,-1.3446,0.6447) mvmt=(-0.1712,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.1282,2.0000) mvmt=(0.0000,0.1712,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.1282,3.5000) mvmt=(0.0000,0.1712,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.1282,3.4800) mvmt=(0.0000,0.1712,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.372,97.500) lpos=(2.506,4.128,3.480) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.1282,3.4800) mvmt=(0.0000,0.1712,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.1282,-1.0050) mvmt=(0.0000,0.1712,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.5407,-3.8650) mvmt=(0.0000,0.1712,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.0918,0.4800) mvmt=(0.0000,0.1712,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.5029,1.1066,2.0997) mvmt=(-0.1712,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5279,0.8666,1.9947) mvmt=(-0.1712,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5279,-1.3446,0.6447) mvmt=(-0.1712,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.1282,2.0000) mvmt=(0.0000,0.1712,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.1282,3.5000) mvmt=(0.0000,0.1712,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9145,3.9570,3.2172) mvmt=(0.4089,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.586,7.543,97.237) lpos=(2.914,3.957,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9145,3.9570,3.2172) mvmt=(0.4089,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9145,3.9570,3.2172) mvmt=(0.4089,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6205,3.9570,-1.2678) mvmt=(0.4089,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8665,3.3695,-4.1278) mvmt=(0.4089,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3685,3.3695,-4.1278) mvmt=(0.4089,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8645,-0.2630,0.2172) mvmt=(0.4089,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.5155,1.8369) mvmt=(0.0000,0.4089,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2755,1.7319) mvmt=(0.0000,0.4089,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9145,3.9570,3.2172) mvmt=(0.4089,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.586,7.543,97.237) lpos=(2.914,3.957,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9145,3.9570,3.2172) mvmt=(0.4089,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9145,3.9570,3.2172) mvmt=(0.4089,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6205,3.9570,-1.2678) mvmt=(0.4089,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8665,3.3695,-4.1278) mvmt=(0.4089,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3685,3.3695,-4.1278) mvmt=(0.4089,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8645,-0.2630,0.2172) mvmt=(0.4089,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.5155,1.8369) mvmt=(0.0000,0.4089,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2755,1.7319) mvmt=(0.0000,0.4089,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3567,1.2755,1.7319) out=(-0.3567,1.2755,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9145,3.9570,3.4653) mvmt=(0.4089,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.586,7.543,97.485) lpos=(2.914,3.957,3.465) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9145,3.9570,3.4653) mvmt=(0.4089,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6205,3.9570,-1.0197) mvmt=(0.4089,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9445,0.6798,0.4703) mvmt=(0.4089,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8665,3.3695,-3.8797) mvmt=(0.4089,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3685,3.3695,-3.8797) mvmt=(0.4089,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8645,-0.2630,0.4653) mvmt=(0.4089,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.5155,2.0850) mvmt=(0.0000,0.4089,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2755,1.9800) mvmt=(0.0000,0.4089,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,-0.9358,0.6300) mvmt=(0.0000,0.4089,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6205,3.9570,1.9853) mvmt=(0.4089,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9145,3.9570,3.4853) mvmt=(0.4089,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9145,3.9570,3.4653) mvmt=(0.4089,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.586,7.543,97.485) lpos=(2.914,3.957,3.465) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9145,3.9570,3.4653) mvmt=(0.4089,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6205,3.9570,-1.0197) mvmt=(0.4089,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9445,0.6798,0.4703) mvmt=(0.4089,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8665,3.3695,-3.8797) mvmt=(0.4089,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3685,3.3695,-3.8797) mvmt=(0.4089,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8645,-0.2630,0.4653) mvmt=(0.4089,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.5155,2.0850) mvmt=(0.0000,0.4089,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2755,1.9800) mvmt=(0.0000,0.4089,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,-0.9358,0.6300) mvmt=(0.0000,0.4089,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6205,3.9570,1.9853) mvmt=(0.4089,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9145,3.9570,3.4853) mvmt=(0.4089,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,4.0593,3.2172) mvmt=(0.0000,0.1023,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.441,97.237) lpos=(2.506,4.059,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0593,3.2172) mvmt=(0.0000,0.1023,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,4.0593,3.2172) mvmt=(0.0000,0.1023,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0593,3.2172) mvmt=(0.0000,0.1023,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,4.0593,3.2172) out=(2.5056,4.0593,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.441,97.237) lpos=(2.506,4.059,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0593,3.4800) mvmt=(0.0000,0.1023,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.441,97.500) lpos=(2.506,4.059,3.480) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0593,3.4800) mvmt=(0.0000,0.1023,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.0593,-1.0050) mvmt=(0.0000,0.1023,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.4718,-3.8650) mvmt=(0.0000,0.1023,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.1607,0.4800) mvmt=(0.0000,0.1023,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.4340,1.1066,2.0997) mvmt=(-0.1023,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4590,0.8666,1.9947) mvmt=(-0.1023,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4590,-1.3446,0.6447) mvmt=(-0.1023,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.0593,2.0000) mvmt=(0.0000,0.1023,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0593,3.5000) mvmt=(0.0000,0.1023,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0593,3.4800) mvmt=(0.0000,0.1023,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.441,97.500) lpos=(2.506,4.059,3.480) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0593,3.4800) mvmt=(0.0000,0.1023,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.0593,-1.0050) mvmt=(0.0000,0.1023,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.4718,-3.8650) mvmt=(0.0000,0.1023,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.1607,0.4800) mvmt=(0.0000,0.1023,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.4340,1.1066,2.0997) mvmt=(-0.1023,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4590,0.8666,1.9947) mvmt=(-0.1023,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4590,-1.3446,0.6447) mvmt=(-0.1023,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.0593,2.0000) mvmt=(0.0000,0.1023,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0593,3.5000) mvmt=(0.0000,0.1023,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9138,3.9570,3.2172) mvmt=(0.4082,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.586,7.543,97.237) lpos=(2.914,3.957,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9138,3.9570,3.2172) mvmt=(0.4082,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9138,3.9570,3.2172) mvmt=(0.4082,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6212,3.9570,-1.2678) mvmt=(0.4082,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8658,3.3695,-4.1278) mvmt=(0.4082,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3692,3.3695,-4.1278) mvmt=(0.4082,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8638,-0.2630,0.2172) mvmt=(0.4082,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.5148,1.8369) mvmt=(0.0000,0.4082,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2748,1.7319) mvmt=(0.0000,0.4082,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9138,3.9570,3.2172) mvmt=(0.4082,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.586,7.543,97.237) lpos=(2.914,3.957,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9138,3.9570,3.2172) mvmt=(0.4082,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9138,3.9570,3.2172) mvmt=(0.4082,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6212,3.9570,-1.2678) mvmt=(0.4082,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8658,3.3695,-4.1278) mvmt=(0.4082,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3692,3.3695,-4.1278) mvmt=(0.4082,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8638,-0.2630,0.2172) mvmt=(0.4082,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.5148,1.8369) mvmt=(0.0000,0.4082,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2748,1.7319) mvmt=(0.0000,0.4082,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3567,1.2748,1.7319) out=(-0.3567,1.2748,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9138,3.9570,3.4653) mvmt=(0.4082,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.586,7.543,97.485) lpos=(2.914,3.957,3.465) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9138,3.9570,3.4653) mvmt=(0.4082,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6212,3.9570,-1.0197) mvmt=(0.4082,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9438,0.6798,0.4703) mvmt=(0.4082,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8658,3.3695,-3.8797) mvmt=(0.4082,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3692,3.3695,-3.8797) mvmt=(0.4082,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8638,-0.2630,0.4653) mvmt=(0.4082,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.5148,2.0850) mvmt=(0.0000,0.4082,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2748,1.9800) mvmt=(0.0000,0.4082,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,-0.9365,0.6300) mvmt=(0.0000,0.4082,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6212,3.9570,1.9853) mvmt=(0.4082,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9138,3.9570,3.4853) mvmt=(0.4082,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9138,3.9570,3.4653) mvmt=(0.4082,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.586,7.543,97.485) lpos=(2.914,3.957,3.465) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9138,3.9570,3.4653) mvmt=(0.4082,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6212,3.9570,-1.0197) mvmt=(0.4082,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9438,0.6798,0.4703) mvmt=(0.4082,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8658,3.3695,-3.8797) mvmt=(0.4082,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3692,3.3695,-3.8797) mvmt=(0.4082,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8638,-0.2630,0.4653) mvmt=(0.4082,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3317,1.5148,2.0850) mvmt=(0.0000,0.4082,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,1.2748,1.9800) mvmt=(0.0000,0.4082,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3567,-0.9365,0.6300) mvmt=(0.0000,0.4082,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6212,3.9570,1.9853) mvmt=(0.4082,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9138,3.9570,3.4853) mvmt=(0.4082,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.9898,3.2172) mvmt=(0.0000,0.0328,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.510,97.237) lpos=(2.506,3.990,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9898,3.2172) mvmt=(0.0000,0.0328,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.9898,3.2172) mvmt=(0.0000,0.0328,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9898,3.2172) mvmt=(0.0000,0.0328,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.9898,3.2172) out=(2.5056,3.9898,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.510,97.237) lpos=(2.506,3.990,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9898,3.4800) mvmt=(0.0000,0.0328,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.510,97.500) lpos=(2.506,3.990,3.480) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9898,3.4800) mvmt=(0.0000,0.0328,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9898,-1.0050) mvmt=(0.0000,0.0328,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.4023,-3.8650) mvmt=(0.0000,0.0328,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.2302,0.4800) mvmt=(0.0000,0.0328,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.3646,1.1066,2.0997) mvmt=(-0.0328,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3896,0.8666,1.9947) mvmt=(-0.0328,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3896,-1.3446,0.6447) mvmt=(-0.0328,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9898,2.0000) mvmt=(0.0000,0.0328,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9898,3.5000) mvmt=(0.0000,0.0328,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9898,3.4800) mvmt=(0.0000,0.0328,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.510,97.500) lpos=(2.506,3.990,3.480) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9898,3.4800) mvmt=(0.0000,0.0328,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9898,-1.0050) mvmt=(0.0000,0.0328,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.4023,-3.8650) mvmt=(0.0000,0.0328,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.2302,0.4800) mvmt=(0.0000,0.0328,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.3646,1.1066,2.0997) mvmt=(-0.0328,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3896,0.8666,1.9947) mvmt=(-0.0328,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3896,-1.3446,0.6447) mvmt=(-0.0328,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9898,2.0000) mvmt=(0.0000,0.0328,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9898,3.5000) mvmt=(0.0000,0.0328,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9263,3.9551,3.2172) mvmt=(0.4207,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.574,7.545,97.237) lpos=(2.926,3.955,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9263,3.9551,3.2172) mvmt=(0.4207,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9263,3.9551,3.2172) mvmt=(0.4207,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6087,3.9551,-1.2678) mvmt=(0.4207,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8783,3.3676,-4.1278) mvmt=(0.4207,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3567,3.3676,-4.1278) mvmt=(0.4207,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8763,-0.2649,0.2172) mvmt=(0.4207,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3299,1.5273,1.8369) mvmt=(0.0019,0.4207,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3549,1.2873,1.7319) mvmt=(0.0019,0.4207,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9263,3.9551,3.2172) mvmt=(0.4207,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.574,7.545,97.237) lpos=(2.926,3.955,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9263,3.9551,3.2172) mvmt=(0.4207,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9263,3.9551,3.2172) mvmt=(0.4207,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6087,3.9551,-1.2678) mvmt=(0.4207,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8783,3.3676,-4.1278) mvmt=(0.4207,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3567,3.3676,-4.1278) mvmt=(0.4207,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8763,-0.2649,0.2172) mvmt=(0.4207,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3299,1.5273,1.8369) mvmt=(0.0019,0.4207,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3549,1.2873,1.7319) mvmt=(0.0019,0.4207,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3549,1.2873,1.7319) out=(-0.3549,1.2873,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9263,3.9551,3.4653) mvmt=(0.4207,-0.0019,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.574,7.545,97.485) lpos=(2.926,3.955,3.465) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9263,3.9551,3.4653) mvmt=(0.4207,-0.0019,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6087,3.9551,-1.0197) mvmt=(0.4207,-0.0019,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9563,0.6779,0.4703) mvmt=(0.4207,-0.0019,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8783,3.3676,-3.8797) mvmt=(0.4207,-0.0019,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3567,3.3676,-3.8797) mvmt=(0.4207,-0.0019,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8763,-0.2649,0.4653) mvmt=(0.4207,-0.0019,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3299,1.5273,2.0850) mvmt=(0.0019,0.4207,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3549,1.2873,1.9800) mvmt=(0.0019,0.4207,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3549,-0.9240,0.6300) mvmt=(0.0019,0.4207,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6087,3.9551,1.9853) mvmt=(0.4207,-0.0019,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9263,3.9551,3.4853) mvmt=(0.4207,-0.0019,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9263,3.9551,3.4653) mvmt=(0.4207,-0.0019,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.574,7.545,97.485) lpos=(2.926,3.955,3.465) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9263,3.9551,3.4653) mvmt=(0.4207,-0.0019,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6087,3.9551,-1.0197) mvmt=(0.4207,-0.0019,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9563,0.6779,0.4703) mvmt=(0.4207,-0.0019,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8783,3.3676,-3.8797) mvmt=(0.4207,-0.0019,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3567,3.3676,-3.8797) mvmt=(0.4207,-0.0019,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8763,-0.2649,0.4653) mvmt=(0.4207,-0.0019,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3299,1.5273,2.0850) mvmt=(0.0019,0.4207,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3549,1.2873,1.9800) mvmt=(0.0019,0.4207,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3549,-0.9240,0.6300) mvmt=(0.0019,0.4207,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6087,3.9551,1.9853) mvmt=(0.4207,-0.0019,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9263,3.9551,3.4853) mvmt=(0.4207,-0.0019,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.5056,3.9551,3.2172) mvmt=(0.0000,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.545,97.237) lpos=(2.506,3.955,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9551,3.2172) mvmt=(0.0000,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.9551,3.2172) mvmt=(0.0000,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9551,-1.2678) mvmt=(0.0000,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3676,-4.1278) mvmt=(0.0000,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3299,1.1066,1.8369) mvmt=(0.0019,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3549,0.8666,1.7319) mvmt=(0.0019,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3549,-1.3446,0.3819) mvmt=(0.0019,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9551,3.2372) mvmt=(0.0000,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9551,2.4672) mvmt=(0.0000,-0.0019,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,7.545,96.487) lpos=(2.506,3.955,2.467) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9551,2.4672) mvmt=(0.0000,-0.0019,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3299,1.1066,1.0869) mvmt=(0.0019,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3549,0.8666,0.9819) mvmt=(0.0019,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3549,0.8666,0.9819) out=(-0.3549,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.9551,3.2172) mvmt=(0.0000,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.545,97.237) lpos=(2.506,3.955,3.217) lprev=(2.506,3.957,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9551,3.2172) mvmt=(0.0000,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.9551,3.2172) mvmt=(0.0000,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9551,-1.2678) mvmt=(0.0000,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3676,-4.1278) mvmt=(0.0000,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3299,1.1066,1.8369) mvmt=(0.0019,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3549,0.8666,1.7319) mvmt=(0.0019,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3549,-1.3446,0.3819) mvmt=(0.0019,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9551,3.2372) mvmt=(0.0000,-0.0019,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9186,3.2172) mvmt=(0.0000,-0.0365,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.581,97.237) lpos=(2.506,3.919,3.217) lprev=(2.506,3.955,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9186,3.2172) mvmt=(0.0000,-0.0365,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.9186,3.2172) mvmt=(0.0000,-0.0365,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9186,-1.2678) mvmt=(0.0000,-0.0365,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3311,-4.1278) mvmt=(0.0000,-0.0365,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2933,1.1066,1.8369) mvmt=(0.0365,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3183,0.8666,1.7319) mvmt=(0.0365,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3183,-1.3446,0.3819) mvmt=(0.0365,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9186,1.7372) mvmt=(0.0000,-0.0365,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9186,3.2372) mvmt=(0.0000,-0.0365,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9186,2.4672) mvmt=(0.0000,-0.0365,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,7.581,96.487) lpos=(2.506,3.919,2.467) lprev=(2.506,3.955,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9186,2.4672) mvmt=(0.0000,-0.0365,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2933,1.1066,1.0869) mvmt=(0.0365,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3183,0.8666,0.9819) mvmt=(0.0365,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3183,0.8666,0.9819) out=(-0.3183,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.9186,3.2172) mvmt=(0.0000,-0.0365,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.581,97.237) lpos=(2.506,3.919,3.217) lprev=(2.506,3.955,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9186,3.2172) mvmt=(0.0000,-0.0365,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.9186,3.2172) mvmt=(0.0000,-0.0365,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9186,-1.2678) mvmt=(0.0000,-0.0365,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3311,-4.1278) mvmt=(0.0000,-0.0365,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2933,1.1066,1.8369) mvmt=(0.0365,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3183,0.8666,1.7319) mvmt=(0.0365,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3183,-1.3446,0.3819) mvmt=(0.0365,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9186,1.7372) mvmt=(0.0000,-0.0365,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9186,3.2372) mvmt=(0.0000,-0.0365,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9223,3.8664,3.2172) mvmt=(0.4167,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.578,7.634,97.237) lpos=(2.922,3.866,3.217) lprev=(2.506,3.919,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9223,3.8664,3.2172) mvmt=(0.4167,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9223,3.8664,3.2172) mvmt=(0.4167,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6127,3.8664,-1.2678) mvmt=(0.4167,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9523,0.5892,0.2222) mvmt=(0.4167,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8743,3.2789,-4.1278) mvmt=(0.4167,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3607,3.2789,-4.1278) mvmt=(0.4167,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8723,-0.3536,0.2172) mvmt=(0.4167,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2412,1.5233,1.8369) mvmt=(0.0522,0.4167,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2662,1.2833,1.7319) mvmt=(0.0522,0.4167,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9223,3.8664,3.2172) mvmt=(0.4167,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.578,7.634,97.237) lpos=(2.922,3.866,3.217) lprev=(2.506,3.919,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9223,3.8664,3.2172) mvmt=(0.4167,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9223,3.8664,3.2172) mvmt=(0.4167,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6127,3.8664,-1.2678) mvmt=(0.4167,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9523,0.5892,0.2222) mvmt=(0.4167,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8743,3.2789,-4.1278) mvmt=(0.4167,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3607,3.2789,-4.1278) mvmt=(0.4167,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8723,-0.3536,0.2172) mvmt=(0.4167,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2412,1.5233,1.8369) mvmt=(0.0522,0.4167,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2662,1.2833,1.7319) mvmt=(0.0522,0.4167,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2662,1.2833,1.7319) out=(-0.2662,1.2833,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9223,3.8664,3.4653) mvmt=(0.4167,-0.0522,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.578,7.634,97.485) lpos=(2.922,3.866,3.465) lprev=(2.506,3.919,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9223,3.8664,3.4653) mvmt=(0.4167,-0.0522,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6127,3.8664,-1.0197) mvmt=(0.4167,-0.0522,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9523,0.5892,0.4703) mvmt=(0.4167,-0.0522,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8743,3.2789,-3.8797) mvmt=(0.4167,-0.0522,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3607,3.2789,-3.8797) mvmt=(0.4167,-0.0522,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8723,-0.3536,0.4653) mvmt=(0.4167,-0.0522,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.2412,1.5233,2.0850) mvmt=(0.0522,0.4167,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2662,1.2833,1.9800) mvmt=(0.0522,0.4167,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2662,-0.9280,0.6300) mvmt=(0.0522,0.4167,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6127,3.8664,1.9853) mvmt=(0.4167,-0.0522,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9223,3.8664,3.4853) mvmt=(0.4167,-0.0522,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9223,3.8664,3.4653) mvmt=(0.4167,-0.0522,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.578,7.634,97.485) lpos=(2.922,3.866,3.465) lprev=(2.506,3.919,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9223,3.8664,3.4653) mvmt=(0.4167,-0.0522,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6127,3.8664,-1.0197) mvmt=(0.4167,-0.0522,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9523,0.5892,0.4703) mvmt=(0.4167,-0.0522,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8743,3.2789,-3.8797) mvmt=(0.4167,-0.0522,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3607,3.2789,-3.8797) mvmt=(0.4167,-0.0522,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8723,-0.3536,0.4653) mvmt=(0.4167,-0.0522,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.2412,1.5233,2.0850) mvmt=(0.0522,0.4167,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2662,1.2833,1.9800) mvmt=(0.0522,0.4167,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2662,-0.9280,0.6300) mvmt=(0.0522,0.4167,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6127,3.8664,1.9853) mvmt=(0.4167,-0.0522,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9223,3.8664,3.4853) mvmt=(0.4167,-0.0522,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.5056,3.8664,3.2172) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.634,97.237) lpos=(2.506,3.866,3.217) lprev=(2.506,3.919,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.8664,3.2172) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.8664,3.2172) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.8664,-1.2678) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.2789,-4.1278) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.2412,1.1066,1.8369) mvmt=(0.0522,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2662,0.8666,1.7319) mvmt=(0.0522,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2662,-1.3446,0.3819) mvmt=(0.0522,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.8664,1.7372) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.8664,3.2372) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.8664,2.4672) mvmt=(0.0000,-0.0522,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,7.634,96.487) lpos=(2.506,3.866,2.467) lprev=(2.506,3.919,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.8664,2.4672) mvmt=(0.0000,-0.0522,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2412,1.1066,1.0869) mvmt=(0.0522,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2662,0.8666,0.9819) mvmt=(0.0522,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2662,0.8666,0.9819) out=(-0.2662,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.8664,3.2172) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.634,97.237) lpos=(2.506,3.866,3.217) lprev=(2.506,3.919,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.8664,3.2172) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.8664,3.2172) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.8664,-1.2678) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.2789,-4.1278) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2412,1.1066,1.8369) mvmt=(0.0522,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2662,0.8666,1.7319) mvmt=(0.0522,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2662,-1.3446,0.3819) mvmt=(0.0522,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.8664,1.7372) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.8664,3.2372) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.8142,3.2172) mvmt=(0.0000,-0.0523,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.686,97.237) lpos=(2.506,3.814,3.217) lprev=(2.506,3.866,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.8142,3.2172) mvmt=(0.0000,-0.0523,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.8142,3.2172) mvmt=(0.0000,-0.0523,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.8142,-1.2678) mvmt=(0.0000,-0.0523,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.2267,-4.1278) mvmt=(0.0000,-0.0523,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1889,1.1066,1.8369) mvmt=(0.0523,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2139,0.8666,1.7319) mvmt=(0.0523,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2139,-1.3446,0.3819) mvmt=(0.0523,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.8142,1.7372) mvmt=(0.0000,-0.0523,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.8142,3.2372) mvmt=(0.0000,-0.0523,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.8142,2.4672) mvmt=(0.0000,-0.0523,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,7.686,96.487) lpos=(2.506,3.814,2.467) lprev=(2.506,3.866,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.8142,2.4672) mvmt=(0.0000,-0.0523,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1889,1.1066,1.0869) mvmt=(0.0523,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2139,0.8666,0.9819) mvmt=(0.0523,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2139,0.8666,0.9819) out=(-0.2139,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.8142,3.2172) mvmt=(0.0000,-0.0523,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.686,97.237) lpos=(2.506,3.814,3.217) lprev=(2.506,3.866,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.8142,3.2172) mvmt=(0.0000,-0.0523,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.8142,3.2172) mvmt=(0.0000,-0.0523,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.8142,-1.2678) mvmt=(0.0000,-0.0523,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.2267,-4.1278) mvmt=(0.0000,-0.0523,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1889,1.1066,1.8369) mvmt=(0.0523,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2139,0.8666,1.7319) mvmt=(0.0523,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2139,-1.3446,0.3819) mvmt=(0.0523,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.8142,1.7372) mvmt=(0.0000,-0.0523,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.8142,3.2372) mvmt=(0.0000,-0.0523,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7446,3.7843,3.2172) mvmt=(0.2390,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.755,7.716,97.237) lpos=(2.745,3.784,3.217) lprev=(2.506,3.814,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7446,3.7843,3.2172) mvmt=(0.2390,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7446,3.7843,3.2172) mvmt=(0.2390,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7904,3.7843,-1.2678) mvmt=(0.2390,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5384,3.1968,-4.1278) mvmt=(0.2390,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6946,-0.4357,0.2172) mvmt=(0.2390,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1590,1.3456,1.8369) mvmt=(0.0299,0.2390,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1840,1.1056,1.7319) mvmt=(0.0299,0.2390,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7446,3.7843,3.2172) mvmt=(0.2390,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.755,7.716,97.237) lpos=(2.745,3.784,3.217) lprev=(2.506,3.814,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7446,3.7843,3.2172) mvmt=(0.2390,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7446,3.7843,3.2172) mvmt=(0.2390,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7904,3.7843,-1.2678) mvmt=(0.2390,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5384,3.1968,-4.1278) mvmt=(0.2390,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6946,-0.4357,0.2172) mvmt=(0.2390,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1590,1.3456,1.8369) mvmt=(0.0299,0.2390,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1840,1.1056,1.7319) mvmt=(0.0299,0.2390,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1840,1.1056,1.7319) out=(-0.1840,1.1056,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.7446,3.7843,3.4653) mvmt=(0.2390,-0.0299,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.755,7.716,97.485) lpos=(2.745,3.784,3.465) lprev=(2.506,3.814,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7446,3.7843,3.4653) mvmt=(0.2390,-0.0299,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7904,3.7843,-1.0197) mvmt=(0.2390,-0.0299,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.6966,3.1968,-3.8797) mvmt=(0.2390,-0.0299,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.5384,3.1968,-3.8797) mvmt=(0.2390,-0.0299,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.6946,-0.4357,0.4653) mvmt=(0.2390,-0.0299,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.1590,1.3456,2.0850) mvmt=(0.0299,0.2390,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.1840,1.1056,1.9800) mvmt=(0.0299,0.2390,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.1840,-1.1056,0.6300) mvmt=(0.0299,0.2390,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7904,3.7843,1.9853) mvmt=(0.2390,-0.0299,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.7446,3.7843,3.4853) mvmt=(0.2390,-0.0299,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.7446,3.7843,3.4653) mvmt=(0.2390,-0.0299,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.755,7.716,97.485) lpos=(2.745,3.784,3.465) lprev=(2.506,3.814,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7446,3.7843,3.4653) mvmt=(0.2390,-0.0299,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7904,3.7843,-1.0197) mvmt=(0.2390,-0.0299,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.6966,3.1968,-3.8797) mvmt=(0.2390,-0.0299,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.5384,3.1968,-3.8797) mvmt=(0.2390,-0.0299,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.6946,-0.4357,0.4653) mvmt=(0.2390,-0.0299,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.1590,1.3456,2.0850) mvmt=(0.0299,0.2390,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.1840,1.1056,1.9800) mvmt=(0.0299,0.2390,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.1840,-1.1056,0.6300) mvmt=(0.0299,0.2390,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7904,3.7843,1.9853) mvmt=(0.2390,-0.0299,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.7446,3.7843,3.4853) mvmt=(0.2390,-0.0299,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.5056,3.7843,3.2172) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.716,97.237) lpos=(2.506,3.784,3.217) lprev=(2.506,3.814,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.7843,3.2172) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.7843,3.2172) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.7843,-1.2678) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.1968,-4.1278) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.1590,1.1066,1.8369) mvmt=(0.0299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.1840,0.8666,1.7319) mvmt=(0.0299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.1840,-1.3446,0.3819) mvmt=(0.0299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.7843,1.7372) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.7843,3.2372) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.7843,2.4672) mvmt=(0.0000,-0.0299,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,7.716,96.487) lpos=(2.506,3.784,2.467) lprev=(2.506,3.814,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.7843,2.4672) mvmt=(0.0000,-0.0299,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1590,1.1066,1.0869) mvmt=(0.0299,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1840,0.8666,0.9819) mvmt=(0.0299,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1840,0.8666,0.9819) out=(-0.1840,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.7843,3.2172) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.716,97.237) lpos=(2.506,3.784,3.217) lprev=(2.506,3.814,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.7843,3.2172) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.7843,3.2172) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.7843,-1.2678) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.1968,-4.1278) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1590,1.1066,1.8369) mvmt=(0.0299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1840,0.8666,1.7319) mvmt=(0.0299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1840,-1.3446,0.3819) mvmt=(0.0299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.7843,1.7372) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.7843,3.2372) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:672 +[push-back-disp] site=dispatch center=(2.5056,3.7543,3.2172) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.746,97.237) lpos=(2.506,3.754,3.217) lprev=(2.506,3.784,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.7543,3.2172) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.7543,3.2172) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.7543,-1.2678) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.1668,-4.1278) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1291,1.1066,1.8369) mvmt=(0.0299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1541,0.8666,1.7319) mvmt=(0.0299,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1541,-1.3446,0.3819) mvmt=(0.0299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.7543,1.7372) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.7543,3.2372) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.7543,2.4672) mvmt=(0.0000,-0.0299,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,7.746,96.487) lpos=(2.506,3.754,2.467) lprev=(2.506,3.784,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.7543,2.4672) mvmt=(0.0000,-0.0299,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1291,1.1066,1.0869) mvmt=(0.0299,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1541,0.8666,0.9819) mvmt=(0.0299,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1541,0.8666,0.9819) out=(-0.1541,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.7543,3.2172) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.746,97.237) lpos=(2.506,3.754,3.217) lprev=(2.506,3.784,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.7543,3.2172) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.7543,3.2172) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.7543,-1.2678) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.1668,-4.1278) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1291,1.1066,1.8369) mvmt=(0.0299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1541,0.8666,1.7319) mvmt=(0.0299,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1541,-1.3446,0.3819) mvmt=(0.0299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.7543,1.7372) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.7543,3.2372) mvmt=(0.0000,-0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.7016,3.2172) mvmt=(0.0000,-0.0527,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.798,97.237) lpos=(2.506,3.702,3.217) lprev=(2.506,3.754,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.7016,3.2172) mvmt=(0.0000,-0.0527,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.7016,3.2172) mvmt=(0.0000,-0.0527,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.7016,-1.2678) mvmt=(0.0000,-0.0527,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.1141,-4.1278) mvmt=(0.0000,-0.0527,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0764,1.1066,1.8369) mvmt=(0.0527,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1014,0.8666,1.7319) mvmt=(0.0527,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1014,-1.3446,0.3819) mvmt=(0.0527,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.7016,1.7372) mvmt=(0.0000,-0.0527,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.7016,3.2372) mvmt=(0.0000,-0.0527,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.7016,2.4672) mvmt=(0.0000,-0.0527,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,7.798,96.487) lpos=(2.506,3.702,2.467) lprev=(2.506,3.754,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.7016,2.4672) mvmt=(0.0000,-0.0527,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0764,1.1066,1.0869) mvmt=(0.0527,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1014,0.8666,0.9819) mvmt=(0.0527,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1014,0.8666,0.9819) out=(-0.1014,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.7016,3.2172) mvmt=(0.0000,-0.0527,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.798,97.237) lpos=(2.506,3.702,3.217) lprev=(2.506,3.754,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.7016,3.2172) mvmt=(0.0000,-0.0527,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.7016,3.2172) mvmt=(0.0000,-0.0527,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.7016,-1.2678) mvmt=(0.0000,-0.0527,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.1141,-4.1278) mvmt=(0.0000,-0.0527,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0764,1.1066,1.8369) mvmt=(0.0527,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1014,0.8666,1.7319) mvmt=(0.0527,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1014,-1.3446,0.3819) mvmt=(0.0527,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.7016,1.7372) mvmt=(0.0000,-0.0527,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.7016,3.2372) mvmt=(0.0000,-0.0527,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9226,3.6494,3.2172) mvmt=(0.4170,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.577,7.851,97.237) lpos=(2.923,3.649,3.217) lprev=(2.506,3.702,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9226,3.6494,3.2172) mvmt=(0.4170,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9226,3.6494,3.2172) mvmt=(0.4170,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6124,3.6494,-1.2678) mvmt=(0.4170,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9526,0.3722,0.2222) mvmt=(0.4170,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8746,3.0619,-4.1278) mvmt=(0.4170,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3604,3.0619,-4.1278) mvmt=(0.4170,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8726,-0.5706,0.2172) mvmt=(0.4170,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0242,1.5236,1.8369) mvmt=(0.0522,0.4170,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0492,1.2836,1.7319) mvmt=(0.0522,0.4170,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9226,3.6494,3.2172) mvmt=(0.4170,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.577,7.851,97.237) lpos=(2.923,3.649,3.217) lprev=(2.506,3.702,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9226,3.6494,3.2172) mvmt=(0.4170,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9226,3.6494,3.2172) mvmt=(0.4170,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6124,3.6494,-1.2678) mvmt=(0.4170,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9526,0.3722,0.2222) mvmt=(0.4170,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8746,3.0619,-4.1278) mvmt=(0.4170,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3604,3.0619,-4.1278) mvmt=(0.4170,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8726,-0.5706,0.2172) mvmt=(0.4170,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0242,1.5236,1.8369) mvmt=(0.0522,0.4170,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0492,1.2836,1.7319) mvmt=(0.0522,0.4170,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0492,1.2836,1.7319) out=(-0.0492,1.2836,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9226,3.6494,3.4653) mvmt=(0.4170,-0.0522,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.577,7.851,97.485) lpos=(2.923,3.649,3.465) lprev=(2.506,3.702,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9226,3.6494,3.4653) mvmt=(0.4170,-0.0522,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6124,3.6494,-1.0197) mvmt=(0.4170,-0.0522,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9526,0.3722,0.4703) mvmt=(0.4170,-0.0522,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8746,3.0619,-3.8797) mvmt=(0.4170,-0.0522,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3604,3.0619,-3.8797) mvmt=(0.4170,-0.0522,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8726,-0.5706,0.4653) mvmt=(0.4170,-0.0522,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.0242,1.5236,2.0850) mvmt=(0.0522,0.4170,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.0492,1.2836,1.9800) mvmt=(0.0522,0.4170,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.0492,-0.9277,0.6300) mvmt=(0.0522,0.4170,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6124,3.6494,1.9853) mvmt=(0.4170,-0.0522,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9226,3.6494,3.4853) mvmt=(0.4170,-0.0522,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9226,3.6494,3.4653) mvmt=(0.4170,-0.0522,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.577,7.851,97.485) lpos=(2.923,3.649,3.465) lprev=(2.506,3.702,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9226,3.6494,3.4653) mvmt=(0.4170,-0.0522,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6124,3.6494,-1.0197) mvmt=(0.4170,-0.0522,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9526,0.3722,0.4703) mvmt=(0.4170,-0.0522,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8746,3.0619,-3.8797) mvmt=(0.4170,-0.0522,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3604,3.0619,-3.8797) mvmt=(0.4170,-0.0522,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8726,-0.5706,0.4653) mvmt=(0.4170,-0.0522,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.0242,1.5236,2.0850) mvmt=(0.0522,0.4170,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.0492,1.2836,1.9800) mvmt=(0.0522,0.4170,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.0492,-0.9277,0.6300) mvmt=(0.0522,0.4170,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6124,3.6494,1.9853) mvmt=(0.4170,-0.0522,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9226,3.6494,3.4853) mvmt=(0.4170,-0.0522,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.5056,3.6494,3.2172) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.851,97.237) lpos=(2.506,3.649,3.217) lprev=(2.506,3.702,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.6494,3.2172) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.6494,3.2172) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.6494,-1.2678) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.0619,-4.1278) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.0242,1.1066,1.8369) mvmt=(0.0522,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.0492,0.8666,1.7319) mvmt=(0.0522,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.0492,-1.3446,0.3819) mvmt=(0.0522,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.6494,1.7372) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.6494,3.2372) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.6494,2.4672) mvmt=(0.0000,-0.0522,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,7.851,96.487) lpos=(2.506,3.649,2.467) lprev=(2.506,3.702,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.6494,2.4672) mvmt=(0.0000,-0.0522,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0242,1.1066,1.0869) mvmt=(0.0522,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0492,0.8666,0.9819) mvmt=(0.0522,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0492,0.8666,0.9819) out=(-0.0492,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.6494,3.2172) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.851,97.237) lpos=(2.506,3.649,3.217) lprev=(2.506,3.702,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.6494,3.2172) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.6494,3.2172) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.6494,-1.2678) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.0619,-4.1278) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0242,1.1066,1.8369) mvmt=(0.0522,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0492,0.8666,1.7319) mvmt=(0.0522,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0492,-1.3446,0.3819) mvmt=(0.0522,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.6494,1.7372) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.6494,3.2372) mvmt=(0.0000,-0.0522,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.5973,3.2172) mvmt=(0.0000,-0.0521,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.903,97.237) lpos=(2.506,3.597,3.217) lprev=(2.506,3.649,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.5973,3.2172) mvmt=(0.0000,-0.0521,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.5973,3.2172) mvmt=(0.0000,-0.0521,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.5973,-1.2678) mvmt=(0.0000,-0.0521,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.0098,-4.1278) mvmt=(0.0000,-0.0521,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9720,1.1066,1.8369) mvmt=(0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0030,0.8666,1.7319) mvmt=(0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0030,-1.3446,0.3819) mvmt=(0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.5973,1.7372) mvmt=(0.0000,-0.0521,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.5973,3.2372) mvmt=(0.0000,-0.0521,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.5973,2.4672) mvmt=(0.0000,-0.0521,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,7.903,96.487) lpos=(2.506,3.597,2.467) lprev=(2.506,3.649,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.5973,2.4672) mvmt=(0.0000,-0.0521,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9720,1.1066,1.0869) mvmt=(0.0521,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0030,0.8666,0.9819) mvmt=(0.0521,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0030,0.8666,0.9819) out=(0.0030,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.5973,3.2172) mvmt=(0.0000,-0.0521,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.903,97.237) lpos=(2.506,3.597,3.217) lprev=(2.506,3.649,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.5973,3.2172) mvmt=(0.0000,-0.0521,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.5973,3.2172) mvmt=(0.0000,-0.0521,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.5973,-1.2678) mvmt=(0.0000,-0.0521,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.0098,-4.1278) mvmt=(0.0000,-0.0521,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9720,1.1066,1.8369) mvmt=(0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0030,0.8666,1.7319) mvmt=(0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0030,-1.3446,0.3819) mvmt=(0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.5973,1.7372) mvmt=(0.0000,-0.0521,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.5973,3.2372) mvmt=(0.0000,-0.0521,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[input] MovementTurnLeft Press +[push-back-disp] site=dispatch center=(2.9299,3.5525,3.2172) mvmt=(0.4243,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.570,7.947,97.237) lpos=(2.930,3.553,3.217) lprev=(2.506,3.597,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9299,3.5525,3.2172) mvmt=(0.4243,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9299,3.5525,3.2172) mvmt=(0.4243,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6051,3.5525,-1.2678) mvmt=(0.4243,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9599,0.2753,0.2222) mvmt=(0.4243,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8819,2.9650,-4.1278) mvmt=(0.4243,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3531,2.9650,-4.1278) mvmt=(0.4243,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8799,-0.6675,0.2172) mvmt=(0.4243,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9273,1.5309,1.8369) mvmt=(0.0447,0.4243,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0477,1.2909,1.7319) mvmt=(0.0447,0.4243,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9299,3.5525,3.2172) mvmt=(0.4243,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.570,7.947,97.237) lpos=(2.930,3.553,3.217) lprev=(2.506,3.597,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9299,3.5525,3.2172) mvmt=(0.4243,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9299,3.5525,3.2172) mvmt=(0.4243,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6051,3.5525,-1.2678) mvmt=(0.4243,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9599,0.2753,0.2222) mvmt=(0.4243,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8819,2.9650,-4.1278) mvmt=(0.4243,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3531,2.9650,-4.1278) mvmt=(0.4243,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8799,-0.6675,0.2172) mvmt=(0.4243,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9273,1.5309,1.8369) mvmt=(0.0447,0.4243,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0477,1.2909,1.7319) mvmt=(0.0447,0.4243,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0477,1.2909,1.7319) out=(0.0477,1.2909,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9299,3.5525,3.4653) mvmt=(0.4243,-0.0447,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.570,7.947,97.485) lpos=(2.930,3.553,3.465) lprev=(2.506,3.597,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9299,3.5525,3.4653) mvmt=(0.4243,-0.0447,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6051,3.5525,-1.0197) mvmt=(0.4243,-0.0447,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9599,0.2753,0.4703) mvmt=(0.4243,-0.0447,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8819,2.9650,-3.8797) mvmt=(0.4243,-0.0447,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3531,2.9650,-3.8797) mvmt=(0.4243,-0.0447,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8799,-0.6675,0.4653) mvmt=(0.4243,-0.0447,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.9273,1.5309,2.0850) mvmt=(0.0447,0.4243,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.0477,1.2909,1.9800) mvmt=(0.0447,0.4243,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.0477,-0.9203,0.6300) mvmt=(0.0447,0.4243,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6051,3.5525,1.9853) mvmt=(0.4243,-0.0447,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9299,3.5525,3.4853) mvmt=(0.4243,-0.0447,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9299,3.5525,3.4653) mvmt=(0.4243,-0.0447,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.570,7.947,97.485) lpos=(2.930,3.553,3.465) lprev=(2.506,3.597,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9299,3.5525,3.4653) mvmt=(0.4243,-0.0447,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6051,3.5525,-1.0197) mvmt=(0.4243,-0.0447,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9599,0.2753,0.4703) mvmt=(0.4243,-0.0447,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8819,2.9650,-3.8797) mvmt=(0.4243,-0.0447,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3531,2.9650,-3.8797) mvmt=(0.4243,-0.0447,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8799,-0.6675,0.4653) mvmt=(0.4243,-0.0447,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.9273,1.5309,2.0850) mvmt=(0.0447,0.4243,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.0477,1.2909,1.9800) mvmt=(0.0447,0.4243,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.0477,-0.9203,0.6300) mvmt=(0.0447,0.4243,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6051,3.5525,1.9853) mvmt=(0.4243,-0.0447,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9299,3.5525,3.4853) mvmt=(0.4243,-0.0447,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.5056,3.5525,3.2172) mvmt=(0.0000,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.947,97.237) lpos=(2.506,3.553,3.217) lprev=(2.506,3.597,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.5525,3.2172) mvmt=(0.0000,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.5525,3.2172) mvmt=(0.0000,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.5525,-1.2678) mvmt=(0.0000,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.9650,-4.1278) mvmt=(0.0000,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.9273,1.1066,1.8369) mvmt=(0.0447,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.0477,0.8666,1.7319) mvmt=(0.0447,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.0477,-1.3446,0.3819) mvmt=(0.0447,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.5525,1.7372) mvmt=(0.0000,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.5525,3.2372) mvmt=(0.0000,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.5525,2.4672) mvmt=(0.0000,-0.0447,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,7.947,96.487) lpos=(2.506,3.553,2.467) lprev=(2.506,3.597,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.5525,2.4672) mvmt=(0.0000,-0.0447,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9273,1.1066,1.0869) mvmt=(0.0447,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0477,0.8666,0.9819) mvmt=(0.0447,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0477,0.8666,0.9819) out=(0.0477,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.5525,3.2172) mvmt=(0.0000,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.947,97.237) lpos=(2.506,3.553,3.217) lprev=(2.506,3.597,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.5525,3.2172) mvmt=(0.0000,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.5525,3.2172) mvmt=(0.0000,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.5525,-1.2678) mvmt=(0.0000,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.9650,-4.1278) mvmt=(0.0000,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9273,1.1066,1.8369) mvmt=(0.0447,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0477,0.8666,1.7319) mvmt=(0.0447,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0477,-1.3446,0.3819) mvmt=(0.0447,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.5525,1.7372) mvmt=(0.0000,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.5525,3.2372) mvmt=(0.0000,-0.0447,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.5440,3.2172) mvmt=(0.0000,-0.0085,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.956,97.237) lpos=(2.506,3.544,3.217) lprev=(2.506,3.553,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.5440,3.2172) mvmt=(0.0000,-0.0085,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.5440,3.2172) mvmt=(0.0000,-0.0085,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.5440,-1.2678) mvmt=(0.0000,-0.0085,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.9565,-4.1278) mvmt=(0.0000,-0.0085,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9188,1.1066,1.8369) mvmt=(0.0085,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0562,0.8666,1.7319) mvmt=(0.0085,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0562,-1.3446,0.3819) mvmt=(0.0085,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.5440,1.7372) mvmt=(0.0000,-0.0085,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.5440,3.2372) mvmt=(0.0000,-0.0085,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.5440,2.4672) mvmt=(0.0000,-0.0085,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,7.956,96.487) lpos=(2.506,3.544,2.467) lprev=(2.506,3.553,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.5440,2.4672) mvmt=(0.0000,-0.0085,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9188,1.1066,1.0869) mvmt=(0.0085,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0562,0.8666,0.9819) mvmt=(0.0085,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0562,0.8666,0.9819) out=(0.0562,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.5440,3.2172) mvmt=(0.0000,-0.0085,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.956,97.237) lpos=(2.506,3.544,3.217) lprev=(2.506,3.553,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.5440,3.2172) mvmt=(0.0000,-0.0085,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.5440,3.2172) mvmt=(0.0000,-0.0085,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.5440,-1.2678) mvmt=(0.0000,-0.0085,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.9565,-4.1278) mvmt=(0.0000,-0.0085,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9188,1.1066,1.8369) mvmt=(0.0085,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0562,0.8666,1.7319) mvmt=(0.0085,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0562,-1.3446,0.3819) mvmt=(0.0085,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.5440,1.7372) mvmt=(0.0000,-0.0085,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.5440,3.2372) mvmt=(0.0000,-0.0085,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9107,3.5688,3.2172) mvmt=(0.4051,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.589,7.931,97.237) lpos=(2.911,3.569,3.217) lprev=(2.506,3.544,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9107,3.5688,3.2172) mvmt=(0.4051,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9107,3.5688,3.2172) mvmt=(0.4051,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6243,3.5688,-1.2678) mvmt=(0.4051,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9407,0.2915,0.2222) mvmt=(0.4051,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8627,2.9813,-4.1278) mvmt=(0.4051,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3723,2.9813,-4.1278) mvmt=(0.4051,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8607,-0.6512,0.2172) mvmt=(0.4051,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9435,1.5117,1.8369) mvmt=(-0.0247,0.4051,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0315,1.2717,1.7319) mvmt=(-0.0247,0.4051,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9107,3.5688,3.2172) mvmt=(0.4051,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.589,7.931,97.237) lpos=(2.911,3.569,3.217) lprev=(2.506,3.544,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9107,3.5688,3.2172) mvmt=(0.4051,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9107,3.5688,3.2172) mvmt=(0.4051,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6243,3.5688,-1.2678) mvmt=(0.4051,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9407,0.2915,0.2222) mvmt=(0.4051,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8627,2.9813,-4.1278) mvmt=(0.4051,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3723,2.9813,-4.1278) mvmt=(0.4051,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8607,-0.6512,0.2172) mvmt=(0.4051,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9435,1.5117,1.8369) mvmt=(-0.0247,0.4051,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0315,1.2717,1.7319) mvmt=(-0.0247,0.4051,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0315,1.2717,1.7319) out=(0.0315,1.2717,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9107,3.5688,3.4653) mvmt=(0.4051,0.0247,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.589,7.931,97.485) lpos=(2.911,3.569,3.465) lprev=(2.506,3.544,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9107,3.5688,3.4653) mvmt=(0.4051,0.0247,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6243,3.5688,-1.0197) mvmt=(0.4051,0.0247,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9407,0.2915,0.4703) mvmt=(0.4051,0.0247,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8627,2.9813,-3.8797) mvmt=(0.4051,0.0247,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3723,2.9813,-3.8797) mvmt=(0.4051,0.0247,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8607,-0.6512,0.4653) mvmt=(0.4051,0.0247,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.9435,1.5117,2.0850) mvmt=(-0.0247,0.4051,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.0315,1.2717,1.9800) mvmt=(-0.0247,0.4051,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.0315,-0.9396,0.6300) mvmt=(-0.0247,0.4051,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6243,3.5688,1.9853) mvmt=(0.4051,0.0247,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9107,3.5688,3.4853) mvmt=(0.4051,0.0247,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9107,3.5688,3.4653) mvmt=(0.4051,0.0247,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.589,7.931,97.485) lpos=(2.911,3.569,3.465) lprev=(2.506,3.544,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9107,3.5688,3.4653) mvmt=(0.4051,0.0247,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6243,3.5688,-1.0197) mvmt=(0.4051,0.0247,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9407,0.2915,0.4703) mvmt=(0.4051,0.0247,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8627,2.9813,-3.8797) mvmt=(0.4051,0.0247,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3723,2.9813,-3.8797) mvmt=(0.4051,0.0247,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8607,-0.6512,0.4653) mvmt=(0.4051,0.0247,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.9435,1.5117,2.0850) mvmt=(-0.0247,0.4051,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.0315,1.2717,1.9800) mvmt=(-0.0247,0.4051,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.0315,-0.9396,0.6300) mvmt=(-0.0247,0.4051,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6243,3.5688,1.9853) mvmt=(0.4051,0.0247,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9107,3.5688,3.4853) mvmt=(0.4051,0.0247,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.5056,3.5688,3.2172) mvmt=(0.0000,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.931,97.237) lpos=(2.506,3.569,3.217) lprev=(2.506,3.544,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.5688,3.2172) mvmt=(0.0000,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.5688,3.2172) mvmt=(0.0000,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.5688,-1.2678) mvmt=(0.0000,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.9813,-4.1278) mvmt=(0.0000,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.9435,1.1066,1.8369) mvmt=(-0.0247,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.0315,0.8666,1.7319) mvmt=(-0.0247,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.0315,-1.3446,0.3819) mvmt=(-0.0247,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.5688,1.7372) mvmt=(0.0000,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.5688,3.2372) mvmt=(0.0000,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.5688,2.4672) mvmt=(0.0000,0.0247,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,7.931,96.487) lpos=(2.506,3.569,2.467) lprev=(2.506,3.544,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.5688,2.4672) mvmt=(0.0000,0.0247,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9435,1.1066,1.0869) mvmt=(-0.0247,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0315,0.8666,0.9819) mvmt=(-0.0247,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0315,0.8666,0.9819) out=(0.0315,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.5688,3.2172) mvmt=(0.0000,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.931,97.237) lpos=(2.506,3.569,3.217) lprev=(2.506,3.544,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.5688,3.2172) mvmt=(0.0000,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.5688,3.2172) mvmt=(0.0000,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.5688,-1.2678) mvmt=(0.0000,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.9813,-4.1278) mvmt=(0.0000,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9435,1.1066,1.8369) mvmt=(-0.0247,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0315,0.8666,1.7319) mvmt=(-0.0247,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0315,-1.3446,0.3819) mvmt=(-0.0247,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.5688,1.7372) mvmt=(0.0000,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.5688,3.2372) mvmt=(0.0000,0.0247,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.6271,3.2172) mvmt=(0.0000,0.0584,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.873,97.237) lpos=(2.506,3.627,3.217) lprev=(2.506,3.569,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.6271,3.2172) mvmt=(0.0000,0.0584,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.6271,3.2172) mvmt=(0.0000,0.0584,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.6271,-1.2678) mvmt=(0.0000,0.0584,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.0396,-4.1278) mvmt=(0.0000,0.0584,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0019,1.1066,1.8369) mvmt=(-0.0584,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0269,0.8666,1.7319) mvmt=(-0.0584,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0269,-1.3446,0.3819) mvmt=(-0.0584,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.6271,1.7372) mvmt=(0.0000,0.0584,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.6271,3.2372) mvmt=(0.0000,0.0584,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.6271,2.4672) mvmt=(0.0000,0.0584,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,7.873,96.487) lpos=(2.506,3.627,2.467) lprev=(2.506,3.569,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.6271,2.4672) mvmt=(0.0000,0.0584,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0019,1.1066,1.0869) mvmt=(-0.0584,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0269,0.8666,0.9819) mvmt=(-0.0584,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0269,0.8666,0.9819) out=(-0.0269,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.6271,3.2172) mvmt=(0.0000,0.0584,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.873,97.237) lpos=(2.506,3.627,3.217) lprev=(2.506,3.569,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.6271,3.2172) mvmt=(0.0000,0.0584,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.6271,3.2172) mvmt=(0.0000,0.0584,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.6271,-1.2678) mvmt=(0.0000,0.0584,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.0396,-4.1278) mvmt=(0.0000,0.0584,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0019,1.1066,1.8369) mvmt=(-0.0584,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0269,0.8666,1.7319) mvmt=(-0.0584,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0269,-1.3446,0.3819) mvmt=(-0.0584,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.6271,1.7372) mvmt=(0.0000,0.0584,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.6271,3.2372) mvmt=(0.0000,0.0584,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9023,3.7173,3.2172) mvmt=(0.3967,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.598,7.783,97.237) lpos=(2.902,3.717,3.217) lprev=(2.506,3.627,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9023,3.7173,3.2172) mvmt=(0.3967,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9023,3.7173,3.2172) mvmt=(0.3967,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6327,3.7173,-1.2678) mvmt=(0.3967,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9323,0.4401,0.2222) mvmt=(0.3967,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8543,3.1298,-4.1278) mvmt=(0.3967,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3807,3.1298,-4.1278) mvmt=(0.3967,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8523,-0.5027,0.2172) mvmt=(0.3967,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0920,1.5033,1.8369) mvmt=(-0.0902,0.3967,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1170,1.2633,1.7319) mvmt=(-0.0902,0.3967,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9023,3.7173,3.2172) mvmt=(0.3967,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.598,7.783,97.237) lpos=(2.902,3.717,3.217) lprev=(2.506,3.627,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9023,3.7173,3.2172) mvmt=(0.3967,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9023,3.7173,3.2172) mvmt=(0.3967,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6327,3.7173,-1.2678) mvmt=(0.3967,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9323,0.4401,0.2222) mvmt=(0.3967,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8543,3.1298,-4.1278) mvmt=(0.3967,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3807,3.1298,-4.1278) mvmt=(0.3967,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8523,-0.5027,0.2172) mvmt=(0.3967,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0920,1.5033,1.8369) mvmt=(-0.0902,0.3967,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1170,1.2633,1.7319) mvmt=(-0.0902,0.3967,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1170,1.2633,1.7319) out=(-0.1170,1.2633,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9023,3.7173,3.4653) mvmt=(0.3967,0.0902,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.598,7.783,97.485) lpos=(2.902,3.717,3.465) lprev=(2.506,3.627,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9023,3.7173,3.4653) mvmt=(0.3967,0.0902,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6327,3.7173,-1.0197) mvmt=(0.3967,0.0902,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9323,0.4401,0.4703) mvmt=(0.3967,0.0902,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8543,3.1298,-3.8797) mvmt=(0.3967,0.0902,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3807,3.1298,-3.8797) mvmt=(0.3967,0.0902,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8523,-0.5027,0.4653) mvmt=(0.3967,0.0902,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.0920,1.5033,2.0850) mvmt=(-0.0902,0.3967,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.1170,1.2633,1.9800) mvmt=(-0.0902,0.3967,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.1170,-0.9479,0.6300) mvmt=(-0.0902,0.3967,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6327,3.7173,1.9853) mvmt=(0.3967,0.0902,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9023,3.7173,3.4853) mvmt=(0.3967,0.0902,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9023,3.7173,3.4653) mvmt=(0.3967,0.0902,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.598,7.783,97.485) lpos=(2.902,3.717,3.465) lprev=(2.506,3.627,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9023,3.7173,3.4653) mvmt=(0.3967,0.0902,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6327,3.7173,-1.0197) mvmt=(0.3967,0.0902,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9323,0.4401,0.4703) mvmt=(0.3967,0.0902,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8543,3.1298,-3.8797) mvmt=(0.3967,0.0902,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3807,3.1298,-3.8797) mvmt=(0.3967,0.0902,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8523,-0.5027,0.4653) mvmt=(0.3967,0.0902,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.0920,1.5033,2.0850) mvmt=(-0.0902,0.3967,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.1170,1.2633,1.9800) mvmt=(-0.0902,0.3967,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.1170,-0.9479,0.6300) mvmt=(-0.0902,0.3967,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6327,3.7173,1.9853) mvmt=(0.3967,0.0902,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9023,3.7173,3.4853) mvmt=(0.3967,0.0902,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.5056,3.7173,3.2172) mvmt=(0.0000,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.783,97.237) lpos=(2.506,3.717,3.217) lprev=(2.506,3.627,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.7173,3.2172) mvmt=(0.0000,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.7173,3.2172) mvmt=(0.0000,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.7173,-1.2678) mvmt=(0.0000,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.1298,-4.1278) mvmt=(0.0000,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.0920,1.1066,1.8369) mvmt=(-0.0902,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.1170,0.8666,1.7319) mvmt=(-0.0902,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.1170,-1.3446,0.3819) mvmt=(-0.0902,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.7173,1.7372) mvmt=(0.0000,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.7173,3.2372) mvmt=(0.0000,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.7173,2.4672) mvmt=(0.0000,0.0902,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,7.783,96.487) lpos=(2.506,3.717,2.467) lprev=(2.506,3.627,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.7173,2.4672) mvmt=(0.0000,0.0902,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0920,1.1066,1.0869) mvmt=(-0.0902,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1170,0.8666,0.9819) mvmt=(-0.0902,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1170,0.8666,0.9819) out=(-0.1170,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.7173,3.2172) mvmt=(0.0000,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.783,97.237) lpos=(2.506,3.717,3.217) lprev=(2.506,3.627,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.7173,3.2172) mvmt=(0.0000,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.7173,3.2172) mvmt=(0.0000,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.7173,-1.2678) mvmt=(0.0000,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.1298,-4.1278) mvmt=(0.0000,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0920,1.1066,1.8369) mvmt=(-0.0902,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1170,0.8666,1.7319) mvmt=(-0.0902,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1170,-1.3446,0.3819) mvmt=(-0.0902,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.7173,1.7372) mvmt=(0.0000,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.7173,3.2372) mvmt=(0.0000,0.0902,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.8475,3.2172) mvmt=(0.0000,0.1302,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.652,97.237) lpos=(2.506,3.848,3.217) lprev=(2.506,3.717,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.8475,3.2172) mvmt=(0.0000,0.1302,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.8475,3.2172) mvmt=(0.0000,0.1302,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.8475,-1.2678) mvmt=(0.0000,0.1302,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.2600,-4.1278) mvmt=(0.0000,0.1302,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.1066,1.8369) mvmt=(-0.1302,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,0.8666,1.7319) mvmt=(-0.1302,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,-1.3446,0.3819) mvmt=(-0.1302,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.8475,1.7372) mvmt=(0.0000,0.1302,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.8475,3.2372) mvmt=(0.0000,0.1302,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.8475,2.4672) mvmt=(0.0000,0.1302,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,7.652,96.487) lpos=(2.506,3.848,2.467) lprev=(2.506,3.717,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.8475,2.4672) mvmt=(0.0000,0.1302,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2223,1.1066,1.0869) mvmt=(-0.1302,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,0.8666,0.9819) mvmt=(-0.1302,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2473,0.8666,0.9819) out=(-0.2473,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.8475,3.2172) mvmt=(0.0000,0.1302,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.652,97.237) lpos=(2.506,3.848,3.217) lprev=(2.506,3.717,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.8475,3.2172) mvmt=(0.0000,0.1302,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.8475,3.2172) mvmt=(0.0000,0.1302,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.8475,-1.2678) mvmt=(0.0000,0.1302,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.2600,-4.1278) mvmt=(0.0000,0.1302,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.1066,1.8369) mvmt=(-0.1302,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,0.8666,1.7319) mvmt=(-0.1302,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,-1.3446,0.3819) mvmt=(-0.1302,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.8475,1.7372) mvmt=(0.0000,0.1302,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.8475,3.2372) mvmt=(0.0000,0.1302,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9149,3.9860,3.2172) mvmt=(0.4093,0.1385,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.585,7.514,97.237) lpos=(2.915,3.986,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9149,3.9860,3.2172) mvmt=(0.4093,0.1385,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9149,3.9860,3.2172) mvmt=(0.4093,0.1385,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9149,3.9860,3.2172) mvmt=(0.4093,0.1385,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.9149,3.9860,3.2172) out=(2.9149,3.9860,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.585,7.514,97.237) lpos=(2.915,3.986,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.9149,3.9860,3.4800) mvmt=(0.4093,0.1385,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.585,7.514,97.500) lpos=(2.915,3.986,3.480) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9149,3.9860,3.4800) mvmt=(0.4093,0.1385,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6201,3.9860,-1.0050) mvmt=(0.4093,0.1385,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(4.9449,0.7088,0.4850) mvmt=(0.4093,0.1385,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8669,3.3985,-3.8650) mvmt=(0.4093,0.1385,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.3681,3.3985,-3.8650) mvmt=(0.4093,0.1385,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8649,-0.2340,0.4800) mvmt=(0.4093,0.1385,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.3607,1.5159,2.0997) mvmt=(-0.1385,0.4093,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3857,1.2759,1.9947) mvmt=(-0.1385,0.4093,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3857,-0.9354,0.6447) mvmt=(-0.1385,0.4093,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.6201,3.9860,2.0000) mvmt=(0.4093,0.1385,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.9149,3.9860,3.5000) mvmt=(0.4093,0.1385,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.9149,3.9860,3.4800) mvmt=(0.4093,0.1385,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.585,7.514,97.500) lpos=(2.915,3.986,3.480) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9149,3.9860,3.4800) mvmt=(0.4093,0.1385,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6201,3.9860,-1.0050) mvmt=(0.4093,0.1385,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(4.9449,0.7088,0.4850) mvmt=(0.4093,0.1385,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8669,3.3985,-3.8650) mvmt=(0.4093,0.1385,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.3681,3.3985,-3.8650) mvmt=(0.4093,0.1385,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8649,-0.2340,0.4800) mvmt=(0.4093,0.1385,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.3607,1.5159,2.0997) mvmt=(-0.1385,0.4093,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3857,1.2759,1.9947) mvmt=(-0.1385,0.4093,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3857,-0.9354,0.6447) mvmt=(-0.1385,0.4093,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.6201,3.9860,2.0000) mvmt=(0.4093,0.1385,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.9149,3.9860,3.5000) mvmt=(0.4093,0.1385,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Slid +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=4 halted=False +[push-back-disp] site=dispatch center=(2.9149,3.8475,3.2172) mvmt=(0.4093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.585,7.652,97.237) lpos=(2.915,3.848,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9149,3.8475,3.2172) mvmt=(0.4093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9149,3.8475,3.2172) mvmt=(0.4093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6201,3.8475,-1.2678) mvmt=(0.4093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(4.9449,0.5703,0.2222) mvmt=(0.4093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8669,3.2600,-4.1278) mvmt=(0.4093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.3681,3.2600,-4.1278) mvmt=(0.4093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8649,-0.3725,0.2172) mvmt=(0.4093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.5159,1.8369) mvmt=(0.0000,0.4093,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2759,1.7319) mvmt=(0.0000,0.4093,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.9149,3.8475,3.2172) mvmt=(0.4093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.585,7.652,97.237) lpos=(2.915,3.848,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9149,3.8475,3.2172) mvmt=(0.4093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9149,3.8475,3.2172) mvmt=(0.4093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6201,3.8475,-1.2678) mvmt=(0.4093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9449,0.5703,0.2222) mvmt=(0.4093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8669,3.2600,-4.1278) mvmt=(0.4093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3681,3.2600,-4.1278) mvmt=(0.4093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8649,-0.3725,0.2172) mvmt=(0.4093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.5159,1.8369) mvmt=(0.0000,0.4093,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2759,1.7319) mvmt=(0.0000,0.4093,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2473,1.2759,1.7319) out=(-0.2473,1.2759,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9149,3.8475,3.4653) mvmt=(0.4093,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.585,7.652,97.485) lpos=(2.915,3.848,3.465) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9149,3.8475,3.4653) mvmt=(0.4093,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6201,3.8475,-1.0197) mvmt=(0.4093,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9449,0.5703,0.4703) mvmt=(0.4093,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8669,3.2600,-3.8797) mvmt=(0.4093,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3681,3.2600,-3.8797) mvmt=(0.4093,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8649,-0.3725,0.4653) mvmt=(0.4093,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.5159,2.0850) mvmt=(0.0000,0.4093,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2759,1.9800) mvmt=(0.0000,0.4093,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,-0.9354,0.6300) mvmt=(0.0000,0.4093,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6201,3.8475,1.9853) mvmt=(0.4093,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9149,3.8475,3.4853) mvmt=(0.4093,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9149,3.8475,3.4653) mvmt=(0.4093,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.585,7.652,97.485) lpos=(2.915,3.848,3.465) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9149,3.8475,3.4653) mvmt=(0.4093,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6201,3.8475,-1.0197) mvmt=(0.4093,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9449,0.5703,0.4703) mvmt=(0.4093,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8669,3.2600,-3.8797) mvmt=(0.4093,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3681,3.2600,-3.8797) mvmt=(0.4093,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8649,-0.3725,0.4653) mvmt=(0.4093,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.5159,2.0850) mvmt=(0.0000,0.4093,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2759,1.9800) mvmt=(0.0000,0.4093,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,-0.9354,0.6300) mvmt=(0.0000,0.4093,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6201,3.8475,1.9853) mvmt=(0.4093,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9149,3.8475,3.4853) mvmt=(0.4093,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.9779,3.2172) mvmt=(0.0000,0.1304,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.522,97.237) lpos=(2.506,3.978,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9779,3.2172) mvmt=(0.0000,0.1304,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.9779,3.2172) mvmt=(0.0000,0.1304,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9779,3.2172) mvmt=(0.0000,0.1304,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.9779,3.2172) out=(2.5056,3.9779,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.522,97.237) lpos=(2.506,3.978,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9779,3.4800) mvmt=(0.0000,0.1304,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.522,97.500) lpos=(2.506,3.978,3.480) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9779,3.4800) mvmt=(0.0000,0.1304,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9779,-1.0050) mvmt=(0.0000,0.1304,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.3904,-3.8650) mvmt=(0.0000,0.1304,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3904,-3.8650) mvmt=(0.0000,0.1304,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.2421,0.4800) mvmt=(0.0000,0.1304,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.3526,1.1066,2.0997) mvmt=(-0.1304,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3776,0.8666,1.9947) mvmt=(-0.1304,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3776,-1.3446,0.6447) mvmt=(-0.1304,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9779,2.0000) mvmt=(0.0000,0.1304,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9779,3.5000) mvmt=(0.0000,0.1304,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9779,3.4800) mvmt=(0.0000,0.1304,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.522,97.500) lpos=(2.506,3.978,3.480) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9779,3.4800) mvmt=(0.0000,0.1304,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9779,-1.0050) mvmt=(0.0000,0.1304,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.3904,-3.8650) mvmt=(0.0000,0.1304,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3904,-3.8650) mvmt=(0.0000,0.1304,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.2421,0.4800) mvmt=(0.0000,0.1304,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.3526,1.1066,2.0997) mvmt=(-0.1304,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3776,0.8666,1.9947) mvmt=(-0.1304,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3776,-1.3446,0.6447) mvmt=(-0.1304,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9779,2.0000) mvmt=(0.0000,0.1304,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9779,3.5000) mvmt=(0.0000,0.1304,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.8989,3.8475,3.2172) mvmt=(0.3932,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.601,7.652,97.237) lpos=(2.899,3.848,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8989,3.8475,3.2172) mvmt=(0.3932,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8989,3.8475,3.2172) mvmt=(0.3932,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6361,3.8475,-1.2678) mvmt=(0.3932,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8509,3.2600,-4.1278) mvmt=(0.3932,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3841,3.2600,-4.1278) mvmt=(0.3932,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8489,-0.3725,0.2172) mvmt=(0.3932,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.4999,1.8369) mvmt=(0.0000,0.3932,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2598,1.7319) mvmt=(0.0000,0.3932,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8989,3.8475,3.2172) mvmt=(0.3932,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.601,7.652,97.237) lpos=(2.899,3.848,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8989,3.8475,3.2172) mvmt=(0.3932,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8989,3.8475,3.2172) mvmt=(0.3932,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6361,3.8475,-1.2678) mvmt=(0.3932,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8509,3.2600,-4.1278) mvmt=(0.3932,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3841,3.2600,-4.1278) mvmt=(0.3932,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8489,-0.3725,0.2172) mvmt=(0.3932,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.4999,1.8369) mvmt=(0.0000,0.3932,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2598,1.7319) mvmt=(0.0000,0.3932,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2473,1.2598,1.7319) out=(-0.2473,1.2598,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.8989,3.8475,3.4653) mvmt=(0.3932,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.601,7.652,97.485) lpos=(2.899,3.848,3.465) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8989,3.8475,3.4653) mvmt=(0.3932,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6361,3.8475,-1.0197) mvmt=(0.3932,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9289,0.5703,0.4703) mvmt=(0.3932,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8509,3.2600,-3.8797) mvmt=(0.3932,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3841,3.2600,-3.8797) mvmt=(0.3932,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8489,-0.3725,0.4653) mvmt=(0.3932,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.4999,2.0850) mvmt=(0.0000,0.3932,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2598,1.9800) mvmt=(0.0000,0.3932,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,-0.9514,0.6300) mvmt=(0.0000,0.3932,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6361,3.8475,1.9853) mvmt=(0.3932,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8989,3.8475,3.4853) mvmt=(0.3932,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8989,3.8475,3.4653) mvmt=(0.3932,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.601,7.652,97.485) lpos=(2.899,3.848,3.465) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8989,3.8475,3.4653) mvmt=(0.3932,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6361,3.8475,-1.0197) mvmt=(0.3932,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9289,0.5703,0.4703) mvmt=(0.3932,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8509,3.2600,-3.8797) mvmt=(0.3932,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3841,3.2600,-3.8797) mvmt=(0.3932,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8489,-0.3725,0.4653) mvmt=(0.3932,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.4999,2.0850) mvmt=(0.0000,0.3932,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2598,1.9800) mvmt=(0.0000,0.3932,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,-0.9514,0.6300) mvmt=(0.0000,0.3932,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6361,3.8475,1.9853) mvmt=(0.3932,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8989,3.8475,3.4853) mvmt=(0.3932,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.9785,3.2172) mvmt=(0.0000,0.1310,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.521,97.237) lpos=(2.506,3.979,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9785,3.2172) mvmt=(0.0000,0.1310,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.9785,3.2172) mvmt=(0.0000,0.1310,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9785,3.2172) mvmt=(0.0000,0.1310,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.9785,3.2172) out=(2.5056,3.9785,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.521,97.237) lpos=(2.506,3.979,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9785,3.4800) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.521,97.500) lpos=(2.506,3.979,3.480) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9785,3.4800) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9785,-1.0050) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.3910,-3.8650) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3910,-3.8650) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.2415,0.4800) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,1.1066,2.0997) mvmt=(-0.1310,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3783,0.8666,1.9947) mvmt=(-0.1310,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3783,-1.3446,0.6447) mvmt=(-0.1310,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9785,2.0000) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9785,3.5000) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9785,3.4800) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.521,97.500) lpos=(2.506,3.979,3.480) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9785,3.4800) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9785,-1.0050) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.3910,-3.8650) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3910,-3.8650) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.2415,0.4800) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,1.1066,2.0997) mvmt=(-0.1310,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3783,0.8666,1.9947) mvmt=(-0.1310,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3783,-1.3446,0.6447) mvmt=(-0.1310,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9785,2.0000) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9785,3.5000) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.8970,3.8475,3.2172) mvmt=(0.3913,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.603,7.652,97.237) lpos=(2.897,3.848,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8970,3.8475,3.2172) mvmt=(0.3913,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8970,3.8475,3.2172) mvmt=(0.3913,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6380,3.8475,-1.2678) mvmt=(0.3913,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8490,3.2600,-4.1278) mvmt=(0.3913,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3860,3.2600,-4.1278) mvmt=(0.3913,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8470,-0.3725,0.2172) mvmt=(0.3913,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.4980,1.8369) mvmt=(0.0000,0.3913,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2580,1.7319) mvmt=(0.0000,0.3913,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8970,3.8475,3.2172) mvmt=(0.3913,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.603,7.652,97.237) lpos=(2.897,3.848,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8970,3.8475,3.2172) mvmt=(0.3913,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8970,3.8475,3.2172) mvmt=(0.3913,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6380,3.8475,-1.2678) mvmt=(0.3913,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8490,3.2600,-4.1278) mvmt=(0.3913,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3860,3.2600,-4.1278) mvmt=(0.3913,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8470,-0.3725,0.2172) mvmt=(0.3913,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.4980,1.8369) mvmt=(0.0000,0.3913,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2580,1.7319) mvmt=(0.0000,0.3913,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2473,1.2580,1.7319) out=(-0.2473,1.2580,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.8970,3.8475,3.4653) mvmt=(0.3913,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.603,7.652,97.485) lpos=(2.897,3.848,3.465) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8970,3.8475,3.4653) mvmt=(0.3913,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6380,3.8475,-1.0197) mvmt=(0.3913,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9270,0.5703,0.4703) mvmt=(0.3913,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8490,3.2600,-3.8797) mvmt=(0.3913,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3860,3.2600,-3.8797) mvmt=(0.3913,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8470,-0.3725,0.4653) mvmt=(0.3913,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.4980,2.0850) mvmt=(0.0000,0.3913,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2580,1.9800) mvmt=(0.0000,0.3913,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,-0.9533,0.6300) mvmt=(0.0000,0.3913,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6380,3.8475,1.9853) mvmt=(0.3913,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8970,3.8475,3.4853) mvmt=(0.3913,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8970,3.8475,3.4653) mvmt=(0.3913,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.603,7.652,97.485) lpos=(2.897,3.848,3.465) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8970,3.8475,3.4653) mvmt=(0.3913,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6380,3.8475,-1.0197) mvmt=(0.3913,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9270,0.5703,0.4703) mvmt=(0.3913,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8490,3.2600,-3.8797) mvmt=(0.3913,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3860,3.2600,-3.8797) mvmt=(0.3913,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8470,-0.3725,0.4653) mvmt=(0.3913,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.4980,2.0850) mvmt=(0.0000,0.3913,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2580,1.9800) mvmt=(0.0000,0.3913,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,-0.9533,0.6300) mvmt=(0.0000,0.3913,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6380,3.8475,1.9853) mvmt=(0.3913,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8970,3.8475,3.4853) mvmt=(0.3913,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.9804,3.2172) mvmt=(0.0000,0.1329,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.520,97.237) lpos=(2.506,3.980,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9804,3.2172) mvmt=(0.0000,0.1329,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.9804,3.2172) mvmt=(0.0000,0.1329,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9804,3.2172) mvmt=(0.0000,0.1329,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.9804,3.2172) out=(2.5056,3.9804,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.520,97.237) lpos=(2.506,3.980,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9804,3.4800) mvmt=(0.0000,0.1329,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.520,97.500) lpos=(2.506,3.980,3.480) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9804,3.4800) mvmt=(0.0000,0.1329,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9804,-1.0050) mvmt=(0.0000,0.1329,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.3929,-3.8650) mvmt=(0.0000,0.1329,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3929,-3.8650) mvmt=(0.0000,0.1329,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.2396,0.4800) mvmt=(0.0000,0.1329,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.3552,1.1066,2.0997) mvmt=(-0.1329,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3802,0.8666,1.9947) mvmt=(-0.1329,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3802,-1.3446,0.6447) mvmt=(-0.1329,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9804,2.0000) mvmt=(0.0000,0.1329,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9804,3.5000) mvmt=(0.0000,0.1329,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9804,3.4800) mvmt=(0.0000,0.1329,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.520,97.500) lpos=(2.506,3.980,3.480) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9804,3.4800) mvmt=(0.0000,0.1329,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9804,-1.0050) mvmt=(0.0000,0.1329,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.3929,-3.8650) mvmt=(0.0000,0.1329,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3929,-3.8650) mvmt=(0.0000,0.1329,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.2396,0.4800) mvmt=(0.0000,0.1329,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.3552,1.1066,2.0997) mvmt=(-0.1329,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3802,0.8666,1.9947) mvmt=(-0.1329,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3802,-1.3446,0.6447) mvmt=(-0.1329,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9804,2.0000) mvmt=(0.0000,0.1329,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9804,3.5000) mvmt=(0.0000,0.1329,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9229,3.8475,3.2172) mvmt=(0.4173,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.577,7.652,97.237) lpos=(2.923,3.848,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9229,3.8475,3.2172) mvmt=(0.4173,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9229,3.8475,3.2172) mvmt=(0.4173,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6121,3.8475,-1.2678) mvmt=(0.4173,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9529,0.5703,0.2222) mvmt=(0.4173,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8749,3.2600,-4.1278) mvmt=(0.4173,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3601,3.2600,-4.1278) mvmt=(0.4173,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8729,-0.3725,0.2172) mvmt=(0.4173,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.5239,1.8369) mvmt=(0.0000,0.4173,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2839,1.7319) mvmt=(0.0000,0.4173,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9229,3.8475,3.2172) mvmt=(0.4173,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.577,7.652,97.237) lpos=(2.923,3.848,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9229,3.8475,3.2172) mvmt=(0.4173,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9229,3.8475,3.2172) mvmt=(0.4173,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6121,3.8475,-1.2678) mvmt=(0.4173,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9529,0.5703,0.2222) mvmt=(0.4173,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8749,3.2600,-4.1278) mvmt=(0.4173,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3601,3.2600,-4.1278) mvmt=(0.4173,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8729,-0.3725,0.2172) mvmt=(0.4173,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.5239,1.8369) mvmt=(0.0000,0.4173,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2839,1.7319) mvmt=(0.0000,0.4173,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2473,1.2839,1.7319) out=(-0.2473,1.2839,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9229,3.8475,3.4653) mvmt=(0.4173,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.577,7.652,97.485) lpos=(2.923,3.848,3.465) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9229,3.8475,3.4653) mvmt=(0.4173,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6121,3.8475,-1.0197) mvmt=(0.4173,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9529,0.5703,0.4703) mvmt=(0.4173,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8749,3.2600,-3.8797) mvmt=(0.4173,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3601,3.2600,-3.8797) mvmt=(0.4173,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8729,-0.3725,0.4653) mvmt=(0.4173,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.5239,2.0850) mvmt=(0.0000,0.4173,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2839,1.9800) mvmt=(0.0000,0.4173,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,-0.9274,0.6300) mvmt=(0.0000,0.4173,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6121,3.8475,1.9853) mvmt=(0.4173,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9229,3.8475,3.4853) mvmt=(0.4173,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9229,3.8475,3.4653) mvmt=(0.4173,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.577,7.652,97.485) lpos=(2.923,3.848,3.465) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9229,3.8475,3.4653) mvmt=(0.4173,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6121,3.8475,-1.0197) mvmt=(0.4173,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9529,0.5703,0.4703) mvmt=(0.4173,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8749,3.2600,-3.8797) mvmt=(0.4173,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3601,3.2600,-3.8797) mvmt=(0.4173,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8729,-0.3725,0.4653) mvmt=(0.4173,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.5239,2.0850) mvmt=(0.0000,0.4173,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2839,1.9800) mvmt=(0.0000,0.4173,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,-0.9274,0.6300) mvmt=(0.0000,0.4173,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6121,3.8475,1.9853) mvmt=(0.4173,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9229,3.8475,3.4853) mvmt=(0.4173,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.9898,3.2172) mvmt=(0.0000,0.1423,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.510,97.237) lpos=(2.506,3.990,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9898,3.2172) mvmt=(0.0000,0.1423,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.9898,3.2172) mvmt=(0.0000,0.1423,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9898,3.2172) mvmt=(0.0000,0.1423,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.9898,3.2172) out=(2.5056,3.9898,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.510,97.237) lpos=(2.506,3.990,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9898,3.4800) mvmt=(0.0000,0.1423,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.510,97.500) lpos=(2.506,3.990,3.480) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9898,3.4800) mvmt=(0.0000,0.1423,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9898,-1.0050) mvmt=(0.0000,0.1423,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.4023,-3.8650) mvmt=(0.0000,0.1423,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.4023,-3.8650) mvmt=(0.0000,0.1423,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.2302,0.4800) mvmt=(0.0000,0.1423,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.3646,1.1066,2.0997) mvmt=(-0.1423,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3896,0.8666,1.9947) mvmt=(-0.1423,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3896,-1.3446,0.6447) mvmt=(-0.1423,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9898,2.0000) mvmt=(0.0000,0.1423,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9898,3.5000) mvmt=(0.0000,0.1423,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9898,3.4800) mvmt=(0.0000,0.1423,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.510,97.500) lpos=(2.506,3.990,3.480) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9898,3.4800) mvmt=(0.0000,0.1423,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9898,-1.0050) mvmt=(0.0000,0.1423,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.4023,-3.8650) mvmt=(0.0000,0.1423,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.4023,-3.8650) mvmt=(0.0000,0.1423,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.2302,0.4800) mvmt=(0.0000,0.1423,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.3646,1.1066,2.0997) mvmt=(-0.1423,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3896,0.8666,1.9947) mvmt=(-0.1423,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3896,-1.3446,0.6447) mvmt=(-0.1423,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9898,2.0000) mvmt=(0.0000,0.1423,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9898,3.5000) mvmt=(0.0000,0.1423,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[input] SelectLeft Press +[input] MovementForward Press +[push-back-disp] site=dispatch center=(2.9018,3.8475,3.2172) mvmt=(0.3962,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.598,7.652,97.237) lpos=(2.902,3.848,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9018,3.8475,3.2172) mvmt=(0.3962,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9018,3.8475,3.2172) mvmt=(0.3962,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6332,3.8475,-1.2678) mvmt=(0.3962,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8538,3.2600,-4.1278) mvmt=(0.3962,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3811,3.2600,-4.1278) mvmt=(0.3962,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8518,-0.3725,0.2172) mvmt=(0.3962,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.5028,1.8369) mvmt=(0.0000,0.3962,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2628,1.7319) mvmt=(0.0000,0.3962,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9018,3.8475,3.2172) mvmt=(0.3962,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.598,7.652,97.237) lpos=(2.902,3.848,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9018,3.8475,3.2172) mvmt=(0.3962,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9018,3.8475,3.2172) mvmt=(0.3962,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6332,3.8475,-1.2678) mvmt=(0.3962,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8538,3.2600,-4.1278) mvmt=(0.3962,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3811,3.2600,-4.1278) mvmt=(0.3962,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8518,-0.3725,0.2172) mvmt=(0.3962,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.5028,1.8369) mvmt=(0.0000,0.3962,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2628,1.7319) mvmt=(0.0000,0.3962,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2473,1.2628,1.7319) out=(-0.2473,1.2628,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9018,3.8475,3.4653) mvmt=(0.3962,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.598,7.652,97.485) lpos=(2.902,3.848,3.465) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9018,3.8475,3.4653) mvmt=(0.3962,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6332,3.8475,-1.0197) mvmt=(0.3962,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9318,0.5703,0.4703) mvmt=(0.3962,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8538,3.2600,-3.8797) mvmt=(0.3962,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3811,3.2600,-3.8797) mvmt=(0.3962,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8518,-0.3725,0.4653) mvmt=(0.3962,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.5028,2.0850) mvmt=(0.0000,0.3962,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2628,1.9800) mvmt=(0.0000,0.3962,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,-0.9484,0.6300) mvmt=(0.0000,0.3962,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6332,3.8475,1.9853) mvmt=(0.3962,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9018,3.8475,3.4853) mvmt=(0.3962,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9018,3.8475,3.4653) mvmt=(0.3962,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.598,7.652,97.485) lpos=(2.902,3.848,3.465) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9018,3.8475,3.4653) mvmt=(0.3962,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6332,3.8475,-1.0197) mvmt=(0.3962,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9318,0.5703,0.4703) mvmt=(0.3962,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8538,3.2600,-3.8797) mvmt=(0.3962,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3811,3.2600,-3.8797) mvmt=(0.3962,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8518,-0.3725,0.4653) mvmt=(0.3962,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.5028,2.0850) mvmt=(0.0000,0.3962,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2628,1.9800) mvmt=(0.0000,0.3962,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,-0.9484,0.6300) mvmt=(0.0000,0.3962,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6332,3.8475,1.9853) mvmt=(0.3962,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9018,3.8475,3.4853) mvmt=(0.3962,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.9807,3.2172) mvmt=(0.0000,0.1332,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.519,97.237) lpos=(2.506,3.981,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9807,3.2172) mvmt=(0.0000,0.1332,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.9807,3.2172) mvmt=(0.0000,0.1332,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9807,3.2172) mvmt=(0.0000,0.1332,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.9807,3.2172) out=(2.5056,3.9807,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.519,97.237) lpos=(2.506,3.981,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9807,3.4800) mvmt=(0.0000,0.1332,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.519,97.500) lpos=(2.506,3.981,3.480) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9807,3.4800) mvmt=(0.0000,0.1332,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9807,-1.0050) mvmt=(0.0000,0.1332,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.3932,-3.8650) mvmt=(0.0000,0.1332,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3932,-3.8650) mvmt=(0.0000,0.1332,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.2393,0.4800) mvmt=(0.0000,0.1332,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.3554,1.1066,2.0997) mvmt=(-0.1332,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3804,0.8666,1.9947) mvmt=(-0.1332,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3804,-1.3446,0.6447) mvmt=(-0.1332,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9807,2.0000) mvmt=(0.0000,0.1332,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9807,3.5000) mvmt=(0.0000,0.1332,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9807,3.4800) mvmt=(0.0000,0.1332,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.519,97.500) lpos=(2.506,3.981,3.480) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9807,3.4800) mvmt=(0.0000,0.1332,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9807,-1.0050) mvmt=(0.0000,0.1332,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.3932,-3.8650) mvmt=(0.0000,0.1332,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3932,-3.8650) mvmt=(0.0000,0.1332,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.2393,0.4800) mvmt=(0.0000,0.1332,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.3554,1.1066,2.0997) mvmt=(-0.1332,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3804,0.8666,1.9947) mvmt=(-0.1332,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3804,-1.3446,0.6447) mvmt=(-0.1332,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9807,2.0000) mvmt=(0.0000,0.1332,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9807,3.5000) mvmt=(0.0000,0.1332,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9373,3.8475,3.2172) mvmt=(0.4317,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.563,7.652,97.237) lpos=(2.937,3.848,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9373,3.8475,3.2172) mvmt=(0.4317,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9373,3.8475,3.2172) mvmt=(0.4317,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5977,3.8475,-1.2678) mvmt=(0.4317,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9673,0.5703,0.2222) mvmt=(0.4317,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8893,3.2600,-4.1278) mvmt=(0.4317,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3457,3.2600,-4.1278) mvmt=(0.4317,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8873,-0.3725,0.2172) mvmt=(0.4317,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.5383,1.8369) mvmt=(0.0000,0.4317,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2983,1.7319) mvmt=(0.0000,0.4317,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9373,3.8475,3.2172) mvmt=(0.4317,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.563,7.652,97.237) lpos=(2.937,3.848,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9373,3.8475,3.2172) mvmt=(0.4317,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9373,3.8475,3.2172) mvmt=(0.4317,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5977,3.8475,-1.2678) mvmt=(0.4317,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9673,0.5703,0.2222) mvmt=(0.4317,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8893,3.2600,-4.1278) mvmt=(0.4317,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3457,3.2600,-4.1278) mvmt=(0.4317,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8873,-0.3725,0.2172) mvmt=(0.4317,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.5383,1.8369) mvmt=(0.0000,0.4317,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2983,1.7319) mvmt=(0.0000,0.4317,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2473,1.2983,1.7319) out=(-0.2473,1.2983,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9373,3.8475,3.4653) mvmt=(0.4317,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.563,7.652,97.485) lpos=(2.937,3.848,3.465) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9373,3.8475,3.4653) mvmt=(0.4317,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5977,3.8475,-1.0197) mvmt=(0.4317,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9673,0.5703,0.4703) mvmt=(0.4317,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8893,3.2600,-3.8797) mvmt=(0.4317,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3457,3.2600,-3.8797) mvmt=(0.4317,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8873,-0.3725,0.4653) mvmt=(0.4317,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.5383,2.0850) mvmt=(0.0000,0.4317,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2983,1.9800) mvmt=(0.0000,0.4317,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,-0.9130,0.6300) mvmt=(0.0000,0.4317,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.5977,3.8475,1.9853) mvmt=(0.4317,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9373,3.8475,3.4853) mvmt=(0.4317,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9373,3.8475,3.4653) mvmt=(0.4317,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.563,7.652,97.485) lpos=(2.937,3.848,3.465) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9373,3.8475,3.4653) mvmt=(0.4317,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5977,3.8475,-1.0197) mvmt=(0.4317,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9673,0.5703,0.4703) mvmt=(0.4317,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8893,3.2600,-3.8797) mvmt=(0.4317,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3457,3.2600,-3.8797) mvmt=(0.4317,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8873,-0.3725,0.4653) mvmt=(0.4317,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.5383,2.0850) mvmt=(0.0000,0.4317,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2983,1.9800) mvmt=(0.0000,0.4317,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,-0.9130,0.6300) mvmt=(0.0000,0.4317,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.5977,3.8475,1.9853) mvmt=(0.4317,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9373,3.8475,3.4853) mvmt=(0.4317,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.9855,3.2172) mvmt=(0.0000,0.1380,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.515,97.237) lpos=(2.506,3.985,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9855,3.2172) mvmt=(0.0000,0.1380,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.9855,3.2172) mvmt=(0.0000,0.1380,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9855,3.2172) mvmt=(0.0000,0.1380,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.9855,3.2172) out=(2.5056,3.9855,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.515,97.237) lpos=(2.506,3.985,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9855,3.4800) mvmt=(0.0000,0.1380,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.515,97.500) lpos=(2.506,3.985,3.480) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9855,3.4800) mvmt=(0.0000,0.1380,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9855,-1.0050) mvmt=(0.0000,0.1380,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.3980,-3.8650) mvmt=(0.0000,0.1380,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3980,-3.8650) mvmt=(0.0000,0.1380,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.2345,0.4800) mvmt=(0.0000,0.1380,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.3602,1.1066,2.0997) mvmt=(-0.1380,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3852,0.8666,1.9947) mvmt=(-0.1380,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3852,-1.3446,0.6447) mvmt=(-0.1380,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9855,2.0000) mvmt=(0.0000,0.1380,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9855,3.5000) mvmt=(0.0000,0.1380,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9855,3.4800) mvmt=(0.0000,0.1380,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.515,97.500) lpos=(2.506,3.985,3.480) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9855,3.4800) mvmt=(0.0000,0.1380,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9855,-1.0050) mvmt=(0.0000,0.1380,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.3980,-3.8650) mvmt=(0.0000,0.1380,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3980,-3.8650) mvmt=(0.0000,0.1380,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.2345,0.4800) mvmt=(0.0000,0.1380,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.3602,1.1066,2.0997) mvmt=(-0.1380,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3852,0.8666,1.9947) mvmt=(-0.1380,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3852,-1.3446,0.6447) mvmt=(-0.1380,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9855,2.0000) mvmt=(0.0000,0.1380,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9855,3.5000) mvmt=(0.0000,0.1380,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9383,3.8475,3.2172) mvmt=(0.4327,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.562,7.652,97.237) lpos=(2.938,3.848,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9383,3.8475,3.2172) mvmt=(0.4327,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9383,3.8475,3.2172) mvmt=(0.4327,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5967,3.8475,-1.2678) mvmt=(0.4327,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9683,0.5703,0.2222) mvmt=(0.4327,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8903,3.2600,-4.1278) mvmt=(0.4327,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3447,3.2600,-4.1278) mvmt=(0.4327,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8883,-0.3725,0.2172) mvmt=(0.4327,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.5393,1.8369) mvmt=(0.0000,0.4327,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2993,1.7319) mvmt=(0.0000,0.4327,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9383,3.8475,3.2172) mvmt=(0.4327,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.562,7.652,97.237) lpos=(2.938,3.848,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9383,3.8475,3.2172) mvmt=(0.4327,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9383,3.8475,3.2172) mvmt=(0.4327,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5967,3.8475,-1.2678) mvmt=(0.4327,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9683,0.5703,0.2222) mvmt=(0.4327,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8903,3.2600,-4.1278) mvmt=(0.4327,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3447,3.2600,-4.1278) mvmt=(0.4327,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8883,-0.3725,0.2172) mvmt=(0.4327,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.5393,1.8369) mvmt=(0.0000,0.4327,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2993,1.7319) mvmt=(0.0000,0.4327,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2473,1.2993,1.7319) out=(-0.2473,1.2993,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9383,3.8475,3.4653) mvmt=(0.4327,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.562,7.652,97.485) lpos=(2.938,3.848,3.465) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9383,3.8475,3.4653) mvmt=(0.4327,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5967,3.8475,-1.0197) mvmt=(0.4327,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9683,0.5703,0.4703) mvmt=(0.4327,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8903,3.2600,-3.8797) mvmt=(0.4327,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3447,3.2600,-3.8797) mvmt=(0.4327,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8883,-0.3725,0.4653) mvmt=(0.4327,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.5393,2.0850) mvmt=(0.0000,0.4327,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2993,1.9800) mvmt=(0.0000,0.4327,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,-0.9119,0.6300) mvmt=(0.0000,0.4327,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.5967,3.8475,1.9853) mvmt=(0.4327,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9383,3.8475,3.4853) mvmt=(0.4327,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9383,3.8475,3.4653) mvmt=(0.4327,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.562,7.652,97.485) lpos=(2.938,3.848,3.465) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9383,3.8475,3.4653) mvmt=(0.4327,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5967,3.8475,-1.0197) mvmt=(0.4327,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9683,0.5703,0.4703) mvmt=(0.4327,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8903,3.2600,-3.8797) mvmt=(0.4327,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3447,3.2600,-3.8797) mvmt=(0.4327,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8883,-0.3725,0.4653) mvmt=(0.4327,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.5393,2.0850) mvmt=(0.0000,0.4327,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2993,1.9800) mvmt=(0.0000,0.4327,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,-0.9119,0.6300) mvmt=(0.0000,0.4327,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.5967,3.8475,1.9853) mvmt=(0.4327,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9383,3.8475,3.4853) mvmt=(0.4327,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.9857,3.2172) mvmt=(0.0000,0.1382,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.514,97.237) lpos=(2.506,3.986,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9857,3.2172) mvmt=(0.0000,0.1382,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.9857,3.2172) mvmt=(0.0000,0.1382,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9857,3.2172) mvmt=(0.0000,0.1382,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.9857,3.2172) out=(2.5056,3.9857,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.514,97.237) lpos=(2.506,3.986,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9857,3.4800) mvmt=(0.0000,0.1382,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.514,97.500) lpos=(2.506,3.986,3.480) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9857,3.4800) mvmt=(0.0000,0.1382,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9857,-1.0050) mvmt=(0.0000,0.1382,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.3982,-3.8650) mvmt=(0.0000,0.1382,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3982,-3.8650) mvmt=(0.0000,0.1382,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.2343,0.4800) mvmt=(0.0000,0.1382,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.3605,1.1066,2.0997) mvmt=(-0.1382,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3855,0.8666,1.9947) mvmt=(-0.1382,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3855,-1.3446,0.6447) mvmt=(-0.1382,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9857,2.0000) mvmt=(0.0000,0.1382,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9857,3.5000) mvmt=(0.0000,0.1382,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9857,3.4800) mvmt=(0.0000,0.1382,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.514,97.500) lpos=(2.506,3.986,3.480) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9857,3.4800) mvmt=(0.0000,0.1382,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9857,-1.0050) mvmt=(0.0000,0.1382,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.3982,-3.8650) mvmt=(0.0000,0.1382,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3982,-3.8650) mvmt=(0.0000,0.1382,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.2343,0.4800) mvmt=(0.0000,0.1382,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.3605,1.1066,2.0997) mvmt=(-0.1382,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3855,0.8666,1.9947) mvmt=(-0.1382,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3855,-1.3446,0.6447) mvmt=(-0.1382,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9857,2.0000) mvmt=(0.0000,0.1382,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9857,3.5000) mvmt=(0.0000,0.1382,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9013,3.8475,3.2172) mvmt=(0.3957,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.599,7.652,97.237) lpos=(2.901,3.848,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9013,3.8475,3.2172) mvmt=(0.3957,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9013,3.8475,3.2172) mvmt=(0.3957,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6337,3.8475,-1.2678) mvmt=(0.3957,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8533,3.2600,-4.1278) mvmt=(0.3957,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3817,3.2600,-4.1278) mvmt=(0.3957,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8513,-0.3725,0.2172) mvmt=(0.3957,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.5023,1.8369) mvmt=(0.0000,0.3957,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2623,1.7319) mvmt=(0.0000,0.3957,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9013,3.8475,3.2172) mvmt=(0.3957,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.599,7.652,97.237) lpos=(2.901,3.848,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9013,3.8475,3.2172) mvmt=(0.3957,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9013,3.8475,3.2172) mvmt=(0.3957,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6337,3.8475,-1.2678) mvmt=(0.3957,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8533,3.2600,-4.1278) mvmt=(0.3957,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3817,3.2600,-4.1278) mvmt=(0.3957,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8513,-0.3725,0.2172) mvmt=(0.3957,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.5023,1.8369) mvmt=(0.0000,0.3957,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2623,1.7319) mvmt=(0.0000,0.3957,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2473,1.2623,1.7319) out=(-0.2473,1.2623,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9013,3.8475,3.4653) mvmt=(0.3957,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.599,7.652,97.485) lpos=(2.901,3.848,3.465) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9013,3.8475,3.4653) mvmt=(0.3957,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6337,3.8475,-1.0197) mvmt=(0.3957,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9313,0.5703,0.4703) mvmt=(0.3957,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8533,3.2600,-3.8797) mvmt=(0.3957,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3817,3.2600,-3.8797) mvmt=(0.3957,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8513,-0.3725,0.4653) mvmt=(0.3957,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.5023,2.0850) mvmt=(0.0000,0.3957,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2623,1.9800) mvmt=(0.0000,0.3957,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,-0.9489,0.6300) mvmt=(0.0000,0.3957,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6337,3.8475,1.9853) mvmt=(0.3957,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9013,3.8475,3.4853) mvmt=(0.3957,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9013,3.8475,3.4653) mvmt=(0.3957,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.599,7.652,97.485) lpos=(2.901,3.848,3.465) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9013,3.8475,3.4653) mvmt=(0.3957,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6337,3.8475,-1.0197) mvmt=(0.3957,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9313,0.5703,0.4703) mvmt=(0.3957,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8533,3.2600,-3.8797) mvmt=(0.3957,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3817,3.2600,-3.8797) mvmt=(0.3957,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8513,-0.3725,0.4653) mvmt=(0.3957,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.5023,2.0850) mvmt=(0.0000,0.3957,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2623,1.9800) mvmt=(0.0000,0.3957,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,-0.9489,0.6300) mvmt=(0.0000,0.3957,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6337,3.8475,1.9853) mvmt=(0.3957,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9013,3.8475,3.4853) mvmt=(0.3957,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.9781,3.2172) mvmt=(0.0000,0.1305,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.522,97.237) lpos=(2.506,3.978,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9781,3.2172) mvmt=(0.0000,0.1305,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.9781,3.2172) mvmt=(0.0000,0.1305,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9781,3.2172) mvmt=(0.0000,0.1305,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.9781,3.2172) out=(2.5056,3.9781,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.522,97.237) lpos=(2.506,3.978,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9781,3.4800) mvmt=(0.0000,0.1305,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.522,97.500) lpos=(2.506,3.978,3.480) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9781,3.4800) mvmt=(0.0000,0.1305,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9781,-1.0050) mvmt=(0.0000,0.1305,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.3906,-3.8650) mvmt=(0.0000,0.1305,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3906,-3.8650) mvmt=(0.0000,0.1305,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.2419,0.4800) mvmt=(0.0000,0.1305,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.3528,1.1066,2.0997) mvmt=(-0.1305,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3778,0.8666,1.9947) mvmt=(-0.1305,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3778,-1.3446,0.6447) mvmt=(-0.1305,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9781,2.0000) mvmt=(0.0000,0.1305,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9781,3.5000) mvmt=(0.0000,0.1305,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9781,3.4800) mvmt=(0.0000,0.1305,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.522,97.500) lpos=(2.506,3.978,3.480) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9781,3.4800) mvmt=(0.0000,0.1305,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9781,-1.0050) mvmt=(0.0000,0.1305,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.3906,-3.8650) mvmt=(0.0000,0.1305,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3906,-3.8650) mvmt=(0.0000,0.1305,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.2419,0.4800) mvmt=(0.0000,0.1305,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.3528,1.1066,2.0997) mvmt=(-0.1305,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3778,0.8666,1.9947) mvmt=(-0.1305,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3778,-1.3446,0.6447) mvmt=(-0.1305,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9781,2.0000) mvmt=(0.0000,0.1305,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9781,3.5000) mvmt=(0.0000,0.1305,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.8863,3.8475,3.2172) mvmt=(0.3807,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.614,7.652,97.237) lpos=(2.886,3.848,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8863,3.8475,3.2172) mvmt=(0.3807,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8863,3.8475,3.2172) mvmt=(0.3807,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6487,3.8475,-1.2678) mvmt=(0.3807,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8383,3.2600,-4.1278) mvmt=(0.3807,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3967,3.2600,-4.1278) mvmt=(0.3807,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8363,-0.3725,0.2172) mvmt=(0.3807,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.4873,1.8369) mvmt=(0.0000,0.3807,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2473,1.7319) mvmt=(0.0000,0.3807,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8863,3.8475,3.2172) mvmt=(0.3807,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.614,7.652,97.237) lpos=(2.886,3.848,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8863,3.8475,3.2172) mvmt=(0.3807,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8863,3.8475,3.2172) mvmt=(0.3807,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6487,3.8475,-1.2678) mvmt=(0.3807,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8383,3.2600,-4.1278) mvmt=(0.3807,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3967,3.2600,-4.1278) mvmt=(0.3807,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8363,-0.3725,0.2172) mvmt=(0.3807,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.4873,1.8369) mvmt=(0.0000,0.3807,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2473,1.7319) mvmt=(0.0000,0.3807,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2473,1.2473,1.7319) out=(-0.2473,1.2473,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.8863,3.8475,3.4653) mvmt=(0.3807,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.614,7.652,97.485) lpos=(2.886,3.848,3.465) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8863,3.8475,3.4653) mvmt=(0.3807,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6487,3.8475,-1.0197) mvmt=(0.3807,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9163,0.5703,0.4703) mvmt=(0.3807,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8383,3.2600,-3.8797) mvmt=(0.3807,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3967,3.2600,-3.8797) mvmt=(0.3807,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8363,-0.3725,0.4653) mvmt=(0.3807,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.4873,2.0850) mvmt=(0.0000,0.3807,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2473,1.9800) mvmt=(0.0000,0.3807,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,-0.9640,0.6300) mvmt=(0.0000,0.3807,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6487,3.8475,1.9853) mvmt=(0.3807,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8863,3.8475,3.4853) mvmt=(0.3807,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8863,3.8475,3.4653) mvmt=(0.3807,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.614,7.652,97.485) lpos=(2.886,3.848,3.465) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8863,3.8475,3.4653) mvmt=(0.3807,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6487,3.8475,-1.0197) mvmt=(0.3807,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9163,0.5703,0.4703) mvmt=(0.3807,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8383,3.2600,-3.8797) mvmt=(0.3807,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3967,3.2600,-3.8797) mvmt=(0.3807,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8363,-0.3725,0.4653) mvmt=(0.3807,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.4873,2.0850) mvmt=(0.0000,0.3807,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.2473,1.9800) mvmt=(0.0000,0.3807,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,-0.9640,0.6300) mvmt=(0.0000,0.3807,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6487,3.8475,1.9853) mvmt=(0.3807,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8863,3.8475,3.4853) mvmt=(0.3807,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.9785,3.2172) mvmt=(0.0000,0.1310,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.521,97.237) lpos=(2.506,3.979,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9785,3.2172) mvmt=(0.0000,0.1310,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.9785,3.2172) mvmt=(0.0000,0.1310,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9785,3.2172) mvmt=(0.0000,0.1310,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.9785,3.2172) out=(2.5056,3.9785,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.521,97.237) lpos=(2.506,3.979,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9785,3.4800) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.521,97.500) lpos=(2.506,3.979,3.480) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9785,3.4800) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9785,-1.0050) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.3910,-3.8650) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3910,-3.8650) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.2415,0.4800) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,1.1066,2.0997) mvmt=(-0.1310,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3783,0.8666,1.9947) mvmt=(-0.1310,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3783,-1.3446,0.6447) mvmt=(-0.1310,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9785,2.0000) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9785,3.5000) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9785,3.4800) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.521,97.500) lpos=(2.506,3.979,3.480) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9785,3.4800) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9785,-1.0050) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.3910,-3.8650) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3910,-3.8650) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.2415,0.4800) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,1.1066,2.0997) mvmt=(-0.1310,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3783,0.8666,1.9947) mvmt=(-0.1310,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.3783,-1.3446,0.6447) mvmt=(-0.1310,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9785,2.0000) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9785,3.5000) mvmt=(0.0000,0.1310,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.7696,3.8475,3.2172) mvmt=(0.2640,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.730,7.652,97.237) lpos=(2.770,3.848,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7696,3.8475,3.2172) mvmt=(0.2640,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7696,3.8475,3.2172) mvmt=(0.2640,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7654,3.8475,-1.2678) mvmt=(0.2640,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7216,3.2600,-4.1278) mvmt=(0.2640,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5134,3.2600,-4.1278) mvmt=(0.2640,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7196,-0.3725,0.2172) mvmt=(0.2640,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.3706,1.8369) mvmt=(0.0000,0.2640,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.1306,1.7319) mvmt=(0.0000,0.2640,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7696,3.8475,3.2172) mvmt=(0.2640,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.730,7.652,97.237) lpos=(2.770,3.848,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7696,3.8475,3.2172) mvmt=(0.2640,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7696,3.8475,3.2172) mvmt=(0.2640,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7654,3.8475,-1.2678) mvmt=(0.2640,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7216,3.2600,-4.1278) mvmt=(0.2640,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5134,3.2600,-4.1278) mvmt=(0.2640,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7196,-0.3725,0.2172) mvmt=(0.2640,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.3706,1.8369) mvmt=(0.0000,0.2640,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.1306,1.7319) mvmt=(0.0000,0.2640,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2473,1.1306,1.7319) out=(-0.2473,1.1306,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.7696,3.8475,3.4653) mvmt=(0.2640,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.730,7.652,97.485) lpos=(2.770,3.848,3.465) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7696,3.8475,3.4653) mvmt=(0.2640,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7654,3.8475,-1.0197) mvmt=(0.2640,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7216,3.2600,-3.8797) mvmt=(0.2640,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.5134,3.2600,-3.8797) mvmt=(0.2640,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7196,-0.3725,0.4653) mvmt=(0.2640,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.3706,2.0850) mvmt=(0.0000,0.2640,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.1306,1.9800) mvmt=(0.0000,0.2640,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,-1.0806,0.6300) mvmt=(0.0000,0.2640,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7654,3.8475,1.9853) mvmt=(0.2640,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.7696,3.8475,3.4853) mvmt=(0.2640,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.7696,3.8475,3.4653) mvmt=(0.2640,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.730,7.652,97.485) lpos=(2.770,3.848,3.465) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7696,3.8475,3.4653) mvmt=(0.2640,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7654,3.8475,-1.0197) mvmt=(0.2640,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7216,3.2600,-3.8797) mvmt=(0.2640,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.5134,3.2600,-3.8797) mvmt=(0.2640,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7196,-0.3725,0.4653) mvmt=(0.2640,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.2223,1.3706,2.0850) mvmt=(0.0000,0.2640,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,1.1306,1.9800) mvmt=(0.0000,0.2640,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.2473,-1.0806,0.6300) mvmt=(0.0000,0.2640,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7654,3.8475,1.9853) mvmt=(0.2640,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.7696,3.8475,3.4853) mvmt=(0.2640,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:672 +[push-back-disp] site=dispatch center=(2.5056,3.9368,3.4653) mvmt=(0.0000,0.0893,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.563,97.485) lpos=(2.506,3.937,3.465) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9368,3.4653) mvmt=(0.0000,0.0893,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9368,-1.0197) mvmt=(0.0000,0.0893,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.4576,3.3493,-3.8797) mvmt=(0.0000,0.0893,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3493,-3.8797) mvmt=(0.0000,0.0893,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.2832,0.4653) mvmt=(0.0000,0.0893,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.1066,2.0850) mvmt=(-0.0893,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,0.8666,1.9800) mvmt=(-0.0893,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,-1.3446,0.6300) mvmt=(-0.0893,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9368,1.9853) mvmt=(0.0000,0.0893,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9368,3.4853) mvmt=(0.0000,0.0893,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9368,2.7153) mvmt=(0.0000,0.0893,-0.5019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,7.563,96.735) lpos=(2.506,3.937,2.715) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9368,2.7153) mvmt=(0.0000,0.0893,-0.5019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.9368,2.7153) mvmt=(0.0000,0.0893,-0.5019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3116,1.1066,1.3350) mvmt=(-0.0893,0.0000,-0.5019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,0.8666,1.2300) mvmt=(-0.0893,0.0000,-0.5019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3366,0.8666,1.2300) out=(-0.3366,0.8666,1.7319) delta=(0.0000,0.0000,0.5019) deltaMag=0.5019 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3307 dpPos=0.1311 dpMove=-0.5213 iDist=0.6693 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.9368,3.2172) mvmt=(0.0000,0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=0.3307 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.563,97.237) lpos=(2.506,3.937,3.217) lprev=(2.506,3.848,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9368,3.2172) mvmt=(0.0000,0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=0.3307 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.9368,3.2172) mvmt=(0.0000,0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=0.3307 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9368,-1.2678) mvmt=(0.0000,0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=0.3307 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3493,-4.1278) mvmt=(0.0000,0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=0.3307 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.1066,1.8369) mvmt=(-0.0893,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.3307 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,0.8666,1.7319) mvmt=(-0.0893,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.3307 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,-1.3446,0.3819) mvmt=(-0.0893,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.3307 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9368,1.7372) mvmt=(0.0000,0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=0.3307 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9368,3.2372) mvmt=(0.0000,0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=0.3307 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0719,3.2172) mvmt=(0.0000,0.1350,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.428,97.237) lpos=(2.506,4.072,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0719,3.2172) mvmt=(0.0000,0.1350,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,4.0719,3.2172) mvmt=(0.0000,0.1350,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0719,3.2172) mvmt=(0.0000,0.1350,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,4.0719,3.2172) out=(2.5056,4.0719,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.428,97.237) lpos=(2.506,4.072,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0719,3.4800) mvmt=(0.0000,0.1350,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.428,97.500) lpos=(2.506,4.072,3.480) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0719,3.4800) mvmt=(0.0000,0.1350,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.0719,-1.0050) mvmt=(0.0000,0.1350,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.4844,-3.8650) mvmt=(0.0000,0.1350,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.1481,0.4800) mvmt=(0.0000,0.1350,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.4466,1.1066,2.0997) mvmt=(-0.1350,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4716,0.8666,1.9947) mvmt=(-0.1350,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4716,-1.3446,0.6447) mvmt=(-0.1350,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.0719,2.0000) mvmt=(0.0000,0.1350,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0719,3.5000) mvmt=(0.0000,0.1350,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0719,3.4800) mvmt=(0.0000,0.1350,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.428,97.500) lpos=(2.506,4.072,3.480) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0719,3.4800) mvmt=(0.0000,0.1350,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.0719,-1.0050) mvmt=(0.0000,0.1350,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.4844,-3.8650) mvmt=(0.0000,0.1350,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.1481,0.4800) mvmt=(0.0000,0.1350,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.4466,1.1066,2.0997) mvmt=(-0.1350,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4716,0.8666,1.9947) mvmt=(-0.1350,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4716,-1.3446,0.6447) mvmt=(-0.1350,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.0719,2.0000) mvmt=(0.0000,0.1350,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0719,3.5000) mvmt=(0.0000,0.1350,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9092,3.9368,3.2172) mvmt=(0.4036,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.591,7.563,97.237) lpos=(2.909,3.937,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9092,3.9368,3.2172) mvmt=(0.4036,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9092,3.9368,3.2172) mvmt=(0.4036,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6258,3.9368,-1.2678) mvmt=(0.4036,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8612,3.3493,-4.1278) mvmt=(0.4036,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3738,3.3493,-4.1278) mvmt=(0.4036,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8592,-0.2832,0.2172) mvmt=(0.4036,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5102,1.8369) mvmt=(0.0000,0.4036,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2702,1.7319) mvmt=(0.0000,0.4036,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9092,3.9368,3.2172) mvmt=(0.4036,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.591,7.563,97.237) lpos=(2.909,3.937,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9092,3.9368,3.2172) mvmt=(0.4036,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9092,3.9368,3.2172) mvmt=(0.4036,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6258,3.9368,-1.2678) mvmt=(0.4036,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8612,3.3493,-4.1278) mvmt=(0.4036,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3738,3.3493,-4.1278) mvmt=(0.4036,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8592,-0.2832,0.2172) mvmt=(0.4036,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5102,1.8369) mvmt=(0.0000,0.4036,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2702,1.7319) mvmt=(0.0000,0.4036,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3366,1.2702,1.7319) out=(-0.3366,1.2702,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9092,3.9368,3.4653) mvmt=(0.4036,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.591,7.563,97.485) lpos=(2.909,3.937,3.465) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9092,3.9368,3.4653) mvmt=(0.4036,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6258,3.9368,-1.0197) mvmt=(0.4036,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9392,0.6596,0.4703) mvmt=(0.4036,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8612,3.3493,-3.8797) mvmt=(0.4036,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3738,3.3493,-3.8797) mvmt=(0.4036,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8592,-0.2832,0.4653) mvmt=(0.4036,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5102,2.0850) mvmt=(0.0000,0.4036,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2702,1.9800) mvmt=(0.0000,0.4036,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,-0.9411,0.6300) mvmt=(0.0000,0.4036,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6258,3.9368,1.9853) mvmt=(0.4036,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9092,3.9368,3.4853) mvmt=(0.4036,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9092,3.9368,3.4653) mvmt=(0.4036,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.591,7.563,97.485) lpos=(2.909,3.937,3.465) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9092,3.9368,3.4653) mvmt=(0.4036,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6258,3.9368,-1.0197) mvmt=(0.4036,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9392,0.6596,0.4703) mvmt=(0.4036,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8612,3.3493,-3.8797) mvmt=(0.4036,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3738,3.3493,-3.8797) mvmt=(0.4036,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8592,-0.2832,0.4653) mvmt=(0.4036,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5102,2.0850) mvmt=(0.0000,0.4036,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2702,1.9800) mvmt=(0.0000,0.4036,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,-0.9411,0.6300) mvmt=(0.0000,0.4036,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6258,3.9368,1.9853) mvmt=(0.4036,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9092,3.9368,3.4853) mvmt=(0.4036,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,4.0710,3.2172) mvmt=(0.0000,0.1341,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.429,97.237) lpos=(2.506,4.071,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0710,3.2172) mvmt=(0.0000,0.1341,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,4.0710,3.2172) mvmt=(0.0000,0.1341,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0710,3.2172) mvmt=(0.0000,0.1341,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,4.0710,3.2172) out=(2.5056,4.0710,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.429,97.237) lpos=(2.506,4.071,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0710,3.4800) mvmt=(0.0000,0.1341,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.429,97.500) lpos=(2.506,4.071,3.480) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0710,3.4800) mvmt=(0.0000,0.1341,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.0710,-1.0050) mvmt=(0.0000,0.1341,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.4835,-3.8650) mvmt=(0.0000,0.1341,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.1490,0.4800) mvmt=(0.0000,0.1341,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.4457,1.1066,2.0997) mvmt=(-0.1341,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4707,0.8666,1.9947) mvmt=(-0.1341,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4707,-1.3446,0.6447) mvmt=(-0.1341,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.0710,2.0000) mvmt=(0.0000,0.1341,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0710,3.5000) mvmt=(0.0000,0.1341,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0710,3.4800) mvmt=(0.0000,0.1341,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.429,97.500) lpos=(2.506,4.071,3.480) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0710,3.4800) mvmt=(0.0000,0.1341,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.0710,-1.0050) mvmt=(0.0000,0.1341,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.4835,-3.8650) mvmt=(0.0000,0.1341,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.1490,0.4800) mvmt=(0.0000,0.1341,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.4457,1.1066,2.0997) mvmt=(-0.1341,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4707,0.8666,1.9947) mvmt=(-0.1341,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4707,-1.3446,0.6447) mvmt=(-0.1341,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.0710,2.0000) mvmt=(0.0000,0.1341,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0710,3.5000) mvmt=(0.0000,0.1341,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9171,3.9368,3.2172) mvmt=(0.4115,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.583,7.563,97.237) lpos=(2.917,3.937,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9171,3.9368,3.2172) mvmt=(0.4115,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9171,3.9368,3.2172) mvmt=(0.4115,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6179,3.9368,-1.2678) mvmt=(0.4115,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8691,3.3493,-4.1278) mvmt=(0.4115,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3659,3.3493,-4.1278) mvmt=(0.4115,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8671,-0.2832,0.2172) mvmt=(0.4115,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5181,1.8369) mvmt=(0.0000,0.4115,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2781,1.7319) mvmt=(0.0000,0.4115,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9171,3.9368,3.2172) mvmt=(0.4115,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.583,7.563,97.237) lpos=(2.917,3.937,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9171,3.9368,3.2172) mvmt=(0.4115,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9171,3.9368,3.2172) mvmt=(0.4115,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6179,3.9368,-1.2678) mvmt=(0.4115,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8691,3.3493,-4.1278) mvmt=(0.4115,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3659,3.3493,-4.1278) mvmt=(0.4115,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8671,-0.2832,0.2172) mvmt=(0.4115,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5181,1.8369) mvmt=(0.0000,0.4115,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2781,1.7319) mvmt=(0.0000,0.4115,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3366,1.2781,1.7319) out=(-0.3366,1.2781,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9171,3.9368,3.4653) mvmt=(0.4115,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.583,7.563,97.485) lpos=(2.917,3.937,3.465) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9171,3.9368,3.4653) mvmt=(0.4115,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6179,3.9368,-1.0197) mvmt=(0.4115,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9471,0.6596,0.4703) mvmt=(0.4115,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8691,3.3493,-3.8797) mvmt=(0.4115,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3659,3.3493,-3.8797) mvmt=(0.4115,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8671,-0.2832,0.4653) mvmt=(0.4115,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5181,2.0850) mvmt=(0.0000,0.4115,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2781,1.9800) mvmt=(0.0000,0.4115,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,-0.9331,0.6300) mvmt=(0.0000,0.4115,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6179,3.9368,1.9853) mvmt=(0.4115,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9171,3.9368,3.4853) mvmt=(0.4115,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9171,3.9368,3.4653) mvmt=(0.4115,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.583,7.563,97.485) lpos=(2.917,3.937,3.465) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9171,3.9368,3.4653) mvmt=(0.4115,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6179,3.9368,-1.0197) mvmt=(0.4115,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9471,0.6596,0.4703) mvmt=(0.4115,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8691,3.3493,-3.8797) mvmt=(0.4115,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3659,3.3493,-3.8797) mvmt=(0.4115,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8671,-0.2832,0.4653) mvmt=(0.4115,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5181,2.0850) mvmt=(0.0000,0.4115,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2781,1.9800) mvmt=(0.0000,0.4115,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,-0.9331,0.6300) mvmt=(0.0000,0.4115,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6179,3.9368,1.9853) mvmt=(0.4115,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9171,3.9368,3.4853) mvmt=(0.4115,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,4.0708,3.2172) mvmt=(0.0000,0.1339,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.429,97.237) lpos=(2.506,4.071,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0708,3.2172) mvmt=(0.0000,0.1339,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,4.0708,3.2172) mvmt=(0.0000,0.1339,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0708,3.2172) mvmt=(0.0000,0.1339,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,4.0708,3.2172) out=(2.5056,4.0708,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.429,97.237) lpos=(2.506,4.071,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0708,3.4800) mvmt=(0.0000,0.1339,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.429,97.500) lpos=(2.506,4.071,3.480) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0708,3.4800) mvmt=(0.0000,0.1339,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.0708,-1.0050) mvmt=(0.0000,0.1339,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.4833,-3.8650) mvmt=(0.0000,0.1339,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.1492,0.4800) mvmt=(0.0000,0.1339,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.4455,1.1066,2.0997) mvmt=(-0.1339,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4705,0.8666,1.9947) mvmt=(-0.1339,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4705,-1.3446,0.6447) mvmt=(-0.1339,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.0708,2.0000) mvmt=(0.0000,0.1339,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0708,3.5000) mvmt=(0.0000,0.1339,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0708,3.4800) mvmt=(0.0000,0.1339,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.429,97.500) lpos=(2.506,4.071,3.480) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0708,3.4800) mvmt=(0.0000,0.1339,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.0708,-1.0050) mvmt=(0.0000,0.1339,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.4833,-3.8650) mvmt=(0.0000,0.1339,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.1492,0.4800) mvmt=(0.0000,0.1339,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.4455,1.1066,2.0997) mvmt=(-0.1339,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4705,0.8666,1.9947) mvmt=(-0.1339,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4705,-1.3446,0.6447) mvmt=(-0.1339,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.0708,2.0000) mvmt=(0.0000,0.1339,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0708,3.5000) mvmt=(0.0000,0.1339,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9125,3.9368,3.2172) mvmt=(0.4069,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.587,7.563,97.237) lpos=(2.913,3.937,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9125,3.9368,3.2172) mvmt=(0.4069,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9125,3.9368,3.2172) mvmt=(0.4069,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6225,3.9368,-1.2678) mvmt=(0.4069,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8645,3.3493,-4.1278) mvmt=(0.4069,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3705,3.3493,-4.1278) mvmt=(0.4069,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8625,-0.2832,0.2172) mvmt=(0.4069,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5135,1.8369) mvmt=(0.0000,0.4069,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2735,1.7319) mvmt=(0.0000,0.4069,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9125,3.9368,3.2172) mvmt=(0.4069,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.587,7.563,97.237) lpos=(2.913,3.937,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9125,3.9368,3.2172) mvmt=(0.4069,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9125,3.9368,3.2172) mvmt=(0.4069,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6225,3.9368,-1.2678) mvmt=(0.4069,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8645,3.3493,-4.1278) mvmt=(0.4069,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3705,3.3493,-4.1278) mvmt=(0.4069,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8625,-0.2832,0.2172) mvmt=(0.4069,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5135,1.8369) mvmt=(0.0000,0.4069,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2735,1.7319) mvmt=(0.0000,0.4069,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3366,1.2735,1.7319) out=(-0.3366,1.2735,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9125,3.9368,3.4653) mvmt=(0.4069,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.587,7.563,97.485) lpos=(2.913,3.937,3.465) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9125,3.9368,3.4653) mvmt=(0.4069,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6225,3.9368,-1.0197) mvmt=(0.4069,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9425,0.6596,0.4703) mvmt=(0.4069,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8645,3.3493,-3.8797) mvmt=(0.4069,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3705,3.3493,-3.8797) mvmt=(0.4069,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8625,-0.2832,0.4653) mvmt=(0.4069,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5135,2.0850) mvmt=(0.0000,0.4069,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2735,1.9800) mvmt=(0.0000,0.4069,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,-0.9378,0.6300) mvmt=(0.0000,0.4069,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6225,3.9368,1.9853) mvmt=(0.4069,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9125,3.9368,3.4853) mvmt=(0.4069,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9125,3.9368,3.4653) mvmt=(0.4069,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.587,7.563,97.485) lpos=(2.913,3.937,3.465) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9125,3.9368,3.4653) mvmt=(0.4069,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6225,3.9368,-1.0197) mvmt=(0.4069,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9425,0.6596,0.4703) mvmt=(0.4069,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8645,3.3493,-3.8797) mvmt=(0.4069,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3705,3.3493,-3.8797) mvmt=(0.4069,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8625,-0.2832,0.4653) mvmt=(0.4069,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5135,2.0850) mvmt=(0.0000,0.4069,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2735,1.9800) mvmt=(0.0000,0.4069,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,-0.9378,0.6300) mvmt=(0.0000,0.4069,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6225,3.9368,1.9853) mvmt=(0.4069,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9125,3.9368,3.4853) mvmt=(0.4069,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,4.0738,3.2172) mvmt=(0.0000,0.1369,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.426,97.237) lpos=(2.506,4.074,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0738,3.2172) mvmt=(0.0000,0.1369,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,4.0738,3.2172) mvmt=(0.0000,0.1369,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0738,3.2172) mvmt=(0.0000,0.1369,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,4.0738,3.2172) out=(2.5056,4.0738,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.426,97.237) lpos=(2.506,4.074,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0738,3.4800) mvmt=(0.0000,0.1369,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.426,97.500) lpos=(2.506,4.074,3.480) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0738,3.4800) mvmt=(0.0000,0.1369,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.0738,-1.0050) mvmt=(0.0000,0.1369,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.4863,-3.8650) mvmt=(0.0000,0.1369,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.1462,0.4800) mvmt=(0.0000,0.1369,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.4485,1.1066,2.0997) mvmt=(-0.1369,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4735,0.8666,1.9947) mvmt=(-0.1369,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4735,-1.3446,0.6447) mvmt=(-0.1369,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.0738,2.0000) mvmt=(0.0000,0.1369,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0738,3.5000) mvmt=(0.0000,0.1369,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0738,3.4800) mvmt=(0.0000,0.1369,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.426,97.500) lpos=(2.506,4.074,3.480) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0738,3.4800) mvmt=(0.0000,0.1369,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.0738,-1.0050) mvmt=(0.0000,0.1369,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.4863,-3.8650) mvmt=(0.0000,0.1369,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.1462,0.4800) mvmt=(0.0000,0.1369,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.4485,1.1066,2.0997) mvmt=(-0.1369,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4735,0.8666,1.9947) mvmt=(-0.1369,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4735,-1.3446,0.6447) mvmt=(-0.1369,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.0738,2.0000) mvmt=(0.0000,0.1369,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0738,3.5000) mvmt=(0.0000,0.1369,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9104,3.9368,3.2172) mvmt=(0.4048,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.590,7.563,97.237) lpos=(2.910,3.937,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9104,3.9368,3.2172) mvmt=(0.4048,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9104,3.9368,3.2172) mvmt=(0.4048,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6246,3.9368,-1.2678) mvmt=(0.4048,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8624,3.3493,-4.1278) mvmt=(0.4048,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3726,3.3493,-4.1278) mvmt=(0.4048,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8604,-0.2832,0.2172) mvmt=(0.4048,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5114,1.8369) mvmt=(0.0000,0.4048,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2714,1.7319) mvmt=(0.0000,0.4048,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9104,3.9368,3.2172) mvmt=(0.4048,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.590,7.563,97.237) lpos=(2.910,3.937,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9104,3.9368,3.2172) mvmt=(0.4048,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9104,3.9368,3.2172) mvmt=(0.4048,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6246,3.9368,-1.2678) mvmt=(0.4048,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8624,3.3493,-4.1278) mvmt=(0.4048,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3726,3.3493,-4.1278) mvmt=(0.4048,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8604,-0.2832,0.2172) mvmt=(0.4048,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5114,1.8369) mvmt=(0.0000,0.4048,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2714,1.7319) mvmt=(0.0000,0.4048,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3366,1.2714,1.7319) out=(-0.3366,1.2714,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9104,3.9368,3.4653) mvmt=(0.4048,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.590,7.563,97.485) lpos=(2.910,3.937,3.465) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9104,3.9368,3.4653) mvmt=(0.4048,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6246,3.9368,-1.0197) mvmt=(0.4048,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9404,0.6596,0.4703) mvmt=(0.4048,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8624,3.3493,-3.8797) mvmt=(0.4048,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3726,3.3493,-3.8797) mvmt=(0.4048,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8604,-0.2832,0.4653) mvmt=(0.4048,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5114,2.0850) mvmt=(0.0000,0.4048,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2714,1.9800) mvmt=(0.0000,0.4048,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,-0.9399,0.6300) mvmt=(0.0000,0.4048,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6246,3.9368,1.9853) mvmt=(0.4048,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9104,3.9368,3.4853) mvmt=(0.4048,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9104,3.9368,3.4653) mvmt=(0.4048,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.590,7.563,97.485) lpos=(2.910,3.937,3.465) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9104,3.9368,3.4653) mvmt=(0.4048,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6246,3.9368,-1.0197) mvmt=(0.4048,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9404,0.6596,0.4703) mvmt=(0.4048,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8624,3.3493,-3.8797) mvmt=(0.4048,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3726,3.3493,-3.8797) mvmt=(0.4048,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8604,-0.2832,0.4653) mvmt=(0.4048,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5114,2.0850) mvmt=(0.0000,0.4048,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2714,1.9800) mvmt=(0.0000,0.4048,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,-0.9399,0.6300) mvmt=(0.0000,0.4048,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6246,3.9368,1.9853) mvmt=(0.4048,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9104,3.9368,3.4853) mvmt=(0.4048,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,4.0706,3.2172) mvmt=(0.0000,0.1338,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.429,97.237) lpos=(2.506,4.071,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0706,3.2172) mvmt=(0.0000,0.1338,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,4.0706,3.2172) mvmt=(0.0000,0.1338,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0706,3.2172) mvmt=(0.0000,0.1338,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,4.0706,3.2172) out=(2.5056,4.0706,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.429,97.237) lpos=(2.506,4.071,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0706,3.4800) mvmt=(0.0000,0.1338,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.429,97.500) lpos=(2.506,4.071,3.480) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0706,3.4800) mvmt=(0.0000,0.1338,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.0706,-1.0050) mvmt=(0.0000,0.1338,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.4831,-3.8650) mvmt=(0.0000,0.1338,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.1494,0.4800) mvmt=(0.0000,0.1338,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.4453,1.1066,2.0997) mvmt=(-0.1338,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4703,0.8666,1.9947) mvmt=(-0.1338,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4703,-1.3446,0.6447) mvmt=(-0.1338,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.0706,2.0000) mvmt=(0.0000,0.1338,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0706,3.5000) mvmt=(0.0000,0.1338,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0706,3.4800) mvmt=(0.0000,0.1338,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.429,97.500) lpos=(2.506,4.071,3.480) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0706,3.4800) mvmt=(0.0000,0.1338,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.0706,-1.0050) mvmt=(0.0000,0.1338,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.4831,-3.8650) mvmt=(0.0000,0.1338,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.1494,0.4800) mvmt=(0.0000,0.1338,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.4453,1.1066,2.0997) mvmt=(-0.1338,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4703,0.8666,1.9947) mvmt=(-0.1338,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4703,-1.3446,0.6447) mvmt=(-0.1338,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.0706,2.0000) mvmt=(0.0000,0.1338,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0706,3.5000) mvmt=(0.0000,0.1338,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9210,3.9368,3.2172) mvmt=(0.4154,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.579,7.563,97.237) lpos=(2.921,3.937,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9210,3.9368,3.2172) mvmt=(0.4154,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9210,3.9368,3.2172) mvmt=(0.4154,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6140,3.9368,-1.2678) mvmt=(0.4154,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8730,3.3493,-4.1278) mvmt=(0.4154,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3620,3.3493,-4.1278) mvmt=(0.4154,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8710,-0.2832,0.2172) mvmt=(0.4154,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5220,1.8369) mvmt=(0.0000,0.4154,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2820,1.7319) mvmt=(0.0000,0.4154,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9210,3.9368,3.2172) mvmt=(0.4154,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.579,7.563,97.237) lpos=(2.921,3.937,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9210,3.9368,3.2172) mvmt=(0.4154,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9210,3.9368,3.2172) mvmt=(0.4154,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6140,3.9368,-1.2678) mvmt=(0.4154,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8730,3.3493,-4.1278) mvmt=(0.4154,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3620,3.3493,-4.1278) mvmt=(0.4154,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8710,-0.2832,0.2172) mvmt=(0.4154,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5220,1.8369) mvmt=(0.0000,0.4154,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2820,1.7319) mvmt=(0.0000,0.4154,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3366,1.2820,1.7319) out=(-0.3366,1.2820,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9210,3.9368,3.4653) mvmt=(0.4154,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.579,7.563,97.485) lpos=(2.921,3.937,3.465) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9210,3.9368,3.4653) mvmt=(0.4154,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6140,3.9368,-1.0197) mvmt=(0.4154,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9510,0.6596,0.4703) mvmt=(0.4154,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8730,3.3493,-3.8797) mvmt=(0.4154,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3620,3.3493,-3.8797) mvmt=(0.4154,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8710,-0.2832,0.4653) mvmt=(0.4154,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5220,2.0850) mvmt=(0.0000,0.4154,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2820,1.9800) mvmt=(0.0000,0.4154,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,-0.9293,0.6300) mvmt=(0.0000,0.4154,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6140,3.9368,1.9853) mvmt=(0.4154,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9210,3.9368,3.4853) mvmt=(0.4154,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9210,3.9368,3.4653) mvmt=(0.4154,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.579,7.563,97.485) lpos=(2.921,3.937,3.465) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9210,3.9368,3.4653) mvmt=(0.4154,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6140,3.9368,-1.0197) mvmt=(0.4154,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9510,0.6596,0.4703) mvmt=(0.4154,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8730,3.3493,-3.8797) mvmt=(0.4154,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3620,3.3493,-3.8797) mvmt=(0.4154,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8710,-0.2832,0.4653) mvmt=(0.4154,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5220,2.0850) mvmt=(0.0000,0.4154,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2820,1.9800) mvmt=(0.0000,0.4154,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,-0.9293,0.6300) mvmt=(0.0000,0.4154,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6140,3.9368,1.9853) mvmt=(0.4154,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9210,3.9368,3.4853) mvmt=(0.4154,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,4.0760,3.2172) mvmt=(0.0000,0.1391,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.424,97.237) lpos=(2.506,4.076,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0760,3.2172) mvmt=(0.0000,0.1391,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,4.0760,3.2172) mvmt=(0.0000,0.1391,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0760,3.2172) mvmt=(0.0000,0.1391,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,4.0760,3.2172) out=(2.5056,4.0760,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.424,97.237) lpos=(2.506,4.076,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0760,3.4800) mvmt=(0.0000,0.1391,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.424,97.500) lpos=(2.506,4.076,3.480) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0760,3.4800) mvmt=(0.0000,0.1391,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.0760,-1.0050) mvmt=(0.0000,0.1391,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.4885,-3.8650) mvmt=(0.0000,0.1391,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.1440,0.4800) mvmt=(0.0000,0.1391,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.4507,1.1066,2.0997) mvmt=(-0.1391,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4757,0.8666,1.9947) mvmt=(-0.1391,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4757,-1.3446,0.6447) mvmt=(-0.1391,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.0760,2.0000) mvmt=(0.0000,0.1391,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0760,3.5000) mvmt=(0.0000,0.1391,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0760,3.4800) mvmt=(0.0000,0.1391,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.424,97.500) lpos=(2.506,4.076,3.480) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0760,3.4800) mvmt=(0.0000,0.1391,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.0760,-1.0050) mvmt=(0.0000,0.1391,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.4885,-3.8650) mvmt=(0.0000,0.1391,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.1440,0.4800) mvmt=(0.0000,0.1391,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.4507,1.1066,2.0997) mvmt=(-0.1391,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4757,0.8666,1.9947) mvmt=(-0.1391,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4757,-1.3446,0.6447) mvmt=(-0.1391,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.0760,2.0000) mvmt=(0.0000,0.1391,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0760,3.5000) mvmt=(0.0000,0.1391,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9060,3.9368,3.2172) mvmt=(0.4004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.594,7.563,97.237) lpos=(2.906,3.937,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9060,3.9368,3.2172) mvmt=(0.4004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9060,3.9368,3.2172) mvmt=(0.4004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6290,3.9368,-1.2678) mvmt=(0.4004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8580,3.3493,-4.1278) mvmt=(0.4004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3770,3.3493,-4.1278) mvmt=(0.4004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8560,-0.2832,0.2172) mvmt=(0.4004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5070,1.8369) mvmt=(0.0000,0.4004,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2670,1.7319) mvmt=(0.0000,0.4004,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9060,3.9368,3.2172) mvmt=(0.4004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.594,7.563,97.237) lpos=(2.906,3.937,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9060,3.9368,3.2172) mvmt=(0.4004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9060,3.9368,3.2172) mvmt=(0.4004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6290,3.9368,-1.2678) mvmt=(0.4004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8580,3.3493,-4.1278) mvmt=(0.4004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3770,3.3493,-4.1278) mvmt=(0.4004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8560,-0.2832,0.2172) mvmt=(0.4004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5070,1.8369) mvmt=(0.0000,0.4004,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2670,1.7319) mvmt=(0.0000,0.4004,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3366,1.2670,1.7319) out=(-0.3366,1.2670,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9060,3.9368,3.4653) mvmt=(0.4004,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.594,7.563,97.485) lpos=(2.906,3.937,3.465) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9060,3.9368,3.4653) mvmt=(0.4004,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6290,3.9368,-1.0197) mvmt=(0.4004,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9360,0.6596,0.4703) mvmt=(0.4004,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8580,3.3493,-3.8797) mvmt=(0.4004,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3770,3.3493,-3.8797) mvmt=(0.4004,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8560,-0.2832,0.4653) mvmt=(0.4004,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5070,2.0850) mvmt=(0.0000,0.4004,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2670,1.9800) mvmt=(0.0000,0.4004,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,-0.9442,0.6300) mvmt=(0.0000,0.4004,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6290,3.9368,1.9853) mvmt=(0.4004,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9060,3.9368,3.4853) mvmt=(0.4004,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9060,3.9368,3.4653) mvmt=(0.4004,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.594,7.563,97.485) lpos=(2.906,3.937,3.465) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9060,3.9368,3.4653) mvmt=(0.4004,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6290,3.9368,-1.0197) mvmt=(0.4004,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9360,0.6596,0.4703) mvmt=(0.4004,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8580,3.3493,-3.8797) mvmt=(0.4004,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3770,3.3493,-3.8797) mvmt=(0.4004,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8560,-0.2832,0.4653) mvmt=(0.4004,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5070,2.0850) mvmt=(0.0000,0.4004,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2670,1.9800) mvmt=(0.0000,0.4004,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,-0.9442,0.6300) mvmt=(0.0000,0.4004,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6290,3.9368,1.9853) mvmt=(0.4004,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9060,3.9368,3.4853) mvmt=(0.4004,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,4.0663,3.2172) mvmt=(0.0000,0.1294,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.434,97.237) lpos=(2.506,4.066,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0663,3.2172) mvmt=(0.0000,0.1294,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,4.0663,3.2172) mvmt=(0.0000,0.1294,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0663,3.2172) mvmt=(0.0000,0.1294,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,4.0663,3.2172) out=(2.5056,4.0663,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.434,97.237) lpos=(2.506,4.066,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0663,3.4800) mvmt=(0.0000,0.1294,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.434,97.500) lpos=(2.506,4.066,3.480) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0663,3.4800) mvmt=(0.0000,0.1294,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.0663,-1.0050) mvmt=(0.0000,0.1294,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.4788,-3.8650) mvmt=(0.0000,0.1294,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.1537,0.4800) mvmt=(0.0000,0.1294,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.4410,1.1066,2.0997) mvmt=(-0.1294,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4660,0.8666,1.9947) mvmt=(-0.1294,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4660,-1.3446,0.6447) mvmt=(-0.1294,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.0663,2.0000) mvmt=(0.0000,0.1294,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0663,3.5000) mvmt=(0.0000,0.1294,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0663,3.4800) mvmt=(0.0000,0.1294,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.434,97.500) lpos=(2.506,4.066,3.480) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0663,3.4800) mvmt=(0.0000,0.1294,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.0663,-1.0050) mvmt=(0.0000,0.1294,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.4788,-3.8650) mvmt=(0.0000,0.1294,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.1537,0.4800) mvmt=(0.0000,0.1294,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.4410,1.1066,2.0997) mvmt=(-0.1294,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4660,0.8666,1.9947) mvmt=(-0.1294,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4660,-1.3446,0.6447) mvmt=(-0.1294,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.0663,2.0000) mvmt=(0.0000,0.1294,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0663,3.5000) mvmt=(0.0000,0.1294,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.8810,3.9368,3.2172) mvmt=(0.3754,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.619,7.563,97.237) lpos=(2.881,3.937,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8810,3.9368,3.2172) mvmt=(0.3754,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8810,3.9368,3.2172) mvmt=(0.3754,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6540,3.9368,-1.2678) mvmt=(0.3754,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8330,3.3493,-4.1278) mvmt=(0.3754,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4020,3.3493,-4.1278) mvmt=(0.3754,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8310,-0.2832,0.2172) mvmt=(0.3754,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.4820,1.8369) mvmt=(0.0000,0.3754,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2420,1.7319) mvmt=(0.0000,0.3754,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8810,3.9368,3.2172) mvmt=(0.3754,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.619,7.563,97.237) lpos=(2.881,3.937,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8810,3.9368,3.2172) mvmt=(0.3754,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8810,3.9368,3.2172) mvmt=(0.3754,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6540,3.9368,-1.2678) mvmt=(0.3754,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8330,3.3493,-4.1278) mvmt=(0.3754,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4020,3.3493,-4.1278) mvmt=(0.3754,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8310,-0.2832,0.2172) mvmt=(0.3754,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.4820,1.8369) mvmt=(0.0000,0.3754,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2420,1.7319) mvmt=(0.0000,0.3754,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3366,1.2420,1.7319) out=(-0.3366,1.2420,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.8810,3.9368,3.4653) mvmt=(0.3754,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.619,7.563,97.485) lpos=(2.881,3.937,3.465) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8810,3.9368,3.4653) mvmt=(0.3754,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6540,3.9368,-1.0197) mvmt=(0.3754,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9110,0.6596,0.4703) mvmt=(0.3754,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8330,3.3493,-3.8797) mvmt=(0.3754,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4020,3.3493,-3.8797) mvmt=(0.3754,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8310,-0.2832,0.4653) mvmt=(0.3754,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.4820,2.0850) mvmt=(0.0000,0.3754,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2420,1.9800) mvmt=(0.0000,0.3754,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,-0.9692,0.6300) mvmt=(0.0000,0.3754,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6540,3.9368,1.9853) mvmt=(0.3754,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8810,3.9368,3.4853) mvmt=(0.3754,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8810,3.9368,3.4653) mvmt=(0.3754,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.619,7.563,97.485) lpos=(2.881,3.937,3.465) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8810,3.9368,3.4653) mvmt=(0.3754,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6540,3.9368,-1.0197) mvmt=(0.3754,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9110,0.6596,0.4703) mvmt=(0.3754,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8330,3.3493,-3.8797) mvmt=(0.3754,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.4020,3.3493,-3.8797) mvmt=(0.3754,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8310,-0.2832,0.4653) mvmt=(0.3754,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.4820,2.0850) mvmt=(0.0000,0.3754,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2420,1.9800) mvmt=(0.0000,0.3754,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,-0.9692,0.6300) mvmt=(0.0000,0.3754,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6540,3.9368,1.9853) mvmt=(0.3754,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8810,3.9368,3.4853) mvmt=(0.3754,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,4.0681,3.2172) mvmt=(0.0000,0.1312,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.432,97.237) lpos=(2.506,4.068,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0681,3.2172) mvmt=(0.0000,0.1312,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,4.0681,3.2172) mvmt=(0.0000,0.1312,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0681,3.2172) mvmt=(0.0000,0.1312,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,4.0681,3.2172) out=(2.5056,4.0681,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.432,97.237) lpos=(2.506,4.068,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0681,3.4800) mvmt=(0.0000,0.1312,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.432,97.500) lpos=(2.506,4.068,3.480) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0681,3.4800) mvmt=(0.0000,0.1312,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.0681,-1.0050) mvmt=(0.0000,0.1312,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.4806,-3.8650) mvmt=(0.0000,0.1312,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.1519,0.4800) mvmt=(0.0000,0.1312,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.4428,1.1066,2.0997) mvmt=(-0.1312,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4678,0.8666,1.9947) mvmt=(-0.1312,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4678,-1.3446,0.6447) mvmt=(-0.1312,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.0681,2.0000) mvmt=(0.0000,0.1312,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0681,3.5000) mvmt=(0.0000,0.1312,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0681,3.4800) mvmt=(0.0000,0.1312,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.432,97.500) lpos=(2.506,4.068,3.480) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0681,3.4800) mvmt=(0.0000,0.1312,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.0681,-1.0050) mvmt=(0.0000,0.1312,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.4806,-3.8650) mvmt=(0.0000,0.1312,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.1519,0.4800) mvmt=(0.0000,0.1312,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.4428,1.1066,2.0997) mvmt=(-0.1312,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4678,0.8666,1.9947) mvmt=(-0.1312,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4678,-1.3446,0.6447) mvmt=(-0.1312,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.0681,2.0000) mvmt=(0.0000,0.1312,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0681,3.5000) mvmt=(0.0000,0.1312,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[input] MovementTurnRight Press +[push-back-disp] site=dispatch center=(2.9208,3.9368,3.2172) mvmt=(0.4152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.579,7.563,97.237) lpos=(2.921,3.937,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9208,3.9368,3.2172) mvmt=(0.4152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9208,3.9368,3.2172) mvmt=(0.4152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6142,3.9368,-1.2678) mvmt=(0.4152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8728,3.3493,-4.1278) mvmt=(0.4152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3622,3.3493,-4.1278) mvmt=(0.4152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8708,-0.2832,0.2172) mvmt=(0.4152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5218,1.8369) mvmt=(0.0000,0.4152,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2818,1.7319) mvmt=(0.0000,0.4152,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9208,3.9368,3.2172) mvmt=(0.4152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.579,7.563,97.237) lpos=(2.921,3.937,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9208,3.9368,3.2172) mvmt=(0.4152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9208,3.9368,3.2172) mvmt=(0.4152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6142,3.9368,-1.2678) mvmt=(0.4152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8728,3.3493,-4.1278) mvmt=(0.4152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3622,3.3493,-4.1278) mvmt=(0.4152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8708,-0.2832,0.2172) mvmt=(0.4152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5218,1.8369) mvmt=(0.0000,0.4152,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2818,1.7319) mvmt=(0.0000,0.4152,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3366,1.2818,1.7319) out=(-0.3366,1.2818,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9208,3.9368,3.4653) mvmt=(0.4152,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.579,7.563,97.485) lpos=(2.921,3.937,3.465) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9208,3.9368,3.4653) mvmt=(0.4152,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6142,3.9368,-1.0197) mvmt=(0.4152,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9508,0.6596,0.4703) mvmt=(0.4152,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8728,3.3493,-3.8797) mvmt=(0.4152,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3622,3.3493,-3.8797) mvmt=(0.4152,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8708,-0.2832,0.4653) mvmt=(0.4152,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5218,2.0850) mvmt=(0.0000,0.4152,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2818,1.9800) mvmt=(0.0000,0.4152,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,-0.9295,0.6300) mvmt=(0.0000,0.4152,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6142,3.9368,1.9853) mvmt=(0.4152,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9208,3.9368,3.4853) mvmt=(0.4152,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9208,3.9368,3.4653) mvmt=(0.4152,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.579,7.563,97.485) lpos=(2.921,3.937,3.465) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9208,3.9368,3.4653) mvmt=(0.4152,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6142,3.9368,-1.0197) mvmt=(0.4152,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9508,0.6596,0.4703) mvmt=(0.4152,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8728,3.3493,-3.8797) mvmt=(0.4152,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3622,3.3493,-3.8797) mvmt=(0.4152,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8708,-0.2832,0.4653) mvmt=(0.4152,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5218,2.0850) mvmt=(0.0000,0.4152,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2818,1.9800) mvmt=(0.0000,0.4152,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,-0.9295,0.6300) mvmt=(0.0000,0.4152,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6142,3.9368,1.9853) mvmt=(0.4152,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9208,3.9368,3.4853) mvmt=(0.4152,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,4.0197,3.2172) mvmt=(0.0000,0.0829,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.480,97.237) lpos=(2.506,4.020,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0197,3.2172) mvmt=(0.0000,0.0829,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,4.0197,3.2172) mvmt=(0.0000,0.0829,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0197,3.2172) mvmt=(0.0000,0.0829,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,4.0197,3.2172) out=(2.5056,4.0197,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.480,97.237) lpos=(2.506,4.020,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0197,3.4800) mvmt=(0.0000,0.0829,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.480,97.500) lpos=(2.506,4.020,3.480) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0197,3.4800) mvmt=(0.0000,0.0829,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.0197,-1.0050) mvmt=(0.0000,0.0829,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.4322,-3.8650) mvmt=(0.0000,0.0829,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.2003,0.4800) mvmt=(0.0000,0.0829,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.3945,1.1066,2.0997) mvmt=(-0.0829,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4195,0.8666,1.9947) mvmt=(-0.0829,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4195,-1.3446,0.6447) mvmt=(-0.0829,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.0197,2.0000) mvmt=(0.0000,0.0829,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0197,3.5000) mvmt=(0.0000,0.0829,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0197,3.4800) mvmt=(0.0000,0.0829,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.480,97.500) lpos=(2.506,4.020,3.480) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,4.0197,3.4800) mvmt=(0.0000,0.0829,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,4.0197,-1.0050) mvmt=(0.0000,0.0829,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.4322,-3.8650) mvmt=(0.0000,0.0829,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-0.2003,0.4800) mvmt=(0.0000,0.0829,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-1.3945,1.1066,2.0997) mvmt=(-0.0829,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4195,0.8666,1.9947) mvmt=(-0.0829,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.4195,-1.3446,0.6447) mvmt=(-0.0829,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,4.0197,2.0000) mvmt=(0.0000,0.0829,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,4.0197,3.5000) mvmt=(0.0000,0.0829,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9012,3.9368,3.2172) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.599,7.563,97.237) lpos=(2.901,3.937,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9012,3.9368,3.2172) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9012,3.9368,3.2172) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6338,3.9368,-1.2678) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8532,3.3493,-4.1278) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3818,3.3493,-4.1278) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8512,-0.2832,0.2172) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5022,1.8369) mvmt=(0.0000,0.3956,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2622,1.7319) mvmt=(0.0000,0.3956,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9012,3.9368,3.2172) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.599,7.563,97.237) lpos=(2.901,3.937,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9012,3.9368,3.2172) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9012,3.9368,3.2172) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6338,3.9368,-1.2678) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8532,3.3493,-4.1278) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3818,3.3493,-4.1278) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8512,-0.2832,0.2172) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5022,1.8369) mvmt=(0.0000,0.3956,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2622,1.7319) mvmt=(0.0000,0.3956,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3366,1.2622,1.7319) out=(-0.3366,1.2622,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9012,3.9368,3.4653) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.599,7.563,97.485) lpos=(2.901,3.937,3.465) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9012,3.9368,3.4653) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6338,3.9368,-1.0197) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9312,0.6596,0.4703) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8532,3.3493,-3.8797) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3818,3.3493,-3.8797) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8512,-0.2832,0.4653) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5022,2.0850) mvmt=(0.0000,0.3956,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2622,1.9800) mvmt=(0.0000,0.3956,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,-0.9491,0.6300) mvmt=(0.0000,0.3956,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6338,3.9368,1.9853) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9012,3.9368,3.4853) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9012,3.9368,3.4653) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.599,7.563,97.485) lpos=(2.901,3.937,3.465) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9012,3.9368,3.4653) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6338,3.9368,-1.0197) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9312,0.6596,0.4703) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8532,3.3493,-3.8797) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3818,3.3493,-3.8797) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8512,-0.2832,0.4653) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3116,1.5022,2.0850) mvmt=(0.0000,0.3956,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,1.2622,1.9800) mvmt=(0.0000,0.3956,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3366,-0.9491,0.6300) mvmt=(0.0000,0.3956,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6338,3.9368,1.9853) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9012,3.9368,3.4853) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.9490,3.2172) mvmt=(0.0000,0.0121,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.551,97.237) lpos=(2.506,3.949,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9490,3.2172) mvmt=(0.0000,0.0121,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.9490,3.2172) mvmt=(0.0000,0.0121,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9489,-1.2678) mvmt=(0.0000,0.0121,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3615,-4.1278) mvmt=(0.0000,0.0121,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3237,1.1066,1.8369) mvmt=(-0.0121,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3487,0.8666,1.7319) mvmt=(-0.0121,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3487,-1.3446,0.3819) mvmt=(-0.0121,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9489,1.7372) mvmt=(0.0000,0.0121,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9490,3.2372) mvmt=(0.0000,0.0121,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9490,2.4672) mvmt=(0.0000,0.0121,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,7.551,96.487) lpos=(2.506,3.949,2.467) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9490,2.4672) mvmt=(0.0000,0.0121,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3237,1.1066,1.0869) mvmt=(-0.0121,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3487,0.8666,0.9819) mvmt=(-0.0121,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3487,0.8666,0.9819) out=(-0.3487,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.9490,3.2172) mvmt=(0.0000,0.0121,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.551,97.237) lpos=(2.506,3.949,3.217) lprev=(2.506,3.937,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9490,3.2172) mvmt=(0.0000,0.0121,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.9490,3.2172) mvmt=(0.0000,0.0121,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9489,-1.2678) mvmt=(0.0000,0.0121,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3615,-4.1278) mvmt=(0.0000,0.0121,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3237,1.1066,1.8369) mvmt=(-0.0121,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3487,0.8666,1.7319) mvmt=(-0.0121,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3487,-1.3446,0.3819) mvmt=(-0.0121,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9489,1.7372) mvmt=(0.0000,0.0121,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9490,3.2372) mvmt=(0.0000,0.0121,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9257,3.9255,3.2172) mvmt=(0.4201,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.574,7.575,97.237) lpos=(2.926,3.925,3.217) lprev=(2.506,3.949,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9257,3.9255,3.2172) mvmt=(0.4201,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9257,3.9255,3.2172) mvmt=(0.4201,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6093,3.9255,-1.2678) mvmt=(0.4201,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8777,3.3380,-4.1278) mvmt=(0.4201,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3573,3.3380,-4.1278) mvmt=(0.4201,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8757,-0.2945,0.2172) mvmt=(0.4201,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3002,1.5267,1.8369) mvmt=(0.0235,0.4201,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3252,1.2867,1.7319) mvmt=(0.0235,0.4201,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9257,3.9255,3.2172) mvmt=(0.4201,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.574,7.575,97.237) lpos=(2.926,3.925,3.217) lprev=(2.506,3.949,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9257,3.9255,3.2172) mvmt=(0.4201,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9257,3.9255,3.2172) mvmt=(0.4201,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6093,3.9255,-1.2678) mvmt=(0.4201,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8777,3.3380,-4.1278) mvmt=(0.4201,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3573,3.3380,-4.1278) mvmt=(0.4201,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8757,-0.2945,0.2172) mvmt=(0.4201,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3002,1.5267,1.8369) mvmt=(0.0235,0.4201,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3252,1.2867,1.7319) mvmt=(0.0235,0.4201,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3252,1.2867,1.7319) out=(-0.3252,1.2867,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9257,3.9255,3.4653) mvmt=(0.4201,-0.0235,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.574,7.575,97.485) lpos=(2.926,3.925,3.465) lprev=(2.506,3.949,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9257,3.9255,3.4653) mvmt=(0.4201,-0.0235,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6093,3.9255,-1.0197) mvmt=(0.4201,-0.0235,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9557,0.6483,0.4703) mvmt=(0.4201,-0.0235,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8777,3.3380,-3.8797) mvmt=(0.4201,-0.0235,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3573,3.3380,-3.8797) mvmt=(0.4201,-0.0235,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8757,-0.2945,0.4653) mvmt=(0.4201,-0.0235,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3002,1.5267,2.0850) mvmt=(0.0235,0.4201,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3252,1.2867,1.9800) mvmt=(0.0235,0.4201,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3252,-0.9245,0.6300) mvmt=(0.0235,0.4201,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6093,3.9255,1.9853) mvmt=(0.4201,-0.0235,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9257,3.9255,3.4853) mvmt=(0.4201,-0.0235,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9257,3.9255,3.4653) mvmt=(0.4201,-0.0235,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.574,7.575,97.485) lpos=(2.926,3.925,3.465) lprev=(2.506,3.949,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9257,3.9255,3.4653) mvmt=(0.4201,-0.0235,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6093,3.9255,-1.0197) mvmt=(0.4201,-0.0235,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9557,0.6483,0.4703) mvmt=(0.4201,-0.0235,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8777,3.3380,-3.8797) mvmt=(0.4201,-0.0235,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3573,3.3380,-3.8797) mvmt=(0.4201,-0.0235,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8757,-0.2945,0.4653) mvmt=(0.4201,-0.0235,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3002,1.5267,2.0850) mvmt=(0.0235,0.4201,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3252,1.2867,1.9800) mvmt=(0.0235,0.4201,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3252,-0.9245,0.6300) mvmt=(0.0235,0.4201,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6093,3.9255,1.9853) mvmt=(0.4201,-0.0235,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9257,3.9255,3.4853) mvmt=(0.4201,-0.0235,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.5056,3.9255,3.2172) mvmt=(0.0000,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.575,97.237) lpos=(2.506,3.925,3.217) lprev=(2.506,3.949,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9255,3.2172) mvmt=(0.0000,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.9255,3.2172) mvmt=(0.0000,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9255,-1.2678) mvmt=(0.0000,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3380,-4.1278) mvmt=(0.0000,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.3002,1.1066,1.8369) mvmt=(0.0235,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3252,0.8666,1.7319) mvmt=(0.0235,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.3252,-1.3446,0.3819) mvmt=(0.0235,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9255,1.7372) mvmt=(0.0000,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9255,3.2372) mvmt=(0.0000,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9255,2.4672) mvmt=(0.0000,-0.0235,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,7.575,96.487) lpos=(2.506,3.925,2.467) lprev=(2.506,3.949,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9255,2.4672) mvmt=(0.0000,-0.0235,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3002,1.1066,1.0869) mvmt=(0.0235,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3252,0.8666,0.9819) mvmt=(0.0235,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3252,0.8666,0.9819) out=(-0.3252,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.9255,3.2172) mvmt=(0.0000,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.575,97.237) lpos=(2.506,3.925,3.217) lprev=(2.506,3.949,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.9255,3.2172) mvmt=(0.0000,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.9255,3.2172) mvmt=(0.0000,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.9255,-1.2678) mvmt=(0.0000,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.3380,-4.1278) mvmt=(0.0000,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3002,1.1066,1.8369) mvmt=(0.0235,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3252,0.8666,1.7319) mvmt=(0.0235,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3252,-1.3446,0.3819) mvmt=(0.0235,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.9255,1.7372) mvmt=(0.0000,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.9255,3.2372) mvmt=(0.0000,-0.0235,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.8683,3.2172) mvmt=(0.0000,-0.0572,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.632,97.237) lpos=(2.506,3.868,3.217) lprev=(2.506,3.925,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.8683,3.2172) mvmt=(0.0000,-0.0572,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.8683,3.2172) mvmt=(0.0000,-0.0572,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.8683,-1.2678) mvmt=(0.0000,-0.0572,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.2808,-4.1278) mvmt=(0.0000,-0.0572,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2431,1.1066,1.8369) mvmt=(0.0572,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2681,0.8666,1.7319) mvmt=(0.0572,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2681,-1.3446,0.3819) mvmt=(0.0572,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.8683,1.7372) mvmt=(0.0000,-0.0572,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.8683,3.2372) mvmt=(0.0000,-0.0572,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.8683,2.4672) mvmt=(0.0000,-0.0572,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,7.632,96.487) lpos=(2.506,3.868,2.467) lprev=(2.506,3.925,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.8683,2.4672) mvmt=(0.0000,-0.0572,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2431,1.1066,1.0869) mvmt=(0.0572,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2681,0.8666,0.9819) mvmt=(0.0572,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2681,0.8666,0.9819) out=(-0.2681,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.8683,3.2172) mvmt=(0.0000,-0.0572,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.632,97.237) lpos=(2.506,3.868,3.217) lprev=(2.506,3.925,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.8683,3.2172) mvmt=(0.0000,-0.0572,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.8683,3.2172) mvmt=(0.0000,-0.0572,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.8683,-1.2678) mvmt=(0.0000,-0.0572,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.2808,-4.1278) mvmt=(0.0000,-0.0572,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2431,1.1066,1.8369) mvmt=(0.0572,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2681,0.8666,1.7319) mvmt=(0.0572,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2681,-1.3446,0.3819) mvmt=(0.0572,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.8683,1.7372) mvmt=(0.0000,-0.0572,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.8683,3.2372) mvmt=(0.0000,-0.0572,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8915,3.7833,3.2172) mvmt=(0.3859,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.608,7.717,97.237) lpos=(2.892,3.783,3.217) lprev=(2.506,3.868,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8915,3.7833,3.2172) mvmt=(0.3859,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8915,3.7833,3.2172) mvmt=(0.3859,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6435,3.7833,-1.2678) mvmt=(0.3859,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8435,3.1958,-4.1278) mvmt=(0.3859,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3915,3.1958,-4.1278) mvmt=(0.3859,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8415,-0.4367,0.2172) mvmt=(0.3859,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1581,1.4925,1.8369) mvmt=(0.0850,0.3859,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1831,1.2525,1.7319) mvmt=(0.0850,0.3859,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8915,3.7833,3.2172) mvmt=(0.3859,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.608,7.717,97.237) lpos=(2.892,3.783,3.217) lprev=(2.506,3.868,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8915,3.7833,3.2172) mvmt=(0.3859,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8915,3.7833,3.2172) mvmt=(0.3859,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6435,3.7833,-1.2678) mvmt=(0.3859,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8435,3.1958,-4.1278) mvmt=(0.3859,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3915,3.1958,-4.1278) mvmt=(0.3859,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8415,-0.4367,0.2172) mvmt=(0.3859,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1581,1.4925,1.8369) mvmt=(0.0850,0.3859,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1831,1.2525,1.7319) mvmt=(0.0850,0.3859,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1831,1.2525,1.7319) out=(-0.1831,1.2525,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.8915,3.7833,3.4653) mvmt=(0.3859,-0.0850,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.608,7.717,97.485) lpos=(2.892,3.783,3.465) lprev=(2.506,3.868,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8915,3.7833,3.4653) mvmt=(0.3859,-0.0850,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6435,3.7833,-1.0197) mvmt=(0.3859,-0.0850,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9215,0.5061,0.4703) mvmt=(0.3859,-0.0850,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8435,3.1958,-3.8797) mvmt=(0.3859,-0.0850,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3915,3.1958,-3.8797) mvmt=(0.3859,-0.0850,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8415,-0.4367,0.4653) mvmt=(0.3859,-0.0850,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.1581,1.4925,2.0850) mvmt=(0.0850,0.3859,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.1831,1.2525,1.9800) mvmt=(0.0850,0.3859,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.1831,-0.9587,0.6300) mvmt=(0.0850,0.3859,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6435,3.7833,1.9853) mvmt=(0.3859,-0.0850,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8915,3.7833,3.4853) mvmt=(0.3859,-0.0850,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8915,3.7833,3.4653) mvmt=(0.3859,-0.0850,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.608,7.717,97.485) lpos=(2.892,3.783,3.465) lprev=(2.506,3.868,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8915,3.7833,3.4653) mvmt=(0.3859,-0.0850,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6435,3.7833,-1.0197) mvmt=(0.3859,-0.0850,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9215,0.5061,0.4703) mvmt=(0.3859,-0.0850,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8435,3.1958,-3.8797) mvmt=(0.3859,-0.0850,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3915,3.1958,-3.8797) mvmt=(0.3859,-0.0850,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8415,-0.4367,0.4653) mvmt=(0.3859,-0.0850,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.1581,1.4925,2.0850) mvmt=(0.0850,0.3859,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.1831,1.2525,1.9800) mvmt=(0.0850,0.3859,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.1831,-0.9587,0.6300) mvmt=(0.0850,0.3859,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6435,3.7833,1.9853) mvmt=(0.3859,-0.0850,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8915,3.7833,3.4853) mvmt=(0.3859,-0.0850,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.5056,3.7833,3.2172) mvmt=(0.0000,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.717,97.237) lpos=(2.506,3.783,3.217) lprev=(2.506,3.868,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.7833,3.2172) mvmt=(0.0000,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.7833,3.2172) mvmt=(0.0000,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.7833,-1.2678) mvmt=(0.0000,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.1958,-4.1278) mvmt=(0.0000,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-1.1581,1.1066,1.8369) mvmt=(0.0850,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.1831,0.8666,1.7319) mvmt=(0.0850,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.1831,-1.3446,0.3819) mvmt=(0.0850,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.7833,1.7372) mvmt=(0.0000,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.7833,3.2372) mvmt=(0.0000,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.7833,2.4672) mvmt=(0.0000,-0.0850,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,7.717,96.487) lpos=(2.506,3.783,2.467) lprev=(2.506,3.868,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.7833,2.4672) mvmt=(0.0000,-0.0850,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1581,1.1066,1.0869) mvmt=(0.0850,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1831,0.8666,0.9819) mvmt=(0.0850,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1831,0.8666,0.9819) out=(-0.1831,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.7833,3.2172) mvmt=(0.0000,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.717,97.237) lpos=(2.506,3.783,3.217) lprev=(2.506,3.868,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.7833,3.2172) mvmt=(0.0000,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.7833,3.2172) mvmt=(0.0000,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.7833,-1.2678) mvmt=(0.0000,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.1958,-4.1278) mvmt=(0.0000,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1581,1.1066,1.8369) mvmt=(0.0850,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1831,0.8666,1.7319) mvmt=(0.0850,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1831,-1.3446,0.3819) mvmt=(0.0850,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.7833,1.7372) mvmt=(0.0000,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.7833,3.2372) mvmt=(0.0000,-0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.6545,3.2172) mvmt=(0.0000,-0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.846,97.237) lpos=(2.506,3.654,3.217) lprev=(2.506,3.783,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.6545,3.2172) mvmt=(0.0000,-0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.6545,3.2172) mvmt=(0.0000,-0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.6545,-1.2678) mvmt=(0.0000,-0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.0670,-4.1278) mvmt=(0.0000,-0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0292,1.1066,1.8369) mvmt=(0.1289,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0542,0.8666,1.7319) mvmt=(0.1289,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0542,-1.3446,0.3819) mvmt=(0.1289,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.6545,1.7372) mvmt=(0.0000,-0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.6545,3.2372) mvmt=(0.0000,-0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.6545,2.4672) mvmt=(0.0000,-0.1289,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,7.846,96.487) lpos=(2.506,3.654,2.467) lprev=(2.506,3.783,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.6545,2.4672) mvmt=(0.0000,-0.1289,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0292,1.1066,1.0869) mvmt=(0.1289,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0542,0.8666,0.9819) mvmt=(0.1289,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0542,0.8666,0.9819) out=(-0.0542,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.6545,3.2172) mvmt=(0.0000,-0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,7.846,97.237) lpos=(2.506,3.654,3.217) lprev=(2.506,3.783,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.6545,3.2172) mvmt=(0.0000,-0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.6545,3.2172) mvmt=(0.0000,-0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.6545,-1.2678) mvmt=(0.0000,-0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,3.0670,-4.1278) mvmt=(0.0000,-0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0292,1.1066,1.8369) mvmt=(0.1289,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0542,0.8666,1.7319) mvmt=(0.1289,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0542,-1.3446,0.3819) mvmt=(0.1289,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.6545,1.7372) mvmt=(0.0000,-0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.6545,3.2372) mvmt=(0.0000,-0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8990,3.4940,3.2172) mvmt=(0.3934,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.601,8.006,97.237) lpos=(2.899,3.494,3.217) lprev=(2.506,3.654,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8990,3.4940,3.2172) mvmt=(0.3934,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8990,3.4940,3.2172) mvmt=(0.3934,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6360,3.4940,-1.2678) mvmt=(0.3934,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9290,0.2168,0.2222) mvmt=(0.3934,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8510,2.9065,-4.1278) mvmt=(0.3934,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3840,2.9065,-4.1278) mvmt=(0.3934,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8490,-0.7260,0.2172) mvmt=(0.3934,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8687,1.5000,1.8369) mvmt=(0.1605,0.3934,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1063,1.2600,1.7319) mvmt=(0.1605,0.3934,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8990,3.4940,3.2172) mvmt=(0.3934,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.601,8.006,97.237) lpos=(2.899,3.494,3.217) lprev=(2.506,3.654,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8990,3.4940,3.2172) mvmt=(0.3934,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8990,3.4940,3.2172) mvmt=(0.3934,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6360,3.4940,-1.2678) mvmt=(0.3934,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9290,0.2168,0.2222) mvmt=(0.3934,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8510,2.9065,-4.1278) mvmt=(0.3934,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3840,2.9065,-4.1278) mvmt=(0.3934,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8490,-0.7260,0.2172) mvmt=(0.3934,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8687,1.5000,1.8369) mvmt=(0.1605,0.3934,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1063,1.2600,1.7319) mvmt=(0.1605,0.3934,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1063,1.2600,1.7319) out=(0.1063,1.2600,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.8990,3.4940,3.4653) mvmt=(0.3934,-0.1605,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.601,8.006,97.485) lpos=(2.899,3.494,3.465) lprev=(2.506,3.654,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8990,3.4940,3.4653) mvmt=(0.3934,-0.1605,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6360,3.4940,-1.0197) mvmt=(0.3934,-0.1605,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9290,0.2168,0.4703) mvmt=(0.3934,-0.1605,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8510,2.9065,-3.8797) mvmt=(0.3934,-0.1605,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3840,2.9065,-3.8797) mvmt=(0.3934,-0.1605,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8490,-0.7260,0.4653) mvmt=(0.3934,-0.1605,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.8687,1.5000,2.0850) mvmt=(0.1605,0.3934,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1063,1.2600,1.9800) mvmt=(0.1605,0.3934,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1063,-0.9513,0.6300) mvmt=(0.1605,0.3934,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6360,3.4940,1.9853) mvmt=(0.3934,-0.1605,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8990,3.4940,3.4853) mvmt=(0.3934,-0.1605,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8990,3.4940,3.4653) mvmt=(0.3934,-0.1605,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.601,8.006,97.485) lpos=(2.899,3.494,3.465) lprev=(2.506,3.654,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8990,3.4940,3.4653) mvmt=(0.3934,-0.1605,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6360,3.4940,-1.0197) mvmt=(0.3934,-0.1605,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9290,0.2168,0.4703) mvmt=(0.3934,-0.1605,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8510,2.9065,-3.8797) mvmt=(0.3934,-0.1605,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3840,2.9065,-3.8797) mvmt=(0.3934,-0.1605,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8490,-0.7260,0.4653) mvmt=(0.3934,-0.1605,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.8687,1.5000,2.0850) mvmt=(0.1605,0.3934,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1063,1.2600,1.9800) mvmt=(0.1605,0.3934,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1063,-0.9513,0.6300) mvmt=(0.1605,0.3934,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6360,3.4940,1.9853) mvmt=(0.3934,-0.1605,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8990,3.4940,3.4853) mvmt=(0.3934,-0.1605,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[push-back-disp] site=dispatch center=(2.5056,3.4940,3.2172) mvmt=(0.0000,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.006,97.237) lpos=(2.506,3.494,3.217) lprev=(2.506,3.654,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.4940,3.2172) mvmt=(0.0000,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.4940,3.2172) mvmt=(0.0000,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.4940,-1.2678) mvmt=(0.0000,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.9065,-4.1278) mvmt=(0.0000,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.8687,1.1066,1.8369) mvmt=(0.1605,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1063,0.8666,1.7319) mvmt=(0.1605,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.1063,-1.3446,0.3819) mvmt=(0.1605,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.4940,1.7372) mvmt=(0.0000,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.4940,3.2372) mvmt=(0.0000,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.4940,2.4672) mvmt=(0.0000,-0.1605,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,8.006,96.487) lpos=(2.506,3.494,2.467) lprev=(2.506,3.654,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.4940,2.4672) mvmt=(0.0000,-0.1605,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8687,1.1066,1.0869) mvmt=(0.1605,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1063,0.8666,0.9819) mvmt=(0.1605,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1063,0.8666,0.9819) out=(0.1063,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.4940,3.2172) mvmt=(0.0000,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.006,97.237) lpos=(2.506,3.494,3.217) lprev=(2.506,3.654,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.4940,3.2172) mvmt=(0.0000,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.4940,3.2172) mvmt=(0.0000,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.4940,-1.2678) mvmt=(0.0000,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.9065,-4.1278) mvmt=(0.0000,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8687,1.1066,1.8369) mvmt=(0.1605,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1063,0.8666,1.7319) mvmt=(0.1605,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1063,-1.3446,0.3819) mvmt=(0.1605,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.4940,1.7372) mvmt=(0.0000,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.4940,3.2372) mvmt=(0.0000,-0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.3220,3.2172) mvmt=(0.0000,-0.1720,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.178,97.237) lpos=(2.506,3.322,3.217) lprev=(2.506,3.494,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.3220,3.2172) mvmt=(0.0000,-0.1720,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.3220,3.2172) mvmt=(0.0000,-0.1720,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.3220,-1.2678) mvmt=(0.0000,-0.1720,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.7345,-4.1278) mvmt=(0.0000,-0.1720,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.7345,-4.1278) mvmt=(0.0000,-0.1720,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.1066,1.8369) mvmt=(0.1720,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,0.8666,1.7319) mvmt=(0.1720,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-1.3446,0.3819) mvmt=(0.1720,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.3220,1.7372) mvmt=(0.0000,-0.1720,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.3220,3.2372) mvmt=(0.0000,-0.1720,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.3220,2.4672) mvmt=(0.0000,-0.1720,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,8.178,96.487) lpos=(2.506,3.322,2.467) lprev=(2.506,3.494,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.3220,2.4672) mvmt=(0.0000,-0.1720,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6968,1.1066,1.0869) mvmt=(0.1720,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,0.8666,0.9819) mvmt=(0.1720,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2782,0.8666,0.9819) out=(0.2782,0.8666,1.7319) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.3220,3.2172) mvmt=(0.0000,-0.1720,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.178,97.237) lpos=(2.506,3.322,3.217) lprev=(2.506,3.494,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.3220,3.2172) mvmt=(0.0000,-0.1720,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.3220,3.2172) mvmt=(0.0000,-0.1720,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.3220,-1.2678) mvmt=(0.0000,-0.1720,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.7345,-4.1278) mvmt=(0.0000,-0.1720,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.7345,-4.1278) mvmt=(0.0000,-0.1720,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.1066,1.8369) mvmt=(0.1720,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,0.8666,1.7319) mvmt=(0.1720,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-1.3446,0.3819) mvmt=(0.1720,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.3220,1.7372) mvmt=(0.0000,-0.1720,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.3220,3.2372) mvmt=(0.0000,-0.1720,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8935,3.1546,3.2172) mvmt=(0.3879,-0.1674,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.607,8.345,97.237) lpos=(2.893,3.155,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8935,3.1546,3.2172) mvmt=(0.3879,-0.1674,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8935,3.1546,3.2172) mvmt=(0.3879,-0.1674,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8935,3.1546,3.2172) mvmt=(0.3879,-0.1674,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.8935,3.1546,3.2172) out=(2.8935,3.1546,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.607,8.345,97.237) lpos=(2.893,3.155,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.8935,3.1546,3.4800) mvmt=(0.3879,-0.1674,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.607,8.345,97.500) lpos=(2.893,3.155,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8935,3.1546,3.4800) mvmt=(0.3879,-0.1674,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6415,3.1546,-1.0050) mvmt=(0.3879,-0.1674,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(4.9235,-0.1226,0.4850) mvmt=(0.3879,-0.1674,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8455,2.5671,-3.8650) mvmt=(0.3879,-0.1674,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.3895,2.5671,-3.8650) mvmt=(0.3879,-0.1674,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8435,-1.0654,0.4800) mvmt=(0.3879,-0.1674,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5293,1.4945,2.0997) mvmt=(0.1674,0.3879,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4457,1.2545,1.9947) mvmt=(0.1674,0.3879,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4457,-0.9568,0.6447) mvmt=(0.1674,0.3879,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.6415,3.1546,2.0000) mvmt=(0.3879,-0.1674,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.8935,3.1546,3.5000) mvmt=(0.3879,-0.1674,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.8935,3.1546,3.4800) mvmt=(0.3879,-0.1674,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.607,8.345,97.500) lpos=(2.893,3.155,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8935,3.1546,3.4800) mvmt=(0.3879,-0.1674,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6415,3.1546,-1.0050) mvmt=(0.3879,-0.1674,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(4.9235,-0.1226,0.4850) mvmt=(0.3879,-0.1674,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8455,2.5671,-3.8650) mvmt=(0.3879,-0.1674,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.3895,2.5671,-3.8650) mvmt=(0.3879,-0.1674,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8435,-1.0654,0.4800) mvmt=(0.3879,-0.1674,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5293,1.4945,2.0997) mvmt=(0.1674,0.3879,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4457,1.2545,1.9947) mvmt=(0.1674,0.3879,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4457,-0.9568,0.6447) mvmt=(0.1674,0.3879,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.6415,3.1546,2.0000) mvmt=(0.3879,-0.1674,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.8935,3.1546,3.5000) mvmt=(0.3879,-0.1674,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Slid +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=4 halted=False +[push-back-disp] site=dispatch center=(2.8935,3.3220,3.2172) mvmt=(0.3879,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.607,8.178,97.237) lpos=(2.893,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8935,3.3220,3.2172) mvmt=(0.3879,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8935,3.3220,3.2172) mvmt=(0.3879,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6415,3.3220,-1.2678) mvmt=(0.3879,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(4.9235,0.0448,0.2222) mvmt=(0.3879,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8455,2.7345,-4.1278) mvmt=(0.3879,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.3895,2.7345,-4.1278) mvmt=(0.3879,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.8435,-0.8980,0.2172) mvmt=(0.3879,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4945,1.8369) mvmt=(0.0000,0.3879,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2545,1.7319) mvmt=(0.0000,0.3879,0.0000) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.8935,3.3220,3.2172) mvmt=(0.3879,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.607,8.178,97.237) lpos=(2.893,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8935,3.3220,3.2172) mvmt=(0.3879,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8935,3.3220,3.2172) mvmt=(0.3879,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6415,3.3220,-1.2678) mvmt=(0.3879,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9235,0.0448,0.2222) mvmt=(0.3879,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8455,2.7345,-4.1278) mvmt=(0.3879,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3895,2.7345,-4.1278) mvmt=(0.3879,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8435,-0.8980,0.2172) mvmt=(0.3879,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4945,1.8369) mvmt=(0.0000,0.3879,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2545,1.7319) mvmt=(0.0000,0.3879,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2782,1.2545,1.7319) out=(0.2782,1.2545,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.8935,3.3220,3.4653) mvmt=(0.3879,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.607,8.178,97.485) lpos=(2.893,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8935,3.3220,3.4653) mvmt=(0.3879,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6415,3.3220,-1.0197) mvmt=(0.3879,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9235,0.0448,0.4703) mvmt=(0.3879,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8455,2.7345,-3.8797) mvmt=(0.3879,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3895,2.7345,-3.8797) mvmt=(0.3879,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8435,-0.8980,0.4653) mvmt=(0.3879,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4945,2.0850) mvmt=(0.0000,0.3879,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2545,1.9800) mvmt=(0.0000,0.3879,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9568,0.6300) mvmt=(0.0000,0.3879,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6415,3.3220,1.9853) mvmt=(0.3879,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8935,3.3220,3.4853) mvmt=(0.3879,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8935,3.3220,3.4653) mvmt=(0.3879,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.607,8.178,97.485) lpos=(2.893,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8935,3.3220,3.4653) mvmt=(0.3879,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6415,3.3220,-1.0197) mvmt=(0.3879,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9235,0.0448,0.4703) mvmt=(0.3879,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8455,2.7345,-3.8797) mvmt=(0.3879,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3895,2.7345,-3.8797) mvmt=(0.3879,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8435,-0.8980,0.4653) mvmt=(0.3879,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4945,2.0850) mvmt=(0.0000,0.3879,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2545,1.9800) mvmt=(0.0000,0.3879,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9568,0.6300) mvmt=(0.0000,0.3879,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6415,3.3220,1.9853) mvmt=(0.3879,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8935,3.3220,3.4853) mvmt=(0.3879,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.1546,3.2172) mvmt=(0.0000,-0.1674,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.345,97.237) lpos=(2.506,3.155,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1546,3.2172) mvmt=(0.0000,-0.1674,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.1546,3.2172) mvmt=(0.0000,-0.1674,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1546,3.2172) mvmt=(0.0000,-0.1674,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.1546,3.2172) out=(2.5056,3.1546,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.345,97.237) lpos=(2.506,3.155,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1546,3.4800) mvmt=(0.0000,-0.1674,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.345,97.500) lpos=(2.506,3.155,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1546,3.4800) mvmt=(0.0000,-0.1674,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1546,-1.0050) mvmt=(0.0000,-0.1674,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5671,-3.8650) mvmt=(0.0000,-0.1674,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5671,-3.8650) mvmt=(0.0000,-0.1674,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0654,0.4800) mvmt=(0.0000,-0.1674,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5294,1.1066,2.0997) mvmt=(0.1674,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4456,0.8666,1.9947) mvmt=(0.1674,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4456,-1.3446,0.6447) mvmt=(0.1674,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1546,2.0000) mvmt=(0.0000,-0.1674,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1546,3.5000) mvmt=(0.0000,-0.1674,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1546,3.4800) mvmt=(0.0000,-0.1674,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.345,97.500) lpos=(2.506,3.155,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1546,3.4800) mvmt=(0.0000,-0.1674,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1546,-1.0050) mvmt=(0.0000,-0.1674,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5671,-3.8650) mvmt=(0.0000,-0.1674,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5671,-3.8650) mvmt=(0.0000,-0.1674,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0654,0.4800) mvmt=(0.0000,-0.1674,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5294,1.1066,2.0997) mvmt=(0.1674,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4456,0.8666,1.9947) mvmt=(0.1674,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4456,-1.3446,0.6447) mvmt=(0.1674,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1546,2.0000) mvmt=(0.0000,-0.1674,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1546,3.5000) mvmt=(0.0000,-0.1674,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.8939,3.3220,3.2172) mvmt=(0.3883,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.606,8.178,97.237) lpos=(2.894,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8939,3.3220,3.2172) mvmt=(0.3883,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8939,3.3220,3.2172) mvmt=(0.3883,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6411,3.3220,-1.2678) mvmt=(0.3883,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9239,0.0448,0.2222) mvmt=(0.3883,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8459,2.7345,-4.1278) mvmt=(0.3883,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3891,2.7345,-4.1278) mvmt=(0.3883,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8439,-0.8980,0.2172) mvmt=(0.3883,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4949,1.8369) mvmt=(0.0000,0.3883,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2549,1.7319) mvmt=(0.0000,0.3883,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8939,3.3220,3.2172) mvmt=(0.3883,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.606,8.178,97.237) lpos=(2.894,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8939,3.3220,3.2172) mvmt=(0.3883,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8939,3.3220,3.2172) mvmt=(0.3883,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6411,3.3220,-1.2678) mvmt=(0.3883,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9239,0.0448,0.2222) mvmt=(0.3883,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8459,2.7345,-4.1278) mvmt=(0.3883,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3891,2.7345,-4.1278) mvmt=(0.3883,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8439,-0.8980,0.2172) mvmt=(0.3883,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4949,1.8369) mvmt=(0.0000,0.3883,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2549,1.7319) mvmt=(0.0000,0.3883,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2782,1.2549,1.7319) out=(0.2782,1.2549,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.8939,3.3220,3.4653) mvmt=(0.3883,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.606,8.178,97.485) lpos=(2.894,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8939,3.3220,3.4653) mvmt=(0.3883,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6411,3.3220,-1.0197) mvmt=(0.3883,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9239,0.0448,0.4703) mvmt=(0.3883,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8459,2.7345,-3.8797) mvmt=(0.3883,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3891,2.7345,-3.8797) mvmt=(0.3883,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8439,-0.8980,0.4653) mvmt=(0.3883,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4949,2.0850) mvmt=(0.0000,0.3883,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2549,1.9800) mvmt=(0.0000,0.3883,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9563,0.6300) mvmt=(0.0000,0.3883,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6411,3.3220,1.9853) mvmt=(0.3883,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8939,3.3220,3.4853) mvmt=(0.3883,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8939,3.3220,3.4653) mvmt=(0.3883,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.606,8.178,97.485) lpos=(2.894,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8939,3.3220,3.4653) mvmt=(0.3883,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6411,3.3220,-1.0197) mvmt=(0.3883,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9239,0.0448,0.4703) mvmt=(0.3883,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8459,2.7345,-3.8797) mvmt=(0.3883,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3891,2.7345,-3.8797) mvmt=(0.3883,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8439,-0.8980,0.4653) mvmt=(0.3883,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4949,2.0850) mvmt=(0.0000,0.3883,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2549,1.9800) mvmt=(0.0000,0.3883,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9563,0.6300) mvmt=(0.0000,0.3883,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6411,3.3220,1.9853) mvmt=(0.3883,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8939,3.3220,3.4853) mvmt=(0.3883,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.1648,3.2172) mvmt=(0.0000,-0.1572,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.335,97.237) lpos=(2.506,3.165,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1648,3.2172) mvmt=(0.0000,-0.1572,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.1648,3.2172) mvmt=(0.0000,-0.1572,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1648,3.2172) mvmt=(0.0000,-0.1572,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.1648,3.2172) out=(2.5056,3.1648,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.335,97.237) lpos=(2.506,3.165,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1648,3.4800) mvmt=(0.0000,-0.1572,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.335,97.500) lpos=(2.506,3.165,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1648,3.4800) mvmt=(0.0000,-0.1572,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1648,-1.0050) mvmt=(0.0000,-0.1572,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5773,-3.8650) mvmt=(0.0000,-0.1572,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5773,-3.8650) mvmt=(0.0000,-0.1572,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0552,0.4800) mvmt=(0.0000,-0.1572,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5396,1.1066,2.0997) mvmt=(0.1572,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4354,0.8666,1.9947) mvmt=(0.1572,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4354,-1.3446,0.6447) mvmt=(0.1572,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1648,2.0000) mvmt=(0.0000,-0.1572,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1648,3.5000) mvmt=(0.0000,-0.1572,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1648,3.4800) mvmt=(0.0000,-0.1572,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.335,97.500) lpos=(2.506,3.165,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1648,3.4800) mvmt=(0.0000,-0.1572,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1648,-1.0050) mvmt=(0.0000,-0.1572,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5773,-3.8650) mvmt=(0.0000,-0.1572,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5773,-3.8650) mvmt=(0.0000,-0.1572,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0552,0.4800) mvmt=(0.0000,-0.1572,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5396,1.1066,2.0997) mvmt=(0.1572,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4354,0.8666,1.9947) mvmt=(0.1572,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4354,-1.3446,0.6447) mvmt=(0.1572,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1648,2.0000) mvmt=(0.0000,-0.1572,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1648,3.5000) mvmt=(0.0000,-0.1572,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.8931,3.3220,3.2172) mvmt=(0.3875,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.607,8.178,97.237) lpos=(2.893,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8931,3.3220,3.2172) mvmt=(0.3875,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8931,3.3220,3.2172) mvmt=(0.3875,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6419,3.3220,-1.2678) mvmt=(0.3875,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9231,0.0448,0.2222) mvmt=(0.3875,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8451,2.7345,-4.1278) mvmt=(0.3875,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3899,2.7345,-4.1278) mvmt=(0.3875,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8431,-0.8980,0.2172) mvmt=(0.3875,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4941,1.8369) mvmt=(0.0000,0.3875,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2541,1.7319) mvmt=(0.0000,0.3875,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8931,3.3220,3.2172) mvmt=(0.3875,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.607,8.178,97.237) lpos=(2.893,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8931,3.3220,3.2172) mvmt=(0.3875,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8931,3.3220,3.2172) mvmt=(0.3875,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6419,3.3220,-1.2678) mvmt=(0.3875,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9231,0.0448,0.2222) mvmt=(0.3875,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8451,2.7345,-4.1278) mvmt=(0.3875,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3899,2.7345,-4.1278) mvmt=(0.3875,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8431,-0.8980,0.2172) mvmt=(0.3875,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4941,1.8369) mvmt=(0.0000,0.3875,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2541,1.7319) mvmt=(0.0000,0.3875,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2782,1.2541,1.7319) out=(0.2782,1.2541,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.8931,3.3220,3.4653) mvmt=(0.3875,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.607,8.178,97.485) lpos=(2.893,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8931,3.3220,3.4653) mvmt=(0.3875,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6419,3.3220,-1.0197) mvmt=(0.3875,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9231,0.0448,0.4703) mvmt=(0.3875,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8451,2.7345,-3.8797) mvmt=(0.3875,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3899,2.7345,-3.8797) mvmt=(0.3875,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8431,-0.8980,0.4653) mvmt=(0.3875,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4941,2.0850) mvmt=(0.0000,0.3875,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2541,1.9800) mvmt=(0.0000,0.3875,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9572,0.6300) mvmt=(0.0000,0.3875,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6419,3.3220,1.9853) mvmt=(0.3875,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8931,3.3220,3.4853) mvmt=(0.3875,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8931,3.3220,3.4653) mvmt=(0.3875,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.607,8.178,97.485) lpos=(2.893,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8931,3.3220,3.4653) mvmt=(0.3875,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6419,3.3220,-1.0197) mvmt=(0.3875,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9231,0.0448,0.4703) mvmt=(0.3875,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8451,2.7345,-3.8797) mvmt=(0.3875,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3899,2.7345,-3.8797) mvmt=(0.3875,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8431,-0.8980,0.4653) mvmt=(0.3875,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4941,2.0850) mvmt=(0.0000,0.3875,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2541,1.9800) mvmt=(0.0000,0.3875,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9572,0.6300) mvmt=(0.0000,0.3875,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6419,3.3220,1.9853) mvmt=(0.3875,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8931,3.3220,3.4853) mvmt=(0.3875,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.1492,3.2172) mvmt=(0.0000,-0.1728,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.351,97.237) lpos=(2.506,3.149,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1492,3.2172) mvmt=(0.0000,-0.1728,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.1492,3.2172) mvmt=(0.0000,-0.1728,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1492,3.2172) mvmt=(0.0000,-0.1728,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.1492,3.2172) out=(2.5056,3.1492,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.351,97.237) lpos=(2.506,3.149,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1492,3.4800) mvmt=(0.0000,-0.1728,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.351,97.500) lpos=(2.506,3.149,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1492,3.4800) mvmt=(0.0000,-0.1728,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1492,-1.0050) mvmt=(0.0000,-0.1728,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5617,-3.8650) mvmt=(0.0000,-0.1728,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5617,-3.8650) mvmt=(0.0000,-0.1728,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0708,0.4800) mvmt=(0.0000,-0.1728,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5239,1.1066,2.0997) mvmt=(0.1728,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4511,0.8666,1.9947) mvmt=(0.1728,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4511,-1.3446,0.6447) mvmt=(0.1728,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1492,2.0000) mvmt=(0.0000,-0.1728,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1492,3.5000) mvmt=(0.0000,-0.1728,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1492,3.4800) mvmt=(0.0000,-0.1728,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.351,97.500) lpos=(2.506,3.149,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1492,3.4800) mvmt=(0.0000,-0.1728,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1492,-1.0050) mvmt=(0.0000,-0.1728,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5617,-3.8650) mvmt=(0.0000,-0.1728,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5617,-3.8650) mvmt=(0.0000,-0.1728,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0708,0.4800) mvmt=(0.0000,-0.1728,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5239,1.1066,2.0997) mvmt=(0.1728,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4511,0.8666,1.9947) mvmt=(0.1728,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4511,-1.3446,0.6447) mvmt=(0.1728,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1492,2.0000) mvmt=(0.0000,-0.1728,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1492,3.5000) mvmt=(0.0000,-0.1728,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9027,3.3220,3.2172) mvmt=(0.3971,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.597,8.178,97.237) lpos=(2.903,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9027,3.3220,3.2172) mvmt=(0.3971,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9027,3.3220,3.2172) mvmt=(0.3971,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6323,3.3220,-1.2678) mvmt=(0.3971,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9327,0.0448,0.2222) mvmt=(0.3971,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8547,2.7345,-4.1278) mvmt=(0.3971,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3803,2.7345,-4.1278) mvmt=(0.3971,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8527,-0.8980,0.2172) mvmt=(0.3971,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5037,1.8369) mvmt=(0.0000,0.3971,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2637,1.7319) mvmt=(0.0000,0.3971,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9027,3.3220,3.2172) mvmt=(0.3971,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.597,8.178,97.237) lpos=(2.903,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9027,3.3220,3.2172) mvmt=(0.3971,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9027,3.3220,3.2172) mvmt=(0.3971,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6323,3.3220,-1.2678) mvmt=(0.3971,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9327,0.0448,0.2222) mvmt=(0.3971,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8547,2.7345,-4.1278) mvmt=(0.3971,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3803,2.7345,-4.1278) mvmt=(0.3971,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8527,-0.8980,0.2172) mvmt=(0.3971,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5037,1.8369) mvmt=(0.0000,0.3971,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2637,1.7319) mvmt=(0.0000,0.3971,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2782,1.2637,1.7319) out=(0.2782,1.2637,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9027,3.3220,3.4653) mvmt=(0.3971,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.597,8.178,97.485) lpos=(2.903,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9027,3.3220,3.4653) mvmt=(0.3971,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6323,3.3220,-1.0197) mvmt=(0.3971,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9327,0.0448,0.4703) mvmt=(0.3971,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8547,2.7345,-3.8797) mvmt=(0.3971,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3803,2.7345,-3.8797) mvmt=(0.3971,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8527,-0.8980,0.4653) mvmt=(0.3971,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5037,2.0850) mvmt=(0.0000,0.3971,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2637,1.9800) mvmt=(0.0000,0.3971,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9476,0.6300) mvmt=(0.0000,0.3971,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6323,3.3220,1.9853) mvmt=(0.3971,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9027,3.3220,3.4853) mvmt=(0.3971,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9027,3.3220,3.4653) mvmt=(0.3971,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.597,8.178,97.485) lpos=(2.903,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9027,3.3220,3.4653) mvmt=(0.3971,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6323,3.3220,-1.0197) mvmt=(0.3971,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9327,0.0448,0.4703) mvmt=(0.3971,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8547,2.7345,-3.8797) mvmt=(0.3971,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3803,2.7345,-3.8797) mvmt=(0.3971,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8527,-0.8980,0.4653) mvmt=(0.3971,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5037,2.0850) mvmt=(0.0000,0.3971,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2637,1.9800) mvmt=(0.0000,0.3971,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9476,0.6300) mvmt=(0.0000,0.3971,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6323,3.3220,1.9853) mvmt=(0.3971,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9027,3.3220,3.4853) mvmt=(0.3971,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.1569,3.2172) mvmt=(0.0000,-0.1651,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.343,97.237) lpos=(2.506,3.157,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1569,3.2172) mvmt=(0.0000,-0.1651,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.1569,3.2172) mvmt=(0.0000,-0.1651,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1569,3.2172) mvmt=(0.0000,-0.1651,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.1569,3.2172) out=(2.5056,3.1569,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.343,97.237) lpos=(2.506,3.157,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1569,3.4800) mvmt=(0.0000,-0.1651,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.343,97.500) lpos=(2.506,3.157,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1569,3.4800) mvmt=(0.0000,-0.1651,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1569,-1.0050) mvmt=(0.0000,-0.1651,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5694,-3.8650) mvmt=(0.0000,-0.1651,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5694,-3.8650) mvmt=(0.0000,-0.1651,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0631,0.4800) mvmt=(0.0000,-0.1651,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5317,1.1066,2.0997) mvmt=(0.1651,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4433,0.8666,1.9947) mvmt=(0.1651,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4433,-1.3446,0.6447) mvmt=(0.1651,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1569,2.0000) mvmt=(0.0000,-0.1651,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1569,3.5000) mvmt=(0.0000,-0.1651,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1569,3.4800) mvmt=(0.0000,-0.1651,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.343,97.500) lpos=(2.506,3.157,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1569,3.4800) mvmt=(0.0000,-0.1651,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1569,-1.0050) mvmt=(0.0000,-0.1651,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5694,-3.8650) mvmt=(0.0000,-0.1651,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5694,-3.8650) mvmt=(0.0000,-0.1651,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0631,0.4800) mvmt=(0.0000,-0.1651,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5317,1.1066,2.0997) mvmt=(0.1651,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4433,0.8666,1.9947) mvmt=(0.1651,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4433,-1.3446,0.6447) mvmt=(0.1651,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1569,2.0000) mvmt=(0.0000,-0.1651,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1569,3.5000) mvmt=(0.0000,-0.1651,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9108,3.3220,3.2172) mvmt=(0.4052,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.589,8.178,97.237) lpos=(2.911,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9108,3.3220,3.2172) mvmt=(0.4052,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9108,3.3220,3.2172) mvmt=(0.4052,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6242,3.3220,-1.2678) mvmt=(0.4052,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9408,0.0448,0.2222) mvmt=(0.4052,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8628,2.7345,-4.1278) mvmt=(0.4052,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3722,2.7345,-4.1278) mvmt=(0.4052,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8608,-0.8980,0.2172) mvmt=(0.4052,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5118,1.8369) mvmt=(0.0000,0.4052,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2718,1.7319) mvmt=(0.0000,0.4052,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9108,3.3220,3.2172) mvmt=(0.4052,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.589,8.178,97.237) lpos=(2.911,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9108,3.3220,3.2172) mvmt=(0.4052,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9108,3.3220,3.2172) mvmt=(0.4052,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6242,3.3220,-1.2678) mvmt=(0.4052,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9408,0.0448,0.2222) mvmt=(0.4052,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8628,2.7345,-4.1278) mvmt=(0.4052,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3722,2.7345,-4.1278) mvmt=(0.4052,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8608,-0.8980,0.2172) mvmt=(0.4052,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5118,1.8369) mvmt=(0.0000,0.4052,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2718,1.7319) mvmt=(0.0000,0.4052,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2782,1.2718,1.7319) out=(0.2782,1.2718,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9108,3.3220,3.4653) mvmt=(0.4052,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.589,8.178,97.485) lpos=(2.911,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9108,3.3220,3.4653) mvmt=(0.4052,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6242,3.3220,-1.0197) mvmt=(0.4052,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9408,0.0448,0.4703) mvmt=(0.4052,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8628,2.7345,-3.8797) mvmt=(0.4052,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3722,2.7345,-3.8797) mvmt=(0.4052,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8608,-0.8980,0.4653) mvmt=(0.4052,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5118,2.0850) mvmt=(0.0000,0.4052,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2718,1.9800) mvmt=(0.0000,0.4052,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9395,0.6300) mvmt=(0.0000,0.4052,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6242,3.3220,1.9853) mvmt=(0.4052,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9108,3.3220,3.4853) mvmt=(0.4052,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9108,3.3220,3.4653) mvmt=(0.4052,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.589,8.178,97.485) lpos=(2.911,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9108,3.3220,3.4653) mvmt=(0.4052,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6242,3.3220,-1.0197) mvmt=(0.4052,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9408,0.0448,0.4703) mvmt=(0.4052,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8628,2.7345,-3.8797) mvmt=(0.4052,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3722,2.7345,-3.8797) mvmt=(0.4052,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8608,-0.8980,0.4653) mvmt=(0.4052,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5118,2.0850) mvmt=(0.0000,0.4052,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2718,1.9800) mvmt=(0.0000,0.4052,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9395,0.6300) mvmt=(0.0000,0.4052,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6242,3.3220,1.9853) mvmt=(0.4052,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9108,3.3220,3.4853) mvmt=(0.4052,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.1508,3.2172) mvmt=(0.0000,-0.1712,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.349,97.237) lpos=(2.506,3.151,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1508,3.2172) mvmt=(0.0000,-0.1712,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.1508,3.2172) mvmt=(0.0000,-0.1712,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1508,3.2172) mvmt=(0.0000,-0.1712,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.1508,3.2172) out=(2.5056,3.1508,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.349,97.237) lpos=(2.506,3.151,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1508,3.4800) mvmt=(0.0000,-0.1712,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.349,97.500) lpos=(2.506,3.151,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1508,3.4800) mvmt=(0.0000,-0.1712,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1508,-1.0050) mvmt=(0.0000,-0.1712,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5633,-3.8650) mvmt=(0.0000,-0.1712,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5633,-3.8650) mvmt=(0.0000,-0.1712,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0692,0.4800) mvmt=(0.0000,-0.1712,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5255,1.1066,2.0997) mvmt=(0.1712,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4495,0.8666,1.9947) mvmt=(0.1712,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4495,-1.3446,0.6447) mvmt=(0.1712,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1508,2.0000) mvmt=(0.0000,-0.1712,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1508,3.5000) mvmt=(0.0000,-0.1712,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1508,3.4800) mvmt=(0.0000,-0.1712,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.349,97.500) lpos=(2.506,3.151,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1508,3.4800) mvmt=(0.0000,-0.1712,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1508,-1.0050) mvmt=(0.0000,-0.1712,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5633,-3.8650) mvmt=(0.0000,-0.1712,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5633,-3.8650) mvmt=(0.0000,-0.1712,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0692,0.4800) mvmt=(0.0000,-0.1712,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5255,1.1066,2.0997) mvmt=(0.1712,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4495,0.8666,1.9947) mvmt=(0.1712,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4495,-1.3446,0.6447) mvmt=(0.1712,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1508,2.0000) mvmt=(0.0000,-0.1712,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1508,3.5000) mvmt=(0.0000,-0.1712,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9020,3.3220,3.2172) mvmt=(0.3964,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.598,8.178,97.237) lpos=(2.902,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9020,3.3220,3.2172) mvmt=(0.3964,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9020,3.3220,3.2172) mvmt=(0.3964,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6330,3.3220,-1.2678) mvmt=(0.3964,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9320,0.0448,0.2222) mvmt=(0.3964,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8540,2.7345,-4.1278) mvmt=(0.3964,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3810,2.7345,-4.1278) mvmt=(0.3964,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8520,-0.8980,0.2172) mvmt=(0.3964,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5030,1.8369) mvmt=(0.0000,0.3964,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2630,1.7319) mvmt=(0.0000,0.3964,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9020,3.3220,3.2172) mvmt=(0.3964,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.598,8.178,97.237) lpos=(2.902,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9020,3.3220,3.2172) mvmt=(0.3964,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9020,3.3220,3.2172) mvmt=(0.3964,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6330,3.3220,-1.2678) mvmt=(0.3964,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9320,0.0448,0.2222) mvmt=(0.3964,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8540,2.7345,-4.1278) mvmt=(0.3964,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3810,2.7345,-4.1278) mvmt=(0.3964,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8520,-0.8980,0.2172) mvmt=(0.3964,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5030,1.8369) mvmt=(0.0000,0.3964,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2630,1.7319) mvmt=(0.0000,0.3964,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2782,1.2630,1.7319) out=(0.2782,1.2630,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9020,3.3220,3.4653) mvmt=(0.3964,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.598,8.178,97.485) lpos=(2.902,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9020,3.3220,3.4653) mvmt=(0.3964,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6330,3.3220,-1.0197) mvmt=(0.3964,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9320,0.0448,0.4703) mvmt=(0.3964,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8540,2.7345,-3.8797) mvmt=(0.3964,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3810,2.7345,-3.8797) mvmt=(0.3964,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8520,-0.8980,0.4653) mvmt=(0.3964,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5030,2.0850) mvmt=(0.0000,0.3964,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2630,1.9800) mvmt=(0.0000,0.3964,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9483,0.6300) mvmt=(0.0000,0.3964,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6330,3.3220,1.9853) mvmt=(0.3964,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9020,3.3220,3.4853) mvmt=(0.3964,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9020,3.3220,3.4653) mvmt=(0.3964,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.598,8.178,97.485) lpos=(2.902,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9020,3.3220,3.4653) mvmt=(0.3964,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6330,3.3220,-1.0197) mvmt=(0.3964,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9320,0.0448,0.4703) mvmt=(0.3964,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8540,2.7345,-3.8797) mvmt=(0.3964,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3810,2.7345,-3.8797) mvmt=(0.3964,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8520,-0.8980,0.4653) mvmt=(0.3964,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5030,2.0850) mvmt=(0.0000,0.3964,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2630,1.9800) mvmt=(0.0000,0.3964,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9483,0.6300) mvmt=(0.0000,0.3964,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6330,3.3220,1.9853) mvmt=(0.3964,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9020,3.3220,3.4853) mvmt=(0.3964,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.1449,3.2172) mvmt=(0.0000,-0.1771,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.355,97.237) lpos=(2.506,3.145,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1449,3.2172) mvmt=(0.0000,-0.1771,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.1449,3.2172) mvmt=(0.0000,-0.1771,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1449,3.2172) mvmt=(0.0000,-0.1771,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.1449,3.2172) out=(2.5056,3.1449,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.355,97.237) lpos=(2.506,3.145,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1449,3.4800) mvmt=(0.0000,-0.1771,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.355,97.500) lpos=(2.506,3.145,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1449,3.4800) mvmt=(0.0000,-0.1771,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1449,-1.0050) mvmt=(0.0000,-0.1771,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5574,-3.8650) mvmt=(0.0000,-0.1771,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5574,-3.8650) mvmt=(0.0000,-0.1771,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0751,0.4800) mvmt=(0.0000,-0.1771,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5197,1.1066,2.0997) mvmt=(0.1771,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4553,0.8666,1.9947) mvmt=(0.1771,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4553,-1.3446,0.6447) mvmt=(0.1771,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1449,2.0000) mvmt=(0.0000,-0.1771,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1449,3.5000) mvmt=(0.0000,-0.1771,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1449,3.4800) mvmt=(0.0000,-0.1771,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.355,97.500) lpos=(2.506,3.145,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1449,3.4800) mvmt=(0.0000,-0.1771,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1449,-1.0050) mvmt=(0.0000,-0.1771,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5574,-3.8650) mvmt=(0.0000,-0.1771,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5574,-3.8650) mvmt=(0.0000,-0.1771,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0751,0.4800) mvmt=(0.0000,-0.1771,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5197,1.1066,2.0997) mvmt=(0.1771,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4553,0.8666,1.9947) mvmt=(0.1771,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4553,-1.3446,0.6447) mvmt=(0.1771,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1449,2.0000) mvmt=(0.0000,-0.1771,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1449,3.5000) mvmt=(0.0000,-0.1771,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9049,3.3220,3.2172) mvmt=(0.3993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.595,8.178,97.237) lpos=(2.905,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9049,3.3220,3.2172) mvmt=(0.3993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9049,3.3220,3.2172) mvmt=(0.3993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6301,3.3220,-1.2678) mvmt=(0.3993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9349,0.0448,0.2222) mvmt=(0.3993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8569,2.7345,-4.1278) mvmt=(0.3993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3781,2.7345,-4.1278) mvmt=(0.3993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8549,-0.8980,0.2172) mvmt=(0.3993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5059,1.8369) mvmt=(0.0000,0.3993,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2659,1.7319) mvmt=(0.0000,0.3993,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9049,3.3220,3.2172) mvmt=(0.3993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.595,8.178,97.237) lpos=(2.905,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9049,3.3220,3.2172) mvmt=(0.3993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9049,3.3220,3.2172) mvmt=(0.3993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6301,3.3220,-1.2678) mvmt=(0.3993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9349,0.0448,0.2222) mvmt=(0.3993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8569,2.7345,-4.1278) mvmt=(0.3993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3781,2.7345,-4.1278) mvmt=(0.3993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8549,-0.8980,0.2172) mvmt=(0.3993,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5059,1.8369) mvmt=(0.0000,0.3993,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2659,1.7319) mvmt=(0.0000,0.3993,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2782,1.2659,1.7319) out=(0.2782,1.2659,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9049,3.3220,3.4653) mvmt=(0.3993,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.595,8.178,97.485) lpos=(2.905,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9049,3.3220,3.4653) mvmt=(0.3993,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6301,3.3220,-1.0197) mvmt=(0.3993,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9349,0.0448,0.4703) mvmt=(0.3993,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8569,2.7345,-3.8797) mvmt=(0.3993,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3781,2.7345,-3.8797) mvmt=(0.3993,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8549,-0.8980,0.4653) mvmt=(0.3993,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5059,2.0850) mvmt=(0.0000,0.3993,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2659,1.9800) mvmt=(0.0000,0.3993,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9454,0.6300) mvmt=(0.0000,0.3993,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6301,3.3220,1.9853) mvmt=(0.3993,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9049,3.3220,3.4853) mvmt=(0.3993,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9049,3.3220,3.4653) mvmt=(0.3993,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.595,8.178,97.485) lpos=(2.905,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9049,3.3220,3.4653) mvmt=(0.3993,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6301,3.3220,-1.0197) mvmt=(0.3993,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9349,0.0448,0.4703) mvmt=(0.3993,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8569,2.7345,-3.8797) mvmt=(0.3993,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3781,2.7345,-3.8797) mvmt=(0.3993,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8549,-0.8980,0.4653) mvmt=(0.3993,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5059,2.0850) mvmt=(0.0000,0.3993,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2659,1.9800) mvmt=(0.0000,0.3993,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9454,0.6300) mvmt=(0.0000,0.3993,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6301,3.3220,1.9853) mvmt=(0.3993,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9049,3.3220,3.4853) mvmt=(0.3993,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.1530,3.2172) mvmt=(0.0000,-0.1690,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.347,97.237) lpos=(2.506,3.153,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1530,3.2172) mvmt=(0.0000,-0.1690,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.1530,3.2172) mvmt=(0.0000,-0.1690,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1530,3.2172) mvmt=(0.0000,-0.1690,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.1530,3.2172) out=(2.5056,3.1530,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.347,97.237) lpos=(2.506,3.153,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1530,3.4800) mvmt=(0.0000,-0.1690,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.347,97.500) lpos=(2.506,3.153,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1530,3.4800) mvmt=(0.0000,-0.1690,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1530,-1.0050) mvmt=(0.0000,-0.1690,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5655,-3.8650) mvmt=(0.0000,-0.1690,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5655,-3.8650) mvmt=(0.0000,-0.1690,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0670,0.4800) mvmt=(0.0000,-0.1690,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5278,1.1066,2.0997) mvmt=(0.1690,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4472,0.8666,1.9947) mvmt=(0.1690,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4472,-1.3446,0.6447) mvmt=(0.1690,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1530,2.0000) mvmt=(0.0000,-0.1690,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1530,3.5000) mvmt=(0.0000,-0.1690,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1530,3.4800) mvmt=(0.0000,-0.1690,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.347,97.500) lpos=(2.506,3.153,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1530,3.4800) mvmt=(0.0000,-0.1690,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1530,-1.0050) mvmt=(0.0000,-0.1690,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5655,-3.8650) mvmt=(0.0000,-0.1690,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5655,-3.8650) mvmt=(0.0000,-0.1690,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0670,0.4800) mvmt=(0.0000,-0.1690,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5278,1.1066,2.0997) mvmt=(0.1690,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4472,0.8666,1.9947) mvmt=(0.1690,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4472,-1.3446,0.6447) mvmt=(0.1690,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1530,2.0000) mvmt=(0.0000,-0.1690,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1530,3.5000) mvmt=(0.0000,-0.1690,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.8957,3.3220,3.2172) mvmt=(0.3901,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.604,8.178,97.237) lpos=(2.896,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8957,3.3220,3.2172) mvmt=(0.3901,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8957,3.3220,3.2172) mvmt=(0.3901,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6393,3.3220,-1.2678) mvmt=(0.3901,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9257,0.0448,0.2222) mvmt=(0.3901,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8477,2.7345,-4.1278) mvmt=(0.3901,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3873,2.7345,-4.1278) mvmt=(0.3901,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8457,-0.8980,0.2172) mvmt=(0.3901,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4967,1.8369) mvmt=(0.0000,0.3901,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2567,1.7319) mvmt=(0.0000,0.3901,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8957,3.3220,3.2172) mvmt=(0.3901,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.604,8.178,97.237) lpos=(2.896,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8957,3.3220,3.2172) mvmt=(0.3901,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8957,3.3220,3.2172) mvmt=(0.3901,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6393,3.3220,-1.2678) mvmt=(0.3901,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9257,0.0448,0.2222) mvmt=(0.3901,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8477,2.7345,-4.1278) mvmt=(0.3901,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3873,2.7345,-4.1278) mvmt=(0.3901,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8457,-0.8980,0.2172) mvmt=(0.3901,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4967,1.8369) mvmt=(0.0000,0.3901,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2567,1.7319) mvmt=(0.0000,0.3901,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2782,1.2567,1.7319) out=(0.2782,1.2567,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.8957,3.3220,3.4653) mvmt=(0.3901,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.604,8.178,97.485) lpos=(2.896,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8957,3.3220,3.4653) mvmt=(0.3901,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6393,3.3220,-1.0197) mvmt=(0.3901,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9257,0.0448,0.4703) mvmt=(0.3901,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8477,2.7345,-3.8797) mvmt=(0.3901,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3873,2.7345,-3.8797) mvmt=(0.3901,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8457,-0.8980,0.4653) mvmt=(0.3901,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4967,2.0850) mvmt=(0.0000,0.3901,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2567,1.9800) mvmt=(0.0000,0.3901,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9546,0.6300) mvmt=(0.0000,0.3901,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6393,3.3220,1.9853) mvmt=(0.3901,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8957,3.3220,3.4853) mvmt=(0.3901,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8957,3.3220,3.4653) mvmt=(0.3901,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.604,8.178,97.485) lpos=(2.896,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8957,3.3220,3.4653) mvmt=(0.3901,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6393,3.3220,-1.0197) mvmt=(0.3901,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9257,0.0448,0.4703) mvmt=(0.3901,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8477,2.7345,-3.8797) mvmt=(0.3901,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3873,2.7345,-3.8797) mvmt=(0.3901,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8457,-0.8980,0.4653) mvmt=(0.3901,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4967,2.0850) mvmt=(0.0000,0.3901,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2567,1.9800) mvmt=(0.0000,0.3901,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9546,0.6300) mvmt=(0.0000,0.3901,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6393,3.3220,1.9853) mvmt=(0.3901,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8957,3.3220,3.4853) mvmt=(0.3901,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.1641,3.2172) mvmt=(0.0000,-0.1579,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.336,97.237) lpos=(2.506,3.164,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1641,3.2172) mvmt=(0.0000,-0.1579,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.1641,3.2172) mvmt=(0.0000,-0.1579,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1641,3.2172) mvmt=(0.0000,-0.1579,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.1641,3.2172) out=(2.5056,3.1641,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.336,97.237) lpos=(2.506,3.164,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1641,3.4800) mvmt=(0.0000,-0.1579,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.336,97.500) lpos=(2.506,3.164,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1641,3.4800) mvmt=(0.0000,-0.1579,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1641,-1.0050) mvmt=(0.0000,-0.1579,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5766,-3.8650) mvmt=(0.0000,-0.1579,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5766,-3.8650) mvmt=(0.0000,-0.1579,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0559,0.4800) mvmt=(0.0000,-0.1579,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5389,1.1066,2.0997) mvmt=(0.1579,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4361,0.8666,1.9947) mvmt=(0.1579,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4361,-1.3446,0.6447) mvmt=(0.1579,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1641,2.0000) mvmt=(0.0000,-0.1579,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1641,3.5000) mvmt=(0.0000,-0.1579,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1641,3.4800) mvmt=(0.0000,-0.1579,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.336,97.500) lpos=(2.506,3.164,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1641,3.4800) mvmt=(0.0000,-0.1579,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1641,-1.0050) mvmt=(0.0000,-0.1579,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5766,-3.8650) mvmt=(0.0000,-0.1579,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5766,-3.8650) mvmt=(0.0000,-0.1579,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0559,0.4800) mvmt=(0.0000,-0.1579,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5389,1.1066,2.0997) mvmt=(0.1579,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4361,0.8666,1.9947) mvmt=(0.1579,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4361,-1.3446,0.6447) mvmt=(0.1579,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1641,2.0000) mvmt=(0.0000,-0.1579,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1641,3.5000) mvmt=(0.0000,-0.1579,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9063,3.3220,3.2172) mvmt=(0.4007,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.594,8.178,97.237) lpos=(2.906,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9063,3.3220,3.2172) mvmt=(0.4007,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9063,3.3220,3.2172) mvmt=(0.4007,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6287,3.3220,-1.2678) mvmt=(0.4007,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9363,0.0448,0.2222) mvmt=(0.4007,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8583,2.7345,-4.1278) mvmt=(0.4007,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3767,2.7345,-4.1278) mvmt=(0.4007,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8563,-0.8980,0.2172) mvmt=(0.4007,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5073,1.8369) mvmt=(0.0000,0.4007,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2673,1.7319) mvmt=(0.0000,0.4007,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9063,3.3220,3.2172) mvmt=(0.4007,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.594,8.178,97.237) lpos=(2.906,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9063,3.3220,3.2172) mvmt=(0.4007,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9063,3.3220,3.2172) mvmt=(0.4007,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6287,3.3220,-1.2678) mvmt=(0.4007,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9363,0.0448,0.2222) mvmt=(0.4007,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8583,2.7345,-4.1278) mvmt=(0.4007,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3767,2.7345,-4.1278) mvmt=(0.4007,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8563,-0.8980,0.2172) mvmt=(0.4007,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5073,1.8369) mvmt=(0.0000,0.4007,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2673,1.7319) mvmt=(0.0000,0.4007,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2782,1.2673,1.7319) out=(0.2782,1.2673,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9063,3.3220,3.4653) mvmt=(0.4007,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.594,8.178,97.485) lpos=(2.906,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9063,3.3220,3.4653) mvmt=(0.4007,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6287,3.3220,-1.0197) mvmt=(0.4007,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9363,0.0448,0.4703) mvmt=(0.4007,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8583,2.7345,-3.8797) mvmt=(0.4007,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3767,2.7345,-3.8797) mvmt=(0.4007,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8563,-0.8980,0.4653) mvmt=(0.4007,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5073,2.0850) mvmt=(0.0000,0.4007,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2673,1.9800) mvmt=(0.0000,0.4007,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9440,0.6300) mvmt=(0.0000,0.4007,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6287,3.3220,1.9853) mvmt=(0.4007,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9063,3.3220,3.4853) mvmt=(0.4007,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9063,3.3220,3.4653) mvmt=(0.4007,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.594,8.178,97.485) lpos=(2.906,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9063,3.3220,3.4653) mvmt=(0.4007,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6287,3.3220,-1.0197) mvmt=(0.4007,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9363,0.0448,0.4703) mvmt=(0.4007,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8583,2.7345,-3.8797) mvmt=(0.4007,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3767,2.7345,-3.8797) mvmt=(0.4007,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8563,-0.8980,0.4653) mvmt=(0.4007,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5073,2.0850) mvmt=(0.0000,0.4007,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2673,1.9800) mvmt=(0.0000,0.4007,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9440,0.6300) mvmt=(0.0000,0.4007,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6287,3.3220,1.9853) mvmt=(0.4007,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9063,3.3220,3.4853) mvmt=(0.4007,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.1535,3.2172) mvmt=(0.0000,-0.1685,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.347,97.237) lpos=(2.506,3.153,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1535,3.2172) mvmt=(0.0000,-0.1685,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.1535,3.2172) mvmt=(0.0000,-0.1685,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1535,3.2172) mvmt=(0.0000,-0.1685,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.1535,3.2172) out=(2.5056,3.1535,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.347,97.237) lpos=(2.506,3.153,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1535,3.4800) mvmt=(0.0000,-0.1685,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.347,97.500) lpos=(2.506,3.153,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1535,3.4800) mvmt=(0.0000,-0.1685,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1535,-1.0050) mvmt=(0.0000,-0.1685,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5660,-3.8650) mvmt=(0.0000,-0.1685,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5660,-3.8650) mvmt=(0.0000,-0.1685,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0665,0.4800) mvmt=(0.0000,-0.1685,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5282,1.1066,2.0997) mvmt=(0.1685,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4468,0.8666,1.9947) mvmt=(0.1685,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4468,-1.3446,0.6447) mvmt=(0.1685,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1535,2.0000) mvmt=(0.0000,-0.1685,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1535,3.5000) mvmt=(0.0000,-0.1685,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1535,3.4800) mvmt=(0.0000,-0.1685,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.347,97.500) lpos=(2.506,3.153,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1535,3.4800) mvmt=(0.0000,-0.1685,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1535,-1.0050) mvmt=(0.0000,-0.1685,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5660,-3.8650) mvmt=(0.0000,-0.1685,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5660,-3.8650) mvmt=(0.0000,-0.1685,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0665,0.4800) mvmt=(0.0000,-0.1685,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5282,1.1066,2.0997) mvmt=(0.1685,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4468,0.8666,1.9947) mvmt=(0.1685,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4468,-1.3446,0.6447) mvmt=(0.1685,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1535,2.0000) mvmt=(0.0000,-0.1685,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1535,3.5000) mvmt=(0.0000,-0.1685,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.8947,3.3220,3.2172) mvmt=(0.3891,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.605,8.178,97.237) lpos=(2.895,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8947,3.3220,3.2172) mvmt=(0.3891,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8947,3.3220,3.2172) mvmt=(0.3891,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6403,3.3220,-1.2678) mvmt=(0.3891,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9247,0.0448,0.2222) mvmt=(0.3891,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8467,2.7345,-4.1278) mvmt=(0.3891,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3883,2.7345,-4.1278) mvmt=(0.3891,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8447,-0.8980,0.2172) mvmt=(0.3891,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4957,1.8369) mvmt=(0.0000,0.3891,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2557,1.7319) mvmt=(0.0000,0.3891,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8947,3.3220,3.2172) mvmt=(0.3891,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.605,8.178,97.237) lpos=(2.895,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8947,3.3220,3.2172) mvmt=(0.3891,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8947,3.3220,3.2172) mvmt=(0.3891,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6403,3.3220,-1.2678) mvmt=(0.3891,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9247,0.0448,0.2222) mvmt=(0.3891,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8467,2.7345,-4.1278) mvmt=(0.3891,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3883,2.7345,-4.1278) mvmt=(0.3891,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8447,-0.8980,0.2172) mvmt=(0.3891,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4957,1.8369) mvmt=(0.0000,0.3891,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2557,1.7319) mvmt=(0.0000,0.3891,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2782,1.2557,1.7319) out=(0.2782,1.2557,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.8947,3.3220,3.4653) mvmt=(0.3891,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.605,8.178,97.485) lpos=(2.895,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8947,3.3220,3.4653) mvmt=(0.3891,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6403,3.3220,-1.0197) mvmt=(0.3891,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9247,0.0448,0.4703) mvmt=(0.3891,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8467,2.7345,-3.8797) mvmt=(0.3891,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3883,2.7345,-3.8797) mvmt=(0.3891,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8447,-0.8980,0.4653) mvmt=(0.3891,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4957,2.0850) mvmt=(0.0000,0.3891,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2557,1.9800) mvmt=(0.0000,0.3891,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9556,0.6300) mvmt=(0.0000,0.3891,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6403,3.3220,1.9853) mvmt=(0.3891,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8947,3.3220,3.4853) mvmt=(0.3891,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8947,3.3220,3.4653) mvmt=(0.3891,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.605,8.178,97.485) lpos=(2.895,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8947,3.3220,3.4653) mvmt=(0.3891,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6403,3.3220,-1.0197) mvmt=(0.3891,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9247,0.0448,0.4703) mvmt=(0.3891,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8467,2.7345,-3.8797) mvmt=(0.3891,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3883,2.7345,-3.8797) mvmt=(0.3891,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8447,-0.8980,0.4653) mvmt=(0.3891,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4957,2.0850) mvmt=(0.0000,0.3891,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2557,1.9800) mvmt=(0.0000,0.3891,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9556,0.6300) mvmt=(0.0000,0.3891,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6403,3.3220,1.9853) mvmt=(0.3891,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8947,3.3220,3.4853) mvmt=(0.3891,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.1506,3.2172) mvmt=(0.0000,-0.1714,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.349,97.237) lpos=(2.506,3.151,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1506,3.2172) mvmt=(0.0000,-0.1714,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.1506,3.2172) mvmt=(0.0000,-0.1714,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1506,3.2172) mvmt=(0.0000,-0.1714,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.1506,3.2172) out=(2.5056,3.1506,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.349,97.237) lpos=(2.506,3.151,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1506,3.4800) mvmt=(0.0000,-0.1714,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.349,97.500) lpos=(2.506,3.151,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1506,3.4800) mvmt=(0.0000,-0.1714,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1506,-1.0050) mvmt=(0.0000,-0.1714,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5631,-3.8650) mvmt=(0.0000,-0.1714,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5631,-3.8650) mvmt=(0.0000,-0.1714,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0694,0.4800) mvmt=(0.0000,-0.1714,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5254,1.1066,2.0997) mvmt=(0.1714,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4496,0.8666,1.9947) mvmt=(0.1714,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4496,-1.3446,0.6447) mvmt=(0.1714,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1506,2.0000) mvmt=(0.0000,-0.1714,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1506,3.5000) mvmt=(0.0000,-0.1714,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1506,3.4800) mvmt=(0.0000,-0.1714,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.349,97.500) lpos=(2.506,3.151,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1506,3.4800) mvmt=(0.0000,-0.1714,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1506,-1.0050) mvmt=(0.0000,-0.1714,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5631,-3.8650) mvmt=(0.0000,-0.1714,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5631,-3.8650) mvmt=(0.0000,-0.1714,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0694,0.4800) mvmt=(0.0000,-0.1714,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5254,1.1066,2.0997) mvmt=(0.1714,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4496,0.8666,1.9947) mvmt=(0.1714,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4496,-1.3446,0.6447) mvmt=(0.1714,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1506,2.0000) mvmt=(0.0000,-0.1714,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1506,3.5000) mvmt=(0.0000,-0.1714,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.8838,3.3220,3.2172) mvmt=(0.3781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.616,8.178,97.237) lpos=(2.884,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8838,3.3220,3.2172) mvmt=(0.3781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8838,3.3220,3.2172) mvmt=(0.3781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6512,3.3220,-1.2678) mvmt=(0.3781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9138,0.0448,0.2222) mvmt=(0.3781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8358,2.7345,-4.1278) mvmt=(0.3781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3992,2.7345,-4.1278) mvmt=(0.3781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8338,-0.8980,0.2172) mvmt=(0.3781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4848,1.8369) mvmt=(0.0000,0.3781,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2448,1.7319) mvmt=(0.0000,0.3781,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8838,3.3220,3.2172) mvmt=(0.3781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.616,8.178,97.237) lpos=(2.884,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8838,3.3220,3.2172) mvmt=(0.3781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8838,3.3220,3.2172) mvmt=(0.3781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6512,3.3220,-1.2678) mvmt=(0.3781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9138,0.0448,0.2222) mvmt=(0.3781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8358,2.7345,-4.1278) mvmt=(0.3781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3992,2.7345,-4.1278) mvmt=(0.3781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8338,-0.8980,0.2172) mvmt=(0.3781,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4848,1.8369) mvmt=(0.0000,0.3781,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2448,1.7319) mvmt=(0.0000,0.3781,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2782,1.2448,1.7319) out=(0.2782,1.2448,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.8838,3.3220,3.4653) mvmt=(0.3781,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.616,8.178,97.485) lpos=(2.884,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8838,3.3220,3.4653) mvmt=(0.3781,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6512,3.3220,-1.0197) mvmt=(0.3781,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9138,0.0448,0.4703) mvmt=(0.3781,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8358,2.7345,-3.8797) mvmt=(0.3781,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3992,2.7345,-3.8797) mvmt=(0.3781,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8338,-0.8980,0.4653) mvmt=(0.3781,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4848,2.0850) mvmt=(0.0000,0.3781,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2448,1.9800) mvmt=(0.0000,0.3781,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9665,0.6300) mvmt=(0.0000,0.3781,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6512,3.3220,1.9853) mvmt=(0.3781,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8838,3.3220,3.4853) mvmt=(0.3781,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8838,3.3220,3.4653) mvmt=(0.3781,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.616,8.178,97.485) lpos=(2.884,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8838,3.3220,3.4653) mvmt=(0.3781,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6512,3.3220,-1.0197) mvmt=(0.3781,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9138,0.0448,0.4703) mvmt=(0.3781,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8358,2.7345,-3.8797) mvmt=(0.3781,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3992,2.7345,-3.8797) mvmt=(0.3781,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8338,-0.8980,0.4653) mvmt=(0.3781,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4848,2.0850) mvmt=(0.0000,0.3781,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2448,1.9800) mvmt=(0.0000,0.3781,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9665,0.6300) mvmt=(0.0000,0.3781,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6512,3.3220,1.9853) mvmt=(0.3781,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8838,3.3220,3.4853) mvmt=(0.3781,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.1520,3.2172) mvmt=(0.0000,-0.1700,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.348,97.237) lpos=(2.506,3.152,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1520,3.2172) mvmt=(0.0000,-0.1700,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.1520,3.2172) mvmt=(0.0000,-0.1700,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1520,3.2172) mvmt=(0.0000,-0.1700,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.1520,3.2172) out=(2.5056,3.1520,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.348,97.237) lpos=(2.506,3.152,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1520,3.4800) mvmt=(0.0000,-0.1700,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.348,97.500) lpos=(2.506,3.152,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1520,3.4800) mvmt=(0.0000,-0.1700,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1520,-1.0050) mvmt=(0.0000,-0.1700,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5645,-3.8650) mvmt=(0.0000,-0.1700,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5645,-3.8650) mvmt=(0.0000,-0.1700,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0680,0.4800) mvmt=(0.0000,-0.1700,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5268,1.1066,2.0997) mvmt=(0.1700,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4482,0.8666,1.9947) mvmt=(0.1700,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4482,-1.3446,0.6447) mvmt=(0.1700,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1520,2.0000) mvmt=(0.0000,-0.1700,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1520,3.5000) mvmt=(0.0000,-0.1700,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1520,3.4800) mvmt=(0.0000,-0.1700,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.348,97.500) lpos=(2.506,3.152,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1520,3.4800) mvmt=(0.0000,-0.1700,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1520,-1.0050) mvmt=(0.0000,-0.1700,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5645,-3.8650) mvmt=(0.0000,-0.1700,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5645,-3.8650) mvmt=(0.0000,-0.1700,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0680,0.4800) mvmt=(0.0000,-0.1700,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5268,1.1066,2.0997) mvmt=(0.1700,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4482,0.8666,1.9947) mvmt=(0.1700,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4482,-1.3446,0.6447) mvmt=(0.1700,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1520,2.0000) mvmt=(0.0000,-0.1700,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1520,3.5000) mvmt=(0.0000,-0.1700,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9012,3.3220,3.2172) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.599,8.178,97.237) lpos=(2.901,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9012,3.3220,3.2172) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9012,3.3220,3.2172) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6338,3.3220,-1.2678) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9312,0.0448,0.2222) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8532,2.7345,-4.1278) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3818,2.7345,-4.1278) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8512,-0.8980,0.2172) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5022,1.8369) mvmt=(0.0000,0.3956,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2622,1.7319) mvmt=(0.0000,0.3956,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9012,3.3220,3.2172) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.599,8.178,97.237) lpos=(2.901,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9012,3.3220,3.2172) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9012,3.3220,3.2172) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6338,3.3220,-1.2678) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9312,0.0448,0.2222) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8532,2.7345,-4.1278) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3818,2.7345,-4.1278) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8512,-0.8980,0.2172) mvmt=(0.3956,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5022,1.8369) mvmt=(0.0000,0.3956,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2622,1.7319) mvmt=(0.0000,0.3956,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2782,1.2622,1.7319) out=(0.2782,1.2622,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9012,3.3220,3.4653) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.599,8.178,97.485) lpos=(2.901,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9012,3.3220,3.4653) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6338,3.3220,-1.0197) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9312,0.0448,0.4703) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8532,2.7345,-3.8797) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3818,2.7345,-3.8797) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8512,-0.8980,0.4653) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5022,2.0850) mvmt=(0.0000,0.3956,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2622,1.9800) mvmt=(0.0000,0.3956,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9491,0.6300) mvmt=(0.0000,0.3956,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6338,3.3220,1.9853) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9012,3.3220,3.4853) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9012,3.3220,3.4653) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.599,8.178,97.485) lpos=(2.901,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9012,3.3220,3.4653) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6338,3.3220,-1.0197) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9312,0.0448,0.4703) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8532,2.7345,-3.8797) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3818,2.7345,-3.8797) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8512,-0.8980,0.4653) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5022,2.0850) mvmt=(0.0000,0.3956,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2622,1.9800) mvmt=(0.0000,0.3956,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9491,0.6300) mvmt=(0.0000,0.3956,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6338,3.3220,1.9853) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9012,3.3220,3.4853) mvmt=(0.3956,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.1498,3.2172) mvmt=(0.0000,-0.1722,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.350,97.237) lpos=(2.506,3.150,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1498,3.2172) mvmt=(0.0000,-0.1722,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.1498,3.2172) mvmt=(0.0000,-0.1722,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1498,3.2172) mvmt=(0.0000,-0.1722,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.1498,3.2172) out=(2.5056,3.1498,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.350,97.237) lpos=(2.506,3.150,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1498,3.4800) mvmt=(0.0000,-0.1722,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.350,97.500) lpos=(2.506,3.150,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1498,3.4800) mvmt=(0.0000,-0.1722,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1498,-1.0050) mvmt=(0.0000,-0.1722,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5623,-3.8650) mvmt=(0.0000,-0.1722,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5623,-3.8650) mvmt=(0.0000,-0.1722,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0702,0.4800) mvmt=(0.0000,-0.1722,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5245,1.1066,2.0997) mvmt=(0.1722,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4505,0.8666,1.9947) mvmt=(0.1722,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4505,-1.3446,0.6447) mvmt=(0.1722,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1498,2.0000) mvmt=(0.0000,-0.1722,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1498,3.5000) mvmt=(0.0000,-0.1722,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1498,3.4800) mvmt=(0.0000,-0.1722,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.350,97.500) lpos=(2.506,3.150,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1498,3.4800) mvmt=(0.0000,-0.1722,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1498,-1.0050) mvmt=(0.0000,-0.1722,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5623,-3.8650) mvmt=(0.0000,-0.1722,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5623,-3.8650) mvmt=(0.0000,-0.1722,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0702,0.4800) mvmt=(0.0000,-0.1722,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5245,1.1066,2.0997) mvmt=(0.1722,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4505,0.8666,1.9947) mvmt=(0.1722,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4505,-1.3446,0.6447) mvmt=(0.1722,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1498,2.0000) mvmt=(0.0000,-0.1722,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1498,3.5000) mvmt=(0.0000,-0.1722,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9067,3.3220,3.2172) mvmt=(0.4011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.593,8.178,97.237) lpos=(2.907,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9067,3.3220,3.2172) mvmt=(0.4011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9067,3.3220,3.2172) mvmt=(0.4011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6283,3.3220,-1.2678) mvmt=(0.4011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9367,0.0448,0.2222) mvmt=(0.4011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8587,2.7345,-4.1278) mvmt=(0.4011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3763,2.7345,-4.1278) mvmt=(0.4011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8567,-0.8980,0.2172) mvmt=(0.4011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5077,1.8369) mvmt=(0.0000,0.4011,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2677,1.7319) mvmt=(0.0000,0.4011,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9067,3.3220,3.2172) mvmt=(0.4011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.593,8.178,97.237) lpos=(2.907,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9067,3.3220,3.2172) mvmt=(0.4011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9067,3.3220,3.2172) mvmt=(0.4011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6283,3.3220,-1.2678) mvmt=(0.4011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9367,0.0448,0.2222) mvmt=(0.4011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8587,2.7345,-4.1278) mvmt=(0.4011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3763,2.7345,-4.1278) mvmt=(0.4011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8567,-0.8980,0.2172) mvmt=(0.4011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5077,1.8369) mvmt=(0.0000,0.4011,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2677,1.7319) mvmt=(0.0000,0.4011,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2782,1.2677,1.7319) out=(0.2782,1.2677,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9067,3.3220,3.4653) mvmt=(0.4011,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.593,8.178,97.485) lpos=(2.907,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9067,3.3220,3.4653) mvmt=(0.4011,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6283,3.3220,-1.0197) mvmt=(0.4011,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9367,0.0448,0.4703) mvmt=(0.4011,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8587,2.7345,-3.8797) mvmt=(0.4011,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3763,2.7345,-3.8797) mvmt=(0.4011,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8567,-0.8980,0.4653) mvmt=(0.4011,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5077,2.0850) mvmt=(0.0000,0.4011,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2677,1.9800) mvmt=(0.0000,0.4011,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9436,0.6300) mvmt=(0.0000,0.4011,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6283,3.3220,1.9853) mvmt=(0.4011,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9067,3.3220,3.4853) mvmt=(0.4011,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9067,3.3220,3.4653) mvmt=(0.4011,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.593,8.178,97.485) lpos=(2.907,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9067,3.3220,3.4653) mvmt=(0.4011,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6283,3.3220,-1.0197) mvmt=(0.4011,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9367,0.0448,0.4703) mvmt=(0.4011,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8587,2.7345,-3.8797) mvmt=(0.4011,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3763,2.7345,-3.8797) mvmt=(0.4011,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8567,-0.8980,0.4653) mvmt=(0.4011,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.5077,2.0850) mvmt=(0.0000,0.4011,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2677,1.9800) mvmt=(0.0000,0.4011,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9436,0.6300) mvmt=(0.0000,0.4011,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6283,3.3220,1.9853) mvmt=(0.4011,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.9067,3.3220,3.4853) mvmt=(0.4011,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.1608,3.2172) mvmt=(0.0000,-0.1612,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.339,97.237) lpos=(2.506,3.161,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1608,3.2172) mvmt=(0.0000,-0.1612,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.1608,3.2172) mvmt=(0.0000,-0.1612,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1608,3.2172) mvmt=(0.0000,-0.1612,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.1608,3.2172) out=(2.5056,3.1608,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.339,97.237) lpos=(2.506,3.161,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1608,3.4800) mvmt=(0.0000,-0.1612,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.339,97.500) lpos=(2.506,3.161,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1608,3.4800) mvmt=(0.0000,-0.1612,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1608,-1.0050) mvmt=(0.0000,-0.1612,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5733,-3.8650) mvmt=(0.0000,-0.1612,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5733,-3.8650) mvmt=(0.0000,-0.1612,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0592,0.4800) mvmt=(0.0000,-0.1612,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5356,1.1066,2.0997) mvmt=(0.1612,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4394,0.8666,1.9947) mvmt=(0.1612,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4394,-1.3446,0.6447) mvmt=(0.1612,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1608,2.0000) mvmt=(0.0000,-0.1612,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1608,3.5000) mvmt=(0.0000,-0.1612,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1608,3.4800) mvmt=(0.0000,-0.1612,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.339,97.500) lpos=(2.506,3.161,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1608,3.4800) mvmt=(0.0000,-0.1612,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1608,-1.0050) mvmt=(0.0000,-0.1612,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.5733,-3.8650) mvmt=(0.0000,-0.1612,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.5733,-3.8650) mvmt=(0.0000,-0.1612,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0592,0.4800) mvmt=(0.0000,-0.1612,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5356,1.1066,2.0997) mvmt=(0.1612,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4394,0.8666,1.9947) mvmt=(0.1612,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4394,-1.3446,0.6447) mvmt=(0.1612,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1608,2.0000) mvmt=(0.0000,-0.1612,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1608,3.5000) mvmt=(0.0000,-0.1612,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.8982,3.3220,3.2172) mvmt=(0.3926,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.602,8.178,97.237) lpos=(2.898,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8982,3.3220,3.2172) mvmt=(0.3926,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8982,3.3220,3.2172) mvmt=(0.3926,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6368,3.3220,-1.2678) mvmt=(0.3926,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9282,0.0448,0.2222) mvmt=(0.3926,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8502,2.7345,-4.1278) mvmt=(0.3926,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3848,2.7345,-4.1278) mvmt=(0.3926,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8482,-0.8980,0.2172) mvmt=(0.3926,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4992,1.8369) mvmt=(0.0000,0.3926,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2592,1.7319) mvmt=(0.0000,0.3926,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8982,3.3220,3.2172) mvmt=(0.3926,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.602,8.178,97.237) lpos=(2.898,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8982,3.3220,3.2172) mvmt=(0.3926,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8982,3.3220,3.2172) mvmt=(0.3926,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6368,3.3220,-1.2678) mvmt=(0.3926,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9282,0.0448,0.2222) mvmt=(0.3926,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8502,2.7345,-4.1278) mvmt=(0.3926,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3848,2.7345,-4.1278) mvmt=(0.3926,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8482,-0.8980,0.2172) mvmt=(0.3926,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4992,1.8369) mvmt=(0.0000,0.3926,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2592,1.7319) mvmt=(0.0000,0.3926,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2782,1.2592,1.7319) out=(0.2782,1.2592,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.8982,3.3220,3.4653) mvmt=(0.3926,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.602,8.178,97.485) lpos=(2.898,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8982,3.3220,3.4653) mvmt=(0.3926,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6368,3.3220,-1.0197) mvmt=(0.3926,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9282,0.0448,0.4703) mvmt=(0.3926,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8502,2.7345,-3.8797) mvmt=(0.3926,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3848,2.7345,-3.8797) mvmt=(0.3926,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8482,-0.8980,0.4653) mvmt=(0.3926,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4992,2.0850) mvmt=(0.0000,0.3926,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2592,1.9800) mvmt=(0.0000,0.3926,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9521,0.6300) mvmt=(0.0000,0.3926,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6368,3.3220,1.9853) mvmt=(0.3926,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8982,3.3220,3.4853) mvmt=(0.3926,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8982,3.3220,3.4653) mvmt=(0.3926,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.602,8.178,97.485) lpos=(2.898,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8982,3.3220,3.4653) mvmt=(0.3926,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6368,3.3220,-1.0197) mvmt=(0.3926,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(4.9282,0.0448,0.4703) mvmt=(0.3926,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8502,2.7345,-3.8797) mvmt=(0.3926,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.3848,2.7345,-3.8797) mvmt=(0.3926,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.8482,-0.8980,0.4653) mvmt=(0.3926,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.4992,2.0850) mvmt=(0.0000,0.3926,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.2592,1.9800) mvmt=(0.0000,0.3926,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-0.9521,0.6300) mvmt=(0.0000,0.3926,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.6368,3.3220,1.9853) mvmt=(0.3926,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.8982,3.3220,3.4853) mvmt=(0.3926,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[input] MovementTurnLeft Press +[push-back-disp] site=dispatch center=(2.5056,3.1884,3.2172) mvmt=(0.0000,-0.1336,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.312,97.237) lpos=(2.506,3.188,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1884,3.2172) mvmt=(0.0000,-0.1336,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.1884,3.2172) mvmt=(0.0000,-0.1336,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1884,3.2172) mvmt=(0.0000,-0.1336,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.1884,3.2172) out=(2.5056,3.1884,3.4800) delta=(0.0000,0.0000,0.2628) deltaMag=0.2628 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.5621 dpPos=0.2172 dpMove=-0.6000 iDist=0.4379 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.312,97.237) lpos=(2.506,3.188,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1884,3.4800) mvmt=(0.0000,-0.1336,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.312,97.500) lpos=(2.506,3.188,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1884,3.4800) mvmt=(0.0000,-0.1336,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1884,-1.0050) mvmt=(0.0000,-0.1336,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6009,-3.8650) mvmt=(0.0000,-0.1336,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6009,-3.8650) mvmt=(0.0000,-0.1336,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0316,0.4800) mvmt=(0.0000,-0.1336,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5631,1.1066,2.0997) mvmt=(0.1336,0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4119,0.8666,1.9947) mvmt=(0.1336,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4119,-1.3446,0.6447) mvmt=(0.1336,-0.0000,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1884,2.0000) mvmt=(0.0000,-0.1336,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1884,3.5000) mvmt=(0.0000,-0.1336,0.2628) collide=False insertType=0 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1884,3.4800) mvmt=(0.0000,-0.1336,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.312,97.500) lpos=(2.506,3.188,3.480) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1884,3.4800) mvmt=(0.0000,-0.1336,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1884,-1.0050) mvmt=(0.0000,-0.1336,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6009,-3.8650) mvmt=(0.0000,-0.1336,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6009,-3.8650) mvmt=(0.0000,-0.1336,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(3.4556,-1.0316,0.4800) mvmt=(0.0000,-0.1336,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-0.5631,1.1066,2.0997) mvmt=(0.1336,0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4119,0.8666,1.9947) mvmt=(0.1336,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(0.4119,-1.3446,0.6447) mvmt=(0.1336,-0.0000,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1884,2.0000) mvmt=(0.0000,-0.1336,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1884,3.5000) mvmt=(0.0000,-0.1336,0.2628) collide=False insertType=1 objState=0x303 winterp=0.5621 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.7794,3.3220,3.2172) mvmt=(0.2737,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.721,8.178,97.237) lpos=(2.779,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7794,3.3220,3.2172) mvmt=(0.2737,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7794,3.3220,3.2172) mvmt=(0.2737,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7557,3.3220,-1.2678) mvmt=(0.2737,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7313,2.7345,-4.1278) mvmt=(0.2737,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5036,2.7345,-4.1278) mvmt=(0.2737,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7293,-0.8980,0.2172) mvmt=(0.2737,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.3803,1.8369) mvmt=(0.0000,0.2737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.1403,1.7319) mvmt=(0.0000,0.2737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7794,3.3220,3.2172) mvmt=(0.2737,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.721,8.178,97.237) lpos=(2.779,3.322,3.217) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7794,3.3220,3.2172) mvmt=(0.2737,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7794,3.3220,3.2172) mvmt=(0.2737,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7557,3.3220,-1.2678) mvmt=(0.2737,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7313,2.7345,-4.1278) mvmt=(0.2737,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5036,2.7345,-4.1278) mvmt=(0.2737,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7293,-0.8980,0.2172) mvmt=(0.2737,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.3803,1.8369) mvmt=(0.0000,0.2737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.1403,1.7319) mvmt=(0.0000,0.2737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2782,1.1403,1.7319) out=(0.2782,1.1403,1.9800) delta=(0.0000,0.0000,0.2481) deltaMag=0.2481 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.5866 dpPos=0.2319 dpMove=-0.6000 iDist=0.4134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.7794,3.3220,3.4653) mvmt=(0.2737,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.721,8.178,97.485) lpos=(2.779,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7794,3.3220,3.4653) mvmt=(0.2737,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7557,3.3220,-1.0197) mvmt=(0.2737,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7313,2.7345,-3.8797) mvmt=(0.2737,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.5036,2.7345,-3.8797) mvmt=(0.2737,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7293,-0.8980,0.4653) mvmt=(0.2737,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.3803,2.0850) mvmt=(0.0000,0.2737,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.1403,1.9800) mvmt=(0.0000,0.2737,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-1.0709,0.6300) mvmt=(0.0000,0.2737,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7557,3.3220,1.9853) mvmt=(0.2737,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.7793,3.3220,3.4853) mvmt=(0.2737,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.7794,3.3220,3.4653) mvmt=(0.2737,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.721,8.178,97.485) lpos=(2.779,3.322,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7794,3.3220,3.4653) mvmt=(0.2737,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7557,3.3220,-1.0197) mvmt=(0.2737,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7313,2.7345,-3.8797) mvmt=(0.2737,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.5036,2.7345,-3.8797) mvmt=(0.2737,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.7293,-0.8980,0.4653) mvmt=(0.2737,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6968,1.3803,2.0850) mvmt=(0.0000,0.2737,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,1.1403,1.9800) mvmt=(0.0000,0.2737,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.2782,-1.0709,0.6300) mvmt=(0.0000,0.2737,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7557,3.3220,1.9853) mvmt=(0.2737,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.7793,3.3220,3.4853) mvmt=(0.2737,0.0000,0.2481) collide=False insertType=1 objState=0x303 winterp=0.5866 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:672 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.4653) mvmt=(0.0000,-0.0631,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.485) lpos=(2.506,3.259,3.465) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.4653) mvmt=(0.0000,-0.0631,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.0197) mvmt=(0.0000,-0.0631,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-3.8797) mvmt=(0.0000,-0.0631,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-3.8797) mvmt=(0.0000,-0.0631,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,2.0850) mvmt=(0.0631,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.9800) mvmt=(0.0631,-0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.6300) mvmt=(0.0631,0.0000,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.9853) mvmt=(0.0000,-0.0631,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.4853) mvmt=(0.0000,-0.0631,0.2481) collide=False insertType=0 objState=0x303 winterp=0.5866 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,2.7153) mvmt=(0.0000,-0.0631,-0.5019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.994,8.241,96.735) lpos=(2.506,3.259,2.715) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,2.7153) mvmt=(0.0000,-0.0631,-0.5019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,2.7153) mvmt=(0.0000,-0.0631,-0.5019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.3350) mvmt=(0.0631,0.0000,-0.5019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.6337,1.1066,1.3350) out=(-0.6337,1.1066,1.8800) delta=(0.0000,0.0000,0.5450) deltaMag=0.5450 n=(0.0000,0.0000,1.0000) d=-1.4000 r=0.4800 winterp=1.0000->0.2733 dpPos=-0.0650 dpMove=-0.7500 iDist=0.7267 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.000,0.000,1.000) D=-96.800 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.000,0.000,1.000) D=-96.800 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2603) mvmt=(0.0000,-0.0631,0.0431) collide=False insertType=0 objState=0x303 winterp=0.2733 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.280) lpos=(2.506,3.259,3.260) lprev=(2.506,3.322,3.217) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2603) mvmt=(0.0000,-0.0631,0.0431) collide=False insertType=0 objState=0x303 winterp=0.2733 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2603) mvmt=(0.0000,-0.0631,0.0431) collide=False insertType=0 objState=0x303 winterp=0.2733 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2247) mvmt=(0.0000,-0.0631,0.0431) collide=False insertType=0 objState=0x303 winterp=0.2733 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.0847) mvmt=(0.0000,-0.0631,0.0431) collide=False insertType=0 objState=0x303 winterp=0.2733 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.0847) mvmt=(0.0000,-0.0631,0.0431) collide=False insertType=0 objState=0x303 winterp=0.2733 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8800) mvmt=(0.0631,0.0000,0.0431) collide=False insertType=0 objState=0x303 winterp=0.2733 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7750) mvmt=(0.0631,-0.0000,0.0431) collide=False insertType=0 objState=0x303 winterp=0.2733 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.4250) mvmt=(0.0631,0.0000,0.0431) collide=False insertType=0 objState=0x303 winterp=0.2733 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7803) mvmt=(0.0000,-0.0631,0.0431) collide=False insertType=0 objState=0x303 winterp=0.2733 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2803) mvmt=(0.0000,-0.0631,0.0431) collide=False insertType=0 objState=0x303 winterp=0.2733 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1998,3.2603) mvmt=(0.0000,-0.0591,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.300,97.280) lpos=(2.506,3.200,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1998,3.2603) mvmt=(0.0000,-0.0591,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.1998,3.2603) mvmt=(0.0000,-0.0591,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1998,3.2603) mvmt=(0.0000,-0.0591,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.1998,3.2603) out=(2.5056,3.1998,3.4800) delta=(0.0000,0.0000,0.2197) deltaMag=0.2197 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.6338 dpPos=0.2603 dpMove=-0.6000 iDist=0.3662 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.300,97.280) lpos=(2.506,3.200,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1998,3.4800) mvmt=(0.0000,-0.0591,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.300,97.500) lpos=(2.506,3.200,3.480) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1998,3.4800) mvmt=(0.0000,-0.0591,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1998,-1.0050) mvmt=(0.0000,-0.0591,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6123,-3.8650) mvmt=(0.0000,-0.0591,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6123,-3.8650) mvmt=(0.0000,-0.0591,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-0.5746,1.1066,2.0997) mvmt=(0.0591,0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.4004,0.8666,1.9947) mvmt=(0.0591,-0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.4004,-1.3446,0.6447) mvmt=(0.0591,0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1998,2.0000) mvmt=(0.0000,-0.0591,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1998,3.5000) mvmt=(0.0000,-0.0591,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1998,3.4800) mvmt=(0.0000,-0.0591,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.300,97.500) lpos=(2.506,3.200,3.480) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.1998,3.4800) mvmt=(0.0000,-0.0591,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.1998,-1.0050) mvmt=(0.0000,-0.0591,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6123,-3.8650) mvmt=(0.0000,-0.0591,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6123,-3.8650) mvmt=(0.0000,-0.0591,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-0.5746,1.1066,2.0997) mvmt=(0.0591,0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.4004,0.8666,1.9947) mvmt=(0.0591,-0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.4004,-1.3446,0.6447) mvmt=(0.0591,0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.1998,2.0000) mvmt=(0.0000,-0.0591,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.1998,3.5000) mvmt=(0.0000,-0.0591,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9423,3.2589,3.2603) mvmt=(0.4367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.558,8.241,97.280) lpos=(2.942,3.259,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9423,3.2589,3.2603) mvmt=(0.4367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9423,3.2589,3.2603) mvmt=(0.4367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5927,3.2589,-1.2247) mvmt=(0.4367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9723,-0.0183,0.2653) mvmt=(0.4367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8943,2.6714,-4.0847) mvmt=(0.4367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3407,2.6714,-4.0847) mvmt=(0.4367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8923,-0.9611,0.2603) mvmt=(0.4367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5433,1.8800) mvmt=(0.0000,0.4367,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.3033,1.7750) mvmt=(0.0000,0.4367,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9423,3.2589,3.2603) mvmt=(0.4367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.558,8.241,97.280) lpos=(2.942,3.259,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9423,3.2589,3.2603) mvmt=(0.4367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9423,3.2589,3.2603) mvmt=(0.4367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5927,3.2589,-1.2247) mvmt=(0.4367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9723,-0.0183,0.2653) mvmt=(0.4367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8943,2.6714,-4.0847) mvmt=(0.4367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3407,2.6714,-4.0847) mvmt=(0.4367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8923,-0.9611,0.2603) mvmt=(0.4367,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5433,1.8800) mvmt=(0.0000,0.4367,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.3033,1.7750) mvmt=(0.0000,0.4367,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,1.3033,1.7750) out=(0.3413,1.3033,1.9800) delta=(0.0000,0.0000,0.2050) deltaMag=0.2050 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.6583 dpPos=0.2750 dpMove=-0.6000 iDist=0.3417 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9423,3.2589,3.4653) mvmt=(0.4367,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.558,8.241,97.485) lpos=(2.942,3.259,3.465) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9423,3.2589,3.4653) mvmt=(0.4367,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5927,3.2589,-1.0197) mvmt=(0.4367,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(4.9723,-0.0183,0.4703) mvmt=(0.4367,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8943,2.6714,-3.8797) mvmt=(0.4367,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.3407,2.6714,-3.8797) mvmt=(0.4367,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8923,-0.9611,0.4653) mvmt=(0.4367,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5433,2.0850) mvmt=(0.0000,0.4367,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.3033,1.9800) mvmt=(0.0000,0.4367,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-0.9080,0.6300) mvmt=(0.0000,0.4367,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.5927,3.2589,1.9853) mvmt=(0.4367,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9423,3.2589,3.4853) mvmt=(0.4367,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9423,3.2589,3.4653) mvmt=(0.4367,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.558,8.241,97.485) lpos=(2.942,3.259,3.465) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9423,3.2589,3.4653) mvmt=(0.4367,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5927,3.2589,-1.0197) mvmt=(0.4367,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(4.9723,-0.0183,0.4703) mvmt=(0.4367,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8943,2.6714,-3.8797) mvmt=(0.4367,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.3407,2.6714,-3.8797) mvmt=(0.4367,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8923,-0.9611,0.4653) mvmt=(0.4367,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5433,2.0850) mvmt=(0.0000,0.4367,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.3033,1.9800) mvmt=(0.0000,0.4367,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-0.9080,0.6300) mvmt=(0.0000,0.4367,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.5927,3.2589,1.9853) mvmt=(0.4367,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9423,3.2589,3.4853) mvmt=(0.4367,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.2094,3.2603) mvmt=(0.0000,-0.0496,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.291,97.280) lpos=(2.506,3.209,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2094,3.2603) mvmt=(0.0000,-0.0496,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2094,3.2603) mvmt=(0.0000,-0.0496,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2094,3.2603) mvmt=(0.0000,-0.0496,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.2094,3.2603) out=(2.5056,3.2094,3.4800) delta=(0.0000,0.0000,0.2197) deltaMag=0.2197 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.6338 dpPos=0.2603 dpMove=-0.6000 iDist=0.3662 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.291,97.280) lpos=(2.506,3.209,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2094,3.4800) mvmt=(0.0000,-0.0496,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.291,97.500) lpos=(2.506,3.209,3.480) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2094,3.4800) mvmt=(0.0000,-0.0496,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2094,-1.0050) mvmt=(0.0000,-0.0496,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6219,-3.8650) mvmt=(0.0000,-0.0496,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6219,-3.8650) mvmt=(0.0000,-0.0496,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-0.5841,1.1066,2.0997) mvmt=(0.0496,0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3909,0.8666,1.9947) mvmt=(0.0496,-0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3909,-1.3446,0.6447) mvmt=(0.0496,-0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2094,2.0000) mvmt=(0.0000,-0.0496,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2094,3.5000) mvmt=(0.0000,-0.0496,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2094,3.4800) mvmt=(0.0000,-0.0496,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.291,97.500) lpos=(2.506,3.209,3.480) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2094,3.4800) mvmt=(0.0000,-0.0496,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2094,-1.0050) mvmt=(0.0000,-0.0496,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6219,-3.8650) mvmt=(0.0000,-0.0496,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6219,-3.8650) mvmt=(0.0000,-0.0496,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-0.5841,1.1066,2.0997) mvmt=(0.0496,0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3909,0.8666,1.9947) mvmt=(0.0496,-0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3909,-1.3446,0.6447) mvmt=(0.0496,-0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2094,2.0000) mvmt=(0.0000,-0.0496,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2094,3.5000) mvmt=(0.0000,-0.0496,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9355,3.2589,3.2603) mvmt=(0.4299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.564,8.241,97.280) lpos=(2.936,3.259,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9355,3.2589,3.2603) mvmt=(0.4299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9355,3.2589,3.2603) mvmt=(0.4299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5995,3.2589,-1.2247) mvmt=(0.4299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9655,-0.0183,0.2653) mvmt=(0.4299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8875,2.6714,-4.0847) mvmt=(0.4299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3475,2.6714,-4.0847) mvmt=(0.4299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8855,-0.9611,0.2603) mvmt=(0.4299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5365,1.8800) mvmt=(0.0000,0.4299,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.2965,1.7750) mvmt=(0.0000,0.4299,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9355,3.2589,3.2603) mvmt=(0.4299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.564,8.241,97.280) lpos=(2.936,3.259,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9355,3.2589,3.2603) mvmt=(0.4299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9355,3.2589,3.2603) mvmt=(0.4299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5995,3.2589,-1.2247) mvmt=(0.4299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9655,-0.0183,0.2653) mvmt=(0.4299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8875,2.6714,-4.0847) mvmt=(0.4299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3475,2.6714,-4.0847) mvmt=(0.4299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8855,-0.9611,0.2603) mvmt=(0.4299,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5365,1.8800) mvmt=(0.0000,0.4299,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.2965,1.7750) mvmt=(0.0000,0.4299,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,1.2965,1.7750) out=(0.3413,1.2965,1.9800) delta=(0.0000,0.0000,0.2050) deltaMag=0.2050 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.6583 dpPos=0.2750 dpMove=-0.6000 iDist=0.3417 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9355,3.2589,3.4653) mvmt=(0.4299,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.564,8.241,97.485) lpos=(2.936,3.259,3.465) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9355,3.2589,3.4653) mvmt=(0.4299,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5995,3.2589,-1.0197) mvmt=(0.4299,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(4.9655,-0.0183,0.4703) mvmt=(0.4299,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8875,2.6714,-3.8797) mvmt=(0.4299,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.3475,2.6714,-3.8797) mvmt=(0.4299,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8855,-0.9611,0.4653) mvmt=(0.4299,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5365,2.0850) mvmt=(0.0000,0.4299,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.2965,1.9800) mvmt=(0.0000,0.4299,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-0.9147,0.6300) mvmt=(0.0000,0.4299,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.5995,3.2589,1.9853) mvmt=(0.4299,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9355,3.2589,3.4853) mvmt=(0.4299,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9355,3.2589,3.4653) mvmt=(0.4299,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.564,8.241,97.485) lpos=(2.936,3.259,3.465) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9355,3.2589,3.4653) mvmt=(0.4299,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5995,3.2589,-1.0197) mvmt=(0.4299,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(4.9655,-0.0183,0.4703) mvmt=(0.4299,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8875,2.6714,-3.8797) mvmt=(0.4299,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.3475,2.6714,-3.8797) mvmt=(0.4299,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8855,-0.9611,0.4653) mvmt=(0.4299,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5365,2.0850) mvmt=(0.0000,0.4299,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.2965,1.9800) mvmt=(0.0000,0.4299,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-0.9147,0.6300) mvmt=(0.0000,0.4299,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.5995,3.2589,1.9853) mvmt=(0.4299,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9355,3.2589,3.4853) mvmt=(0.4299,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.2084,3.2603) mvmt=(0.0000,-0.0506,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.292,97.280) lpos=(2.506,3.208,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2084,3.2603) mvmt=(0.0000,-0.0506,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2084,3.2603) mvmt=(0.0000,-0.0506,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2084,3.2603) mvmt=(0.0000,-0.0506,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.2084,3.2603) out=(2.5056,3.2084,3.4800) delta=(0.0000,0.0000,0.2197) deltaMag=0.2197 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.6338 dpPos=0.2603 dpMove=-0.6000 iDist=0.3662 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.292,97.280) lpos=(2.506,3.208,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2084,3.4800) mvmt=(0.0000,-0.0506,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.292,97.500) lpos=(2.506,3.208,3.480) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2084,3.4800) mvmt=(0.0000,-0.0506,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2084,-1.0050) mvmt=(0.0000,-0.0506,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6209,-3.8650) mvmt=(0.0000,-0.0506,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6209,-3.8650) mvmt=(0.0000,-0.0506,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-0.5831,1.1066,2.0997) mvmt=(0.0506,0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3919,0.8666,1.9947) mvmt=(0.0506,-0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3919,-1.3446,0.6447) mvmt=(0.0506,-0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2084,2.0000) mvmt=(0.0000,-0.0506,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2084,3.5000) mvmt=(0.0000,-0.0506,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2084,3.4800) mvmt=(0.0000,-0.0506,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.292,97.500) lpos=(2.506,3.208,3.480) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2084,3.4800) mvmt=(0.0000,-0.0506,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2084,-1.0050) mvmt=(0.0000,-0.0506,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6209,-3.8650) mvmt=(0.0000,-0.0506,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6209,-3.8650) mvmt=(0.0000,-0.0506,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-0.5831,1.1066,2.0997) mvmt=(0.0506,0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3919,0.8666,1.9947) mvmt=(0.0506,-0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3919,-1.3446,0.6447) mvmt=(0.0506,-0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2084,2.0000) mvmt=(0.0000,-0.0506,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2084,3.5000) mvmt=(0.0000,-0.0506,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9394,3.2589,3.2603) mvmt=(0.4338,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.561,8.241,97.280) lpos=(2.939,3.259,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9394,3.2589,3.2603) mvmt=(0.4338,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9394,3.2589,3.2603) mvmt=(0.4338,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5956,3.2589,-1.2247) mvmt=(0.4338,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9694,-0.0183,0.2653) mvmt=(0.4338,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8914,2.6714,-4.0847) mvmt=(0.4338,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3436,2.6714,-4.0847) mvmt=(0.4338,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8894,-0.9611,0.2603) mvmt=(0.4338,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5404,1.8800) mvmt=(0.0000,0.4338,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.3004,1.7750) mvmt=(0.0000,0.4338,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9394,3.2589,3.2603) mvmt=(0.4338,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.561,8.241,97.280) lpos=(2.939,3.259,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9394,3.2589,3.2603) mvmt=(0.4338,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9394,3.2589,3.2603) mvmt=(0.4338,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5956,3.2589,-1.2247) mvmt=(0.4338,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9694,-0.0183,0.2653) mvmt=(0.4338,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8914,2.6714,-4.0847) mvmt=(0.4338,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3436,2.6714,-4.0847) mvmt=(0.4338,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8894,-0.9611,0.2603) mvmt=(0.4338,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5404,1.8800) mvmt=(0.0000,0.4338,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.3004,1.7750) mvmt=(0.0000,0.4338,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,1.3004,1.7750) out=(0.3413,1.3004,1.9800) delta=(0.0000,0.0000,0.2050) deltaMag=0.2050 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.6583 dpPos=0.2750 dpMove=-0.6000 iDist=0.3417 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9394,3.2589,3.4653) mvmt=(0.4338,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.561,8.241,97.485) lpos=(2.939,3.259,3.465) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9394,3.2589,3.4653) mvmt=(0.4338,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5956,3.2589,-1.0197) mvmt=(0.4338,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(4.9694,-0.0183,0.4703) mvmt=(0.4338,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8914,2.6714,-3.8797) mvmt=(0.4338,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.3436,2.6714,-3.8797) mvmt=(0.4338,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8894,-0.9611,0.4653) mvmt=(0.4338,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5404,2.0850) mvmt=(0.0000,0.4338,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.3004,1.9800) mvmt=(0.0000,0.4338,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-0.9109,0.6300) mvmt=(0.0000,0.4338,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.5956,3.2589,1.9853) mvmt=(0.4338,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9394,3.2589,3.4853) mvmt=(0.4338,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9394,3.2589,3.4653) mvmt=(0.4338,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.561,8.241,97.485) lpos=(2.939,3.259,3.465) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9394,3.2589,3.4653) mvmt=(0.4338,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5956,3.2589,-1.0197) mvmt=(0.4338,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(4.9694,-0.0183,0.4703) mvmt=(0.4338,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8914,2.6714,-3.8797) mvmt=(0.4338,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.3436,2.6714,-3.8797) mvmt=(0.4338,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8894,-0.9611,0.4653) mvmt=(0.4338,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5404,2.0850) mvmt=(0.0000,0.4338,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.3004,1.9800) mvmt=(0.0000,0.4338,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-0.9109,0.6300) mvmt=(0.0000,0.4338,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.5956,3.2589,1.9853) mvmt=(0.4338,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9394,3.2589,3.4853) mvmt=(0.4338,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.2104,3.2603) mvmt=(0.0000,-0.0486,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.290,97.280) lpos=(2.506,3.210,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2104,3.2603) mvmt=(0.0000,-0.0486,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2104,3.2603) mvmt=(0.0000,-0.0486,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2104,3.2603) mvmt=(0.0000,-0.0486,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.2104,3.2603) out=(2.5056,3.2104,3.4800) delta=(0.0000,0.0000,0.2197) deltaMag=0.2197 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.6338 dpPos=0.2603 dpMove=-0.6000 iDist=0.3662 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.290,97.280) lpos=(2.506,3.210,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2104,3.4800) mvmt=(0.0000,-0.0486,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.290,97.500) lpos=(2.506,3.210,3.480) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2104,3.4800) mvmt=(0.0000,-0.0486,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2104,-1.0050) mvmt=(0.0000,-0.0486,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6229,-3.8650) mvmt=(0.0000,-0.0486,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6229,-3.8650) mvmt=(0.0000,-0.0486,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-0.5851,1.1066,2.0997) mvmt=(0.0486,0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3899,0.8666,1.9947) mvmt=(0.0486,0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3899,-1.3446,0.6447) mvmt=(0.0486,-0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2104,2.0000) mvmt=(0.0000,-0.0486,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2104,3.5000) mvmt=(0.0000,-0.0486,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2104,3.4800) mvmt=(0.0000,-0.0486,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.290,97.500) lpos=(2.506,3.210,3.480) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2104,3.4800) mvmt=(0.0000,-0.0486,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2104,-1.0050) mvmt=(0.0000,-0.0486,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6229,-3.8650) mvmt=(0.0000,-0.0486,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6229,-3.8650) mvmt=(0.0000,-0.0486,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-0.5851,1.1066,2.0997) mvmt=(0.0486,0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3899,0.8666,1.9947) mvmt=(0.0486,0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3899,-1.3446,0.6447) mvmt=(0.0486,-0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2104,2.0000) mvmt=(0.0000,-0.0486,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2104,3.5000) mvmt=(0.0000,-0.0486,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9262,3.2589,3.2603) mvmt=(0.4206,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.574,8.241,97.280) lpos=(2.926,3.259,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9262,3.2589,3.2603) mvmt=(0.4206,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9262,3.2589,3.2603) mvmt=(0.4206,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6088,3.2589,-1.2247) mvmt=(0.4206,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9562,-0.0183,0.2653) mvmt=(0.4206,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8782,2.6714,-4.0847) mvmt=(0.4206,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3568,2.6714,-4.0847) mvmt=(0.4206,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8762,-0.9611,0.2603) mvmt=(0.4206,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5272,1.8800) mvmt=(0.0000,0.4206,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.2872,1.7750) mvmt=(0.0000,0.4206,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9262,3.2589,3.2603) mvmt=(0.4206,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.574,8.241,97.280) lpos=(2.926,3.259,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9262,3.2589,3.2603) mvmt=(0.4206,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9262,3.2589,3.2603) mvmt=(0.4206,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6088,3.2589,-1.2247) mvmt=(0.4206,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9562,-0.0183,0.2653) mvmt=(0.4206,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8782,2.6714,-4.0847) mvmt=(0.4206,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3568,2.6714,-4.0847) mvmt=(0.4206,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8762,-0.9611,0.2603) mvmt=(0.4206,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5272,1.8800) mvmt=(0.0000,0.4206,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.2872,1.7750) mvmt=(0.0000,0.4206,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,1.2872,1.7750) out=(0.3413,1.2872,1.9800) delta=(0.0000,0.0000,0.2050) deltaMag=0.2050 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.6583 dpPos=0.2750 dpMove=-0.6000 iDist=0.3417 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9262,3.2589,3.4653) mvmt=(0.4206,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.574,8.241,97.485) lpos=(2.926,3.259,3.465) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9262,3.2589,3.4653) mvmt=(0.4206,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6088,3.2589,-1.0197) mvmt=(0.4206,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(4.9562,-0.0183,0.4703) mvmt=(0.4206,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8782,2.6714,-3.8797) mvmt=(0.4206,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.3568,2.6714,-3.8797) mvmt=(0.4206,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8762,-0.9611,0.4653) mvmt=(0.4206,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5272,2.0850) mvmt=(0.0000,0.4206,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.2872,1.9800) mvmt=(0.0000,0.4206,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-0.9240,0.6300) mvmt=(0.0000,0.4206,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.6088,3.2589,1.9853) mvmt=(0.4206,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9262,3.2589,3.4853) mvmt=(0.4206,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9262,3.2589,3.4653) mvmt=(0.4206,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.574,8.241,97.485) lpos=(2.926,3.259,3.465) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9262,3.2589,3.4653) mvmt=(0.4206,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6088,3.2589,-1.0197) mvmt=(0.4206,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(4.9562,-0.0183,0.4703) mvmt=(0.4206,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8782,2.6714,-3.8797) mvmt=(0.4206,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.3568,2.6714,-3.8797) mvmt=(0.4206,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8762,-0.9611,0.4653) mvmt=(0.4206,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5272,2.0850) mvmt=(0.0000,0.4206,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.2872,1.9800) mvmt=(0.0000,0.4206,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-0.9240,0.6300) mvmt=(0.0000,0.4206,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.6088,3.2589,1.9853) mvmt=(0.4206,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9262,3.2589,3.4853) mvmt=(0.4206,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.2101,3.2603) mvmt=(0.0000,-0.0488,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.290,97.280) lpos=(2.506,3.210,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2101,3.2603) mvmt=(0.0000,-0.0488,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2101,3.2603) mvmt=(0.0000,-0.0488,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2101,3.2603) mvmt=(0.0000,-0.0488,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.2101,3.2603) out=(2.5056,3.2101,3.4800) delta=(0.0000,0.0000,0.2197) deltaMag=0.2197 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.6338 dpPos=0.2603 dpMove=-0.6000 iDist=0.3662 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.290,97.280) lpos=(2.506,3.210,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2101,3.4800) mvmt=(0.0000,-0.0488,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.290,97.500) lpos=(2.506,3.210,3.480) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2101,3.4800) mvmt=(0.0000,-0.0488,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2101,-1.0050) mvmt=(0.0000,-0.0488,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6226,-3.8650) mvmt=(0.0000,-0.0488,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6226,-3.8650) mvmt=(0.0000,-0.0488,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-0.5849,1.1066,2.0997) mvmt=(0.0488,0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3901,0.8666,1.9947) mvmt=(0.0488,0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3901,-1.3446,0.6447) mvmt=(0.0488,-0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2101,2.0000) mvmt=(0.0000,-0.0488,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2101,3.5000) mvmt=(0.0000,-0.0488,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2101,3.4800) mvmt=(0.0000,-0.0488,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.290,97.500) lpos=(2.506,3.210,3.480) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2101,3.4800) mvmt=(0.0000,-0.0488,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2101,-1.0050) mvmt=(0.0000,-0.0488,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6226,-3.8650) mvmt=(0.0000,-0.0488,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6226,-3.8650) mvmt=(0.0000,-0.0488,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-0.5849,1.1066,2.0997) mvmt=(0.0488,0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3901,0.8666,1.9947) mvmt=(0.0488,0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3901,-1.3446,0.6447) mvmt=(0.0488,-0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2101,2.0000) mvmt=(0.0000,-0.0488,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2101,3.5000) mvmt=(0.0000,-0.0488,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9466,3.2589,3.2603) mvmt=(0.4410,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.553,8.241,97.280) lpos=(2.947,3.259,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9466,3.2589,3.2603) mvmt=(0.4410,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9466,3.2589,3.2603) mvmt=(0.4410,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5884,3.2589,-1.2247) mvmt=(0.4410,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9766,-0.0183,0.2653) mvmt=(0.4410,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8986,2.6714,-4.0847) mvmt=(0.4410,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3364,2.6714,-4.0847) mvmt=(0.4410,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8966,-0.9611,0.2603) mvmt=(0.4410,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5476,1.8800) mvmt=(0.0000,0.4410,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.3076,1.7750) mvmt=(0.0000,0.4410,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9466,3.2589,3.2603) mvmt=(0.4410,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.553,8.241,97.280) lpos=(2.947,3.259,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9466,3.2589,3.2603) mvmt=(0.4410,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9466,3.2589,3.2603) mvmt=(0.4410,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5884,3.2589,-1.2247) mvmt=(0.4410,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9766,-0.0183,0.2653) mvmt=(0.4410,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8986,2.6714,-4.0847) mvmt=(0.4410,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3364,2.6714,-4.0847) mvmt=(0.4410,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8966,-0.9611,0.2603) mvmt=(0.4410,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5476,1.8800) mvmt=(0.0000,0.4410,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.3076,1.7750) mvmt=(0.0000,0.4410,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,1.3076,1.7750) out=(0.3413,1.3076,1.9800) delta=(0.0000,0.0000,0.2050) deltaMag=0.2050 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.6583 dpPos=0.2750 dpMove=-0.6000 iDist=0.3417 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9466,3.2589,3.4653) mvmt=(0.4410,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.553,8.241,97.485) lpos=(2.947,3.259,3.465) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9466,3.2589,3.4653) mvmt=(0.4410,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5884,3.2589,-1.0197) mvmt=(0.4410,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(4.9766,-0.0183,0.4703) mvmt=(0.4410,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8986,2.6714,-3.8797) mvmt=(0.4410,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.3364,2.6714,-3.8797) mvmt=(0.4410,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8966,-0.9611,0.4653) mvmt=(0.4410,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5476,2.0850) mvmt=(0.0000,0.4410,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.3076,1.9800) mvmt=(0.0000,0.4410,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-0.9037,0.6300) mvmt=(0.0000,0.4410,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.5884,3.2589,1.9853) mvmt=(0.4410,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9466,3.2589,3.4853) mvmt=(0.4410,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9466,3.2589,3.4653) mvmt=(0.4410,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.553,8.241,97.485) lpos=(2.947,3.259,3.465) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9466,3.2589,3.4653) mvmt=(0.4410,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5884,3.2589,-1.0197) mvmt=(0.4410,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(4.9766,-0.0183,0.4703) mvmt=(0.4410,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8986,2.6714,-3.8797) mvmt=(0.4410,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.3364,2.6714,-3.8797) mvmt=(0.4410,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8966,-0.9611,0.4653) mvmt=(0.4410,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5476,2.0850) mvmt=(0.0000,0.4410,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.3076,1.9800) mvmt=(0.0000,0.4410,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-0.9037,0.6300) mvmt=(0.0000,0.4410,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.5884,3.2589,1.9853) mvmt=(0.4410,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9466,3.2589,3.4853) mvmt=(0.4410,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.2079,3.2603) mvmt=(0.0000,-0.0510,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.292,97.280) lpos=(2.506,3.208,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2079,3.2603) mvmt=(0.0000,-0.0510,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2079,3.2603) mvmt=(0.0000,-0.0510,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2079,3.2603) mvmt=(0.0000,-0.0510,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.2079,3.2603) out=(2.5056,3.2079,3.4800) delta=(0.0000,0.0000,0.2197) deltaMag=0.2197 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.6338 dpPos=0.2603 dpMove=-0.6000 iDist=0.3662 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.292,97.280) lpos=(2.506,3.208,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2079,3.4800) mvmt=(0.0000,-0.0510,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.292,97.500) lpos=(2.506,3.208,3.480) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2079,3.4800) mvmt=(0.0000,-0.0510,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2079,-1.0050) mvmt=(0.0000,-0.0510,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6204,-3.8650) mvmt=(0.0000,-0.0510,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6204,-3.8650) mvmt=(0.0000,-0.0510,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-0.5827,1.1066,2.0997) mvmt=(0.0510,0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3923,0.8666,1.9947) mvmt=(0.0510,-0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3923,-1.3446,0.6447) mvmt=(0.0510,0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2079,2.0000) mvmt=(0.0000,-0.0510,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2079,3.5000) mvmt=(0.0000,-0.0510,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2079,3.4800) mvmt=(0.0000,-0.0510,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.292,97.500) lpos=(2.506,3.208,3.480) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2079,3.4800) mvmt=(0.0000,-0.0510,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2079,-1.0050) mvmt=(0.0000,-0.0510,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6204,-3.8650) mvmt=(0.0000,-0.0510,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6204,-3.8650) mvmt=(0.0000,-0.0510,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-0.5827,1.1066,2.0997) mvmt=(0.0510,0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3923,0.8666,1.9947) mvmt=(0.0510,-0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3923,-1.3446,0.6447) mvmt=(0.0510,0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2079,2.0000) mvmt=(0.0000,-0.0510,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2079,3.5000) mvmt=(0.0000,-0.0510,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9180,3.2589,3.2603) mvmt=(0.4124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.582,8.241,97.280) lpos=(2.918,3.259,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9180,3.2589,3.2603) mvmt=(0.4124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9180,3.2589,3.2603) mvmt=(0.4124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6170,3.2589,-1.2247) mvmt=(0.4124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9480,-0.0183,0.2653) mvmt=(0.4124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8700,2.6714,-4.0847) mvmt=(0.4124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3650,2.6714,-4.0847) mvmt=(0.4124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8680,-0.9611,0.2603) mvmt=(0.4124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5190,1.8800) mvmt=(0.0000,0.4124,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.2790,1.7750) mvmt=(0.0000,0.4124,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9180,3.2589,3.2603) mvmt=(0.4124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.582,8.241,97.280) lpos=(2.918,3.259,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9180,3.2589,3.2603) mvmt=(0.4124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9180,3.2589,3.2603) mvmt=(0.4124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6170,3.2589,-1.2247) mvmt=(0.4124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9480,-0.0183,0.2653) mvmt=(0.4124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8700,2.6714,-4.0847) mvmt=(0.4124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3650,2.6714,-4.0847) mvmt=(0.4124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8680,-0.9611,0.2603) mvmt=(0.4124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5190,1.8800) mvmt=(0.0000,0.4124,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.2790,1.7750) mvmt=(0.0000,0.4124,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,1.2790,1.7750) out=(0.3413,1.2790,1.9800) delta=(0.0000,0.0000,0.2050) deltaMag=0.2050 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.6583 dpPos=0.2750 dpMove=-0.6000 iDist=0.3417 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9180,3.2589,3.4653) mvmt=(0.4124,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.582,8.241,97.485) lpos=(2.918,3.259,3.465) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9180,3.2589,3.4653) mvmt=(0.4124,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6170,3.2589,-1.0197) mvmt=(0.4124,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(4.9480,-0.0183,0.4703) mvmt=(0.4124,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8700,2.6714,-3.8797) mvmt=(0.4124,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.3650,2.6714,-3.8797) mvmt=(0.4124,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8680,-0.9611,0.4653) mvmt=(0.4124,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5190,2.0850) mvmt=(0.0000,0.4124,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.2790,1.9800) mvmt=(0.0000,0.4124,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-0.9322,0.6300) mvmt=(0.0000,0.4124,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.6170,3.2589,1.9853) mvmt=(0.4124,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9180,3.2589,3.4853) mvmt=(0.4124,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9180,3.2589,3.4653) mvmt=(0.4124,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.582,8.241,97.485) lpos=(2.918,3.259,3.465) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9180,3.2589,3.4653) mvmt=(0.4124,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6170,3.2589,-1.0197) mvmt=(0.4124,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(4.9480,-0.0183,0.4703) mvmt=(0.4124,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8700,2.6714,-3.8797) mvmt=(0.4124,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.3650,2.6714,-3.8797) mvmt=(0.4124,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8680,-0.9611,0.4653) mvmt=(0.4124,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5190,2.0850) mvmt=(0.0000,0.4124,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.2790,1.9800) mvmt=(0.0000,0.4124,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-0.9322,0.6300) mvmt=(0.0000,0.4124,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.6170,3.2589,1.9853) mvmt=(0.4124,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9180,3.2589,3.4853) mvmt=(0.4124,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.2095,3.2603) mvmt=(0.0000,-0.0494,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.290,97.280) lpos=(2.506,3.210,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2095,3.2603) mvmt=(0.0000,-0.0494,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2095,3.2603) mvmt=(0.0000,-0.0494,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2095,3.2603) mvmt=(0.0000,-0.0494,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.2095,3.2603) out=(2.5056,3.2095,3.4800) delta=(0.0000,0.0000,0.2197) deltaMag=0.2197 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.6338 dpPos=0.2603 dpMove=-0.6000 iDist=0.3662 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.290,97.280) lpos=(2.506,3.210,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2095,3.4800) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.290,97.500) lpos=(2.506,3.210,3.480) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2095,3.4800) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2095,-1.0050) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6220,-3.8650) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6220,-3.8650) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-0.5843,1.1066,2.0997) mvmt=(0.0494,0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3907,0.8666,1.9947) mvmt=(0.0494,0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3907,-1.3446,0.6447) mvmt=(0.0494,-0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2095,2.0000) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2095,3.5000) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2095,3.4800) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.290,97.500) lpos=(2.506,3.210,3.480) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2095,3.4800) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2095,-1.0050) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6220,-3.8650) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6220,-3.8650) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-0.5843,1.1066,2.0997) mvmt=(0.0494,0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3907,0.8666,1.9947) mvmt=(0.0494,0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3907,-1.3446,0.6447) mvmt=(0.0494,-0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2095,2.0000) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2095,3.5000) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9269,3.2589,3.2603) mvmt=(0.4212,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.573,8.241,97.280) lpos=(2.927,3.259,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9269,3.2589,3.2603) mvmt=(0.4212,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9269,3.2589,3.2603) mvmt=(0.4212,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6081,3.2589,-1.2247) mvmt=(0.4212,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9569,-0.0183,0.2653) mvmt=(0.4212,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8789,2.6714,-4.0847) mvmt=(0.4212,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3561,2.6714,-4.0847) mvmt=(0.4212,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8769,-0.9611,0.2603) mvmt=(0.4212,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5279,1.8800) mvmt=(0.0000,0.4212,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.2879,1.7750) mvmt=(0.0000,0.4212,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9269,3.2589,3.2603) mvmt=(0.4212,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.573,8.241,97.280) lpos=(2.927,3.259,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9269,3.2589,3.2603) mvmt=(0.4212,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9269,3.2589,3.2603) mvmt=(0.4212,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6081,3.2589,-1.2247) mvmt=(0.4212,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9569,-0.0183,0.2653) mvmt=(0.4212,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8789,2.6714,-4.0847) mvmt=(0.4212,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3561,2.6714,-4.0847) mvmt=(0.4212,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8769,-0.9611,0.2603) mvmt=(0.4212,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5279,1.8800) mvmt=(0.0000,0.4212,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.2879,1.7750) mvmt=(0.0000,0.4212,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,1.2879,1.7750) out=(0.3413,1.2879,1.9800) delta=(0.0000,0.0000,0.2050) deltaMag=0.2050 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.6583 dpPos=0.2750 dpMove=-0.6000 iDist=0.3417 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9269,3.2589,3.4653) mvmt=(0.4212,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.573,8.241,97.485) lpos=(2.927,3.259,3.465) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9269,3.2589,3.4653) mvmt=(0.4212,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6081,3.2589,-1.0197) mvmt=(0.4212,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(4.9569,-0.0183,0.4703) mvmt=(0.4212,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8789,2.6714,-3.8797) mvmt=(0.4212,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.3561,2.6714,-3.8797) mvmt=(0.4212,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8769,-0.9611,0.4653) mvmt=(0.4212,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5279,2.0850) mvmt=(0.0000,0.4212,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.2879,1.9800) mvmt=(0.0000,0.4212,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-0.9234,0.6300) mvmt=(0.0000,0.4212,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.6081,3.2589,1.9853) mvmt=(0.4212,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9269,3.2589,3.4853) mvmt=(0.4212,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9269,3.2589,3.4653) mvmt=(0.4212,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.573,8.241,97.485) lpos=(2.927,3.259,3.465) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9269,3.2589,3.4653) mvmt=(0.4212,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6081,3.2589,-1.0197) mvmt=(0.4212,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(4.9569,-0.0183,0.4703) mvmt=(0.4212,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8789,2.6714,-3.8797) mvmt=(0.4212,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.3561,2.6714,-3.8797) mvmt=(0.4212,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8769,-0.9611,0.4653) mvmt=(0.4212,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5279,2.0850) mvmt=(0.0000,0.4212,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.2879,1.9800) mvmt=(0.0000,0.4212,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-0.9234,0.6300) mvmt=(0.0000,0.4212,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.6081,3.2589,1.9853) mvmt=(0.4212,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9269,3.2589,3.4853) mvmt=(0.4212,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.2096,3.2603) mvmt=(0.0000,-0.0494,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.290,97.280) lpos=(2.506,3.210,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2096,3.2603) mvmt=(0.0000,-0.0494,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2096,3.2603) mvmt=(0.0000,-0.0494,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2096,3.2603) mvmt=(0.0000,-0.0494,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.2096,3.2603) out=(2.5056,3.2096,3.4800) delta=(0.0000,0.0000,0.2197) deltaMag=0.2197 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.6338 dpPos=0.2603 dpMove=-0.6000 iDist=0.3662 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.290,97.280) lpos=(2.506,3.210,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2096,3.4800) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.290,97.500) lpos=(2.506,3.210,3.480) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2096,3.4800) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2096,-1.0050) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6221,-3.8650) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6221,-3.8650) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-0.5843,1.1066,2.0997) mvmt=(0.0494,0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3907,0.8666,1.9947) mvmt=(0.0494,-0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3907,-1.3446,0.6447) mvmt=(0.0494,-0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2096,2.0000) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2096,3.5000) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2096,3.4800) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.290,97.500) lpos=(2.506,3.210,3.480) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2096,3.4800) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2096,-1.0050) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6221,-3.8650) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6221,-3.8650) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-0.5843,1.1066,2.0997) mvmt=(0.0494,0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3907,0.8666,1.9947) mvmt=(0.0494,-0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3907,-1.3446,0.6447) mvmt=(0.0494,-0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2096,2.0000) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2096,3.5000) mvmt=(0.0000,-0.0494,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9473,3.2589,3.2603) mvmt=(0.4417,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.553,8.241,97.280) lpos=(2.947,3.259,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9473,3.2589,3.2603) mvmt=(0.4417,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9473,3.2589,3.2603) mvmt=(0.4417,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5877,3.2589,-1.2247) mvmt=(0.4417,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9773,-0.0183,0.2653) mvmt=(0.4417,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8993,2.6714,-4.0847) mvmt=(0.4417,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3357,2.6714,-4.0847) mvmt=(0.4417,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8973,-0.9611,0.2603) mvmt=(0.4417,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5483,1.8800) mvmt=(0.0000,0.4417,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.3083,1.7750) mvmt=(0.0000,0.4417,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9473,3.2589,3.2603) mvmt=(0.4417,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.553,8.241,97.280) lpos=(2.947,3.259,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9473,3.2589,3.2603) mvmt=(0.4417,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9473,3.2589,3.2603) mvmt=(0.4417,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5877,3.2589,-1.2247) mvmt=(0.4417,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9773,-0.0183,0.2653) mvmt=(0.4417,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8993,2.6714,-4.0847) mvmt=(0.4417,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3357,2.6714,-4.0847) mvmt=(0.4417,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8973,-0.9611,0.2603) mvmt=(0.4417,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5483,1.8800) mvmt=(0.0000,0.4417,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.3083,1.7750) mvmt=(0.0000,0.4417,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,1.3083,1.7750) out=(0.3413,1.3083,1.9800) delta=(0.0000,0.0000,0.2050) deltaMag=0.2050 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.6583 dpPos=0.2750 dpMove=-0.6000 iDist=0.3417 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9473,3.2589,3.4653) mvmt=(0.4417,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.553,8.241,97.485) lpos=(2.947,3.259,3.465) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9473,3.2589,3.4653) mvmt=(0.4417,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5877,3.2589,-1.0197) mvmt=(0.4417,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(4.9773,-0.0183,0.4703) mvmt=(0.4417,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8993,2.6714,-3.8797) mvmt=(0.4417,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.3357,2.6714,-3.8797) mvmt=(0.4417,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8973,-0.9611,0.4653) mvmt=(0.4417,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5483,2.0850) mvmt=(0.0000,0.4417,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.3083,1.9800) mvmt=(0.0000,0.4417,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-0.9029,0.6300) mvmt=(0.0000,0.4417,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.5877,3.2589,1.9853) mvmt=(0.4417,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9473,3.2589,3.4853) mvmt=(0.4417,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9473,3.2589,3.4653) mvmt=(0.4417,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.553,8.241,97.485) lpos=(2.947,3.259,3.465) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9473,3.2589,3.4653) mvmt=(0.4417,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5877,3.2589,-1.0197) mvmt=(0.4417,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(4.9773,-0.0183,0.4703) mvmt=(0.4417,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8993,2.6714,-3.8797) mvmt=(0.4417,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.3357,2.6714,-3.8797) mvmt=(0.4417,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8973,-0.9611,0.4653) mvmt=(0.4417,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5483,2.0850) mvmt=(0.0000,0.4417,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.3083,1.9800) mvmt=(0.0000,0.4417,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-0.9029,0.6300) mvmt=(0.0000,0.4417,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.5877,3.2589,1.9853) mvmt=(0.4417,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9473,3.2589,3.4853) mvmt=(0.4417,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[input] MovementJump Press +[push-back-disp] site=dispatch center=(2.5056,3.2091,3.2603) mvmt=(0.0000,-0.0498,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.291,97.280) lpos=(2.506,3.209,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2091,3.2603) mvmt=(0.0000,-0.0498,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2091,3.2603) mvmt=(0.0000,-0.0498,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2091,3.2603) mvmt=(0.0000,-0.0498,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.2091,3.2603) out=(2.5056,3.2091,3.4800) delta=(0.0000,0.0000,0.2197) deltaMag=0.2197 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.6338 dpPos=0.2603 dpMove=-0.6000 iDist=0.3662 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.291,97.280) lpos=(2.506,3.209,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2091,3.4800) mvmt=(0.0000,-0.0498,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.291,97.500) lpos=(2.506,3.209,3.480) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2091,3.4800) mvmt=(0.0000,-0.0498,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2091,-1.0050) mvmt=(0.0000,-0.0498,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6216,-3.8650) mvmt=(0.0000,-0.0498,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6216,-3.8650) mvmt=(0.0000,-0.0498,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-0.5839,1.1066,2.0997) mvmt=(0.0498,0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3911,0.8666,1.9947) mvmt=(0.0498,-0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3911,-1.3446,0.6447) mvmt=(0.0498,-0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2091,2.0000) mvmt=(0.0000,-0.0498,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2091,3.5000) mvmt=(0.0000,-0.0498,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2091,3.4800) mvmt=(0.0000,-0.0498,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.291,97.500) lpos=(2.506,3.209,3.480) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2091,3.4800) mvmt=(0.0000,-0.0498,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2091,-1.0050) mvmt=(0.0000,-0.0498,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6216,-3.8650) mvmt=(0.0000,-0.0498,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6216,-3.8650) mvmt=(0.0000,-0.0498,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-0.5839,1.1066,2.0997) mvmt=(0.0498,0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3911,0.8666,1.9947) mvmt=(0.0498,-0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3911,-1.3446,0.6447) mvmt=(0.0498,-0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2091,2.0000) mvmt=(0.0000,-0.0498,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2091,3.5000) mvmt=(0.0000,-0.0498,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9094,3.2589,3.2603) mvmt=(0.4038,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.591,8.241,97.280) lpos=(2.909,3.259,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9094,3.2589,3.2603) mvmt=(0.4038,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9094,3.2589,3.2603) mvmt=(0.4038,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6256,3.2589,-1.2247) mvmt=(0.4038,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9394,-0.0183,0.2653) mvmt=(0.4038,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8614,2.6714,-4.0847) mvmt=(0.4038,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3736,2.6714,-4.0847) mvmt=(0.4038,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8594,-0.9611,0.2603) mvmt=(0.4038,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5104,1.8800) mvmt=(0.0000,0.4038,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.2704,1.7750) mvmt=(0.0000,0.4038,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9094,3.2589,3.2603) mvmt=(0.4038,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.591,8.241,97.280) lpos=(2.909,3.259,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9094,3.2589,3.2603) mvmt=(0.4038,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9094,3.2589,3.2603) mvmt=(0.4038,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6256,3.2589,-1.2247) mvmt=(0.4038,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9394,-0.0183,0.2653) mvmt=(0.4038,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8614,2.6714,-4.0847) mvmt=(0.4038,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3736,2.6714,-4.0847) mvmt=(0.4038,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8594,-0.9611,0.2603) mvmt=(0.4038,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5104,1.8800) mvmt=(0.0000,0.4038,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.2704,1.7750) mvmt=(0.0000,0.4038,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,1.2704,1.7750) out=(0.3413,1.2704,1.9800) delta=(0.0000,0.0000,0.2050) deltaMag=0.2050 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.6583 dpPos=0.2750 dpMove=-0.6000 iDist=0.3417 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9094,3.2589,3.4653) mvmt=(0.4038,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.591,8.241,97.485) lpos=(2.909,3.259,3.465) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9094,3.2589,3.4653) mvmt=(0.4038,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6256,3.2589,-1.0197) mvmt=(0.4038,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(4.9394,-0.0183,0.4703) mvmt=(0.4038,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8614,2.6714,-3.8797) mvmt=(0.4038,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.3736,2.6714,-3.8797) mvmt=(0.4038,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8594,-0.9611,0.4653) mvmt=(0.4038,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5104,2.0850) mvmt=(0.0000,0.4038,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.2704,1.9800) mvmt=(0.0000,0.4038,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-0.9409,0.6300) mvmt=(0.0000,0.4038,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.6256,3.2589,1.9853) mvmt=(0.4038,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9094,3.2589,3.4853) mvmt=(0.4038,0.0000,0.2050) collide=False insertType=0 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9094,3.2589,3.4653) mvmt=(0.4038,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.591,8.241,97.485) lpos=(2.909,3.259,3.465) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9094,3.2589,3.4653) mvmt=(0.4038,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6256,3.2589,-1.0197) mvmt=(0.4038,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(4.9394,-0.0183,0.4703) mvmt=(0.4038,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8614,2.6714,-3.8797) mvmt=(0.4038,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.3736,2.6714,-3.8797) mvmt=(0.4038,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(3.8594,-0.9611,0.4653) mvmt=(0.4038,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5104,2.0850) mvmt=(0.0000,0.4038,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.2704,1.9800) mvmt=(0.0000,0.4038,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-0.9409,0.6300) mvmt=(0.0000,0.4038,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(-2.6256,3.2589,1.9853) mvmt=(0.4038,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[push-back-disp] site=dispatch center=(2.9094,3.2589,3.4853) mvmt=(0.4038,0.0000,0.2050) collide=False insertType=1 objState=0x303 winterp=0.6583 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.5056,3.2084,3.2603) mvmt=(0.0000,-0.0505,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.292,97.280) lpos=(2.506,3.208,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2084,3.2603) mvmt=(0.0000,-0.0505,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2084,3.2603) mvmt=(0.0000,-0.0505,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2084,3.2603) mvmt=(0.0000,-0.0505,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5056,3.2084,3.2603) out=(2.5056,3.2084,3.4800) delta=(0.0000,0.0000,0.2197) deltaMag=0.2197 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.6338 dpPos=0.2603 dpMove=-0.6000 iDist=0.3662 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.292,97.280) lpos=(2.506,3.208,3.260) lprev=(2.506,3.259,3.260) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2084,3.4800) mvmt=(0.0000,-0.0505,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.292,97.500) lpos=(2.506,3.208,3.480) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2084,3.4800) mvmt=(0.0000,-0.0505,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2084,-1.0050) mvmt=(0.0000,-0.0505,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6209,-3.8650) mvmt=(0.0000,-0.0505,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6209,-3.8650) mvmt=(0.0000,-0.0505,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-0.5831,1.1066,2.0997) mvmt=(0.0505,0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3919,0.8666,1.9947) mvmt=(0.0505,-0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3919,-1.3446,0.6447) mvmt=(0.0505,-0.0000,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2084,2.0000) mvmt=(0.0000,-0.0505,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2084,3.5000) mvmt=(0.0000,-0.0505,0.2197) collide=False insertType=0 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2084,3.4800) mvmt=(0.0000,-0.0505,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.292,97.500) lpos=(2.506,3.208,3.480) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2084,3.4800) mvmt=(0.0000,-0.0505,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2084,-1.0050) mvmt=(0.0000,-0.0505,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6209,-3.8650) mvmt=(0.0000,-0.0505,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6209,-3.8650) mvmt=(0.0000,-0.0505,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-0.5831,1.1066,2.0997) mvmt=(0.0505,0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3919,0.8666,1.9947) mvmt=(0.0505,-0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(0.3919,-1.3446,0.6447) mvmt=(0.0505,-0.0000,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2084,2.0000) mvmt=(0.0000,-0.0505,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2084,3.5000) mvmt=(0.0000,-0.0505,0.2197) collide=False insertType=1 objState=0x303 winterp=0.6338 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:453 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=Collided +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=2 halted=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2804 +[push-back-disp] site=dispatch center=(2.9147,3.2589,3.4319) mvmt=(0.4091,0.0000,0.1716) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.585,8.241,97.452) lpos=(2.915,3.259,3.432) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9147,3.2589,3.4319) mvmt=(0.4091,0.0000,0.1716) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6203,3.2589,-1.0531) mvmt=(0.4091,0.0000,0.1716) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9447,-0.0183,0.4369) mvmt=(0.4091,0.0000,0.1716) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8667,2.6714,-3.9131) mvmt=(0.4091,0.0000,0.1716) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3683,2.6714,-3.9131) mvmt=(0.4091,0.0000,0.1716) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8647,-0.9611,0.4319) mvmt=(0.4091,0.0000,0.1716) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5157,2.0516) mvmt=(0.0000,0.4091,0.1716) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.2757,1.9466) mvmt=(0.0000,0.4091,0.1716) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9147,3.2589,3.4319) mvmt=(0.4091,0.0000,0.1716) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.585,8.241,97.452) lpos=(2.915,3.259,3.432) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9147,3.2589,3.4319) mvmt=(0.4091,0.0000,0.1716) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6203,3.2589,-1.0531) mvmt=(0.4091,0.0000,0.1716) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9447,-0.0183,0.4369) mvmt=(0.4091,0.0000,0.1716) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8667,2.6714,-3.9131) mvmt=(0.4091,0.0000,0.1716) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3683,2.6714,-3.9131) mvmt=(0.4091,0.0000,0.1716) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8647,-0.9611,0.4319) mvmt=(0.4091,0.0000,0.1716) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.5157,2.0516) mvmt=(0.0000,0.4091,0.1716) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,1.2757,1.9466) mvmt=(0.0000,0.4091,0.1716) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,1.2757,1.9466) out=(0.3413,1.2757,1.9466) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->1.0000 dpPos=0.4466 dpMove=0.1716 iDist=-5.4005 applied=False +[push-back] site=adjust_sphere in=(0.3413,1.2757,1.9466) out=(0.3413,0.9366,1.8044) delta=(-0.0000,-0.3391,-0.1422) deltaMag=0.3677 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.1711 dpPos=0.3350 dpMove=-0.1749 iDist=0.8289 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5756,3.2589,3.2897) mvmt=(0.0700,0.0000,0.0294) collide=True insertType=0 objState=0x300 winterp=0.1711 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.924,8.241,97.310) lpos=(2.576,3.259,3.290) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5756,3.2589,3.2897) mvmt=(0.0700,0.0000,0.0294) collide=True insertType=0 objState=0x300 winterp=0.1711 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5756,3.2589,3.2897) mvmt=(0.0700,0.0000,0.0294) collide=True insertType=0 objState=0x300 winterp=0.1711 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.9594,3.2589,-1.1953) mvmt=(0.0700,0.0000,0.0294) collide=True insertType=0 objState=0x300 winterp=0.1711 return=-1 +[push-back-disp] site=dispatch center=(3.5276,2.6714,-4.0553) mvmt=(0.0700,0.0000,0.0294) collide=True insertType=0 objState=0x300 winterp=0.1711 return=-1 +[push-back-disp] site=dispatch center=(-2.7074,2.6714,-4.0553) mvmt=(0.0700,0.0000,0.0294) collide=True insertType=0 objState=0x300 winterp=0.1711 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1766,1.9094) mvmt=(0.0000,0.0700,0.0294) collide=True insertType=0 objState=0x300 winterp=0.1711 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.9366,1.8044) mvmt=(0.0000,0.0700,0.0294) collide=True insertType=0 objState=0x300 winterp=0.1711 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.2746,0.4544) mvmt=(0.0000,0.0700,0.0294) collide=True insertType=0 objState=0x300 winterp=0.1711 return=-1 +[push-back-disp] site=dispatch center=(-2.9594,3.2589,1.8097) mvmt=(0.0700,0.0000,0.0294) collide=True insertType=0 objState=0x300 winterp=0.1711 return=-1 +[push-back-disp] site=dispatch center=(2.5756,3.2589,3.3097) mvmt=(0.0700,0.0000,0.0294) collide=True insertType=0 objState=0x300 winterp=0.1711 return=-1 +[push-back-disp] site=dispatch center=(2.5756,3.2589,3.2897) mvmt=(0.0700,0.0000,0.0294) collide=False insertType=1 objState=0x300 winterp=0.1711 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.924,8.241,97.310) lpos=(2.576,3.259,3.290) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5756,3.2589,3.2897) mvmt=(0.0700,0.0000,0.0294) collide=False insertType=1 objState=0x300 winterp=0.1711 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5756,3.2589,3.2897) mvmt=(0.0700,0.0000,0.0294) collide=False insertType=1 objState=0x300 winterp=0.1711 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.9594,3.2589,-1.1953) mvmt=(0.0700,0.0000,0.0294) collide=False insertType=1 objState=0x300 winterp=0.1711 return=-1 +[push-back-disp] site=dispatch center=(3.5276,2.6714,-4.0553) mvmt=(0.0700,0.0000,0.0294) collide=False insertType=1 objState=0x300 winterp=0.1711 return=-1 +[push-back-disp] site=dispatch center=(-2.7074,2.6714,-4.0553) mvmt=(0.0700,0.0000,0.0294) collide=False insertType=1 objState=0x300 winterp=0.1711 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1766,1.9094) mvmt=(0.0000,0.0700,0.0294) collide=False insertType=1 objState=0x300 winterp=0.1711 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.9366,1.8044) mvmt=(0.0000,0.0700,0.0294) collide=False insertType=1 objState=0x300 winterp=0.1711 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.2746,0.4544) mvmt=(0.0000,0.0700,0.0294) collide=False insertType=1 objState=0x300 winterp=0.1711 return=-1 +[push-back-disp] site=dispatch center=(-2.9594,3.2589,1.8097) mvmt=(0.0700,0.0000,0.0294) collide=False insertType=1 objState=0x300 winterp=0.1711 return=-1 +[push-back-disp] site=dispatch center=(2.5756,3.2589,3.3097) mvmt=(0.0700,0.0000,0.0294) collide=False insertType=1 objState=0x300 winterp=0.1711 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2436) mvmt=(0.0000,0.0000,-0.0167) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.264) lpos=(2.506,3.259,3.244) lprev=(2.506,3.259,3.260) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2436) mvmt=(0.0000,0.0000,-0.0167) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2436) mvmt=(0.0000,0.0000,-0.0167) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2414) mvmt=(0.0000,0.0000,-0.0167) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1014) mvmt=(0.0000,0.0000,-0.0167) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1014) mvmt=(0.0000,0.0000,-0.0167) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8633) mvmt=(0.0000,0.0000,-0.0167) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7583) mvmt=(0.0000,0.0000,-0.0167) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.4083) mvmt=(0.0000,0.0000,-0.0167) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7636) mvmt=(0.0000,0.0000,-0.0167) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2636) mvmt=(0.0000,0.0000,-0.0167) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2129) mvmt=(0.0000,0.0000,-0.0307) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.233) lpos=(2.506,3.259,3.213) lprev=(2.506,3.259,3.244) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2129) mvmt=(0.0000,0.0000,-0.0307) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2129) mvmt=(0.0000,0.0000,-0.0307) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2721) mvmt=(0.0000,0.0000,-0.0307) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1321) mvmt=(0.0000,0.0000,-0.0307) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1321) mvmt=(0.0000,0.0000,-0.0307) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8325) mvmt=(0.0000,0.0000,-0.0307) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7276) mvmt=(0.0000,0.0000,-0.0307) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2129) mvmt=(0.0000,0.0000,-0.0307) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.233) lpos=(2.506,3.259,3.213) lprev=(2.506,3.259,3.244) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2129) mvmt=(0.0000,0.0000,-0.0307) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2129) mvmt=(0.0000,0.0000,-0.0307) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2721) mvmt=(0.0000,0.0000,-0.0307) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1321) mvmt=(0.0000,0.0000,-0.0307) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1321) mvmt=(0.0000,0.0000,-0.0307) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8325) mvmt=(0.0000,0.0000,-0.0307) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7276) mvmt=(0.0000,0.0000,-0.0307) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7276) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0044) deltaMag=0.0044 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.8571 dpPos=0.4769 dpMove=-0.0213 iDist=0.1429 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0263) collide=True insertType=0 objState=0x300 winterp=0.8571 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.244) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0263) collide=True insertType=0 objState=0x300 winterp=0.8571 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0263) collide=True insertType=0 objState=0x300 winterp=0.8571 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0263) collide=True insertType=0 objState=0x300 winterp=0.8571 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0263) collide=True insertType=0 objState=0x300 winterp=0.8571 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0263) collide=True insertType=0 objState=0x300 winterp=0.8571 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0263) collide=True insertType=0 objState=0x300 winterp=0.8571 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0263) collide=True insertType=0 objState=0x300 winterp=0.8571 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0263) collide=True insertType=0 objState=0x300 winterp=0.8571 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0263) collide=True insertType=0 objState=0x300 winterp=0.8571 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0263) collide=True insertType=0 objState=0x300 winterp=0.8571 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0263) collide=False insertType=1 objState=0x300 winterp=0.8571 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.244) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0263) collide=False insertType=1 objState=0x300 winterp=0.8571 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0263) collide=False insertType=1 objState=0x300 winterp=0.8571 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0263) collide=False insertType=1 objState=0x300 winterp=0.8571 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0263) collide=False insertType=1 objState=0x300 winterp=0.8571 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0263) collide=False insertType=1 objState=0x300 winterp=0.8571 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0263) collide=False insertType=1 objState=0x300 winterp=0.8571 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0263) collide=False insertType=1 objState=0x300 winterp=0.8571 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0263) collide=False insertType=1 objState=0x300 winterp=0.8571 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0263) collide=False insertType=1 objState=0x300 winterp=0.8571 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0263) collide=False insertType=1 objState=0x300 winterp=0.8571 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2242) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.244) lpos=(2.506,3.259,3.224) lprev=(2.506,3.259,3.244) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2242) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2242) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2608) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1208) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1208) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8439) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7389) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3889) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7442) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2442) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.1924) mvmt=(0.0000,0.0000,-0.0319) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.212) lpos=(2.506,3.259,3.192) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.1924) mvmt=(0.0000,0.0000,-0.0319) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.1924) mvmt=(0.0000,0.0000,-0.0319) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2926) mvmt=(0.0000,0.0000,-0.0319) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1526) mvmt=(0.0000,0.0000,-0.0319) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1526) mvmt=(0.0000,0.0000,-0.0319) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8121) mvmt=(0.0000,0.0000,-0.0319) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7071) mvmt=(0.0000,0.0000,-0.0319) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.1924) mvmt=(0.0000,0.0000,-0.0319) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.212) lpos=(2.506,3.259,3.192) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.1924) mvmt=(0.0000,0.0000,-0.0319) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.1924) mvmt=(0.0000,0.0000,-0.0319) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2926) mvmt=(0.0000,0.0000,-0.0319) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1526) mvmt=(0.0000,0.0000,-0.0319) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1526) mvmt=(0.0000,0.0000,-0.0319) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8121) mvmt=(0.0000,0.0000,-0.0319) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7071) mvmt=(0.0000,0.0000,-0.0319) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7071) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0249) deltaMag=0.0249 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.2196 dpPos=0.4627 dpMove=-0.0222 iDist=0.7804 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2196 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2196 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2196 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2196 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2196 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2196 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2196 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2196 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2196 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2196 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2196 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2196 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2196 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2196 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2196 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2196 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2196 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2196 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2196 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2196 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2196 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2196 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2041) mvmt=(0.0000,0.0000,-0.0201) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.224) lpos=(2.506,3.259,3.204) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2041) mvmt=(0.0000,0.0000,-0.0201) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2041) mvmt=(0.0000,0.0000,-0.0201) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2809) mvmt=(0.0000,0.0000,-0.0201) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1409) mvmt=(0.0000,0.0000,-0.0201) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1409) mvmt=(0.0000,0.0000,-0.0201) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8238) mvmt=(0.0000,0.0000,-0.0201) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7188) mvmt=(0.0000,0.0000,-0.0201) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2041) mvmt=(0.0000,0.0000,-0.0201) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.224) lpos=(2.506,3.259,3.204) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2041) mvmt=(0.0000,0.0000,-0.0201) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2041) mvmt=(0.0000,0.0000,-0.0201) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2809) mvmt=(0.0000,0.0000,-0.0201) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1409) mvmt=(0.0000,0.0000,-0.0201) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1409) mvmt=(0.0000,0.0000,-0.0201) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8238) mvmt=(0.0000,0.0000,-0.0201) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7188) mvmt=(0.0000,0.0000,-0.0201) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7188) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0131) deltaMag=0.0131 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3477 dpPos=0.4709 dpMove=-0.0140 iDist=0.6523 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3477 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3477 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3477 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3477 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3477 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3477 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3477 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2791) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8256) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7206) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2791) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8256) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7206) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7206) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0113) deltaMag=0.0113 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3817 dpPos=0.4721 dpMove=-0.0127 iDist=0.6183 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3817 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3817 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3817 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3817 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3817 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3817 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3817 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3817 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3817 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3817 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3817 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3817 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3817 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3817 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3817 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3817 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3817 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3817 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3817 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3817 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3817 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3817 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2796) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8251) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7201) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2796) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8251) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7201) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7201) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0119) deltaMag=0.0119 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3712 dpPos=0.4718 dpMove=-0.0131 iDist=0.6288 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3712 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3712 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3712 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3712 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3712 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3712 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3712 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3712 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3712 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3712 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3712 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3712 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3712 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3712 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3712 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3712 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3712 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3712 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3712 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3712 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3712 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3712 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2798) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8249) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7199) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2798) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8249) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7199) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7199) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0120) deltaMag=0.0120 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3684 dpPos=0.4717 dpMove=-0.0132 iDist=0.6316 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3684 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3684 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3684 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3684 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3684 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3684 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3684 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3684 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3684 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3684 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3684 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3684 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3684 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3684 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3684 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3684 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3684 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3684 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3684 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3684 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3684 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3684 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2790) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8257) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7207) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2790) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8257) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7207) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7207) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0112) deltaMag=0.0112 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3841 dpPos=0.4722 dpMove=-0.0127 iDist=0.6159 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3841 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3841 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3841 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3841 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3841 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3841 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3841 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3841 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3841 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3841 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3841 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3841 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3841 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3841 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3841 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3841 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3841 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3841 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3841 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3841 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3841 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3841 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2796) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8251) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7201) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2796) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8251) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7201) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7201) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0119) deltaMag=0.0119 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3709 dpPos=0.4717 dpMove=-0.0131 iDist=0.6291 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3709 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3709 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3709 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3709 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3709 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3709 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3709 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3709 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3709 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3709 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3709 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3709 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3709 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3709 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3709 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3709 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3709 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3709 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3709 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3709 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3709 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3709 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2799) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1399) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1399) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8248) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7198) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2799) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1399) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1399) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8248) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7198) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7198) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0121) deltaMag=0.0121 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3656 dpPos=0.4716 dpMove=-0.0133 iDist=0.6344 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3656 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3656 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3656 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3656 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3656 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3656 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3656 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3656 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3656 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3656 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3656 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3656 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3656 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3656 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3656 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3656 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3656 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3656 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3656 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3656 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3656 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3656 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2042) mvmt=(0.0000,0.0000,-0.0200) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.224) lpos=(2.506,3.259,3.204) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2042) mvmt=(0.0000,0.0000,-0.0200) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2042) mvmt=(0.0000,0.0000,-0.0200) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2808) mvmt=(0.0000,0.0000,-0.0200) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1408) mvmt=(0.0000,0.0000,-0.0200) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1408) mvmt=(0.0000,0.0000,-0.0200) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8239) mvmt=(0.0000,0.0000,-0.0200) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7189) mvmt=(0.0000,0.0000,-0.0200) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2042) mvmt=(0.0000,0.0000,-0.0200) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.224) lpos=(2.506,3.259,3.204) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2042) mvmt=(0.0000,0.0000,-0.0200) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2042) mvmt=(0.0000,0.0000,-0.0200) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2808) mvmt=(0.0000,0.0000,-0.0200) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1408) mvmt=(0.0000,0.0000,-0.0200) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1408) mvmt=(0.0000,0.0000,-0.0200) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8239) mvmt=(0.0000,0.0000,-0.0200) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7189) mvmt=(0.0000,0.0000,-0.0200) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7189) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0130) deltaMag=0.0130 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3499 dpPos=0.4710 dpMove=-0.0139 iDist=0.6501 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3499 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3499 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3499 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3499 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3499 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3499 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3499 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3499 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3499 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3499 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3499 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3499 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3499 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3499 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3499 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3499 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3499 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3499 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3499 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3499 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3499 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3499 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2793) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8254) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7204) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2793) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8254) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7204) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7204) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0116) deltaMag=0.0116 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3773 dpPos=0.4720 dpMove=-0.0129 iDist=0.6227 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3773 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3773 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3773 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3773 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3773 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3773 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3773 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3773 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3773 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3773 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3773 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3773 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3773 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3773 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3773 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3773 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3773 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3773 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3773 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3773 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3773 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3773 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0192) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0192) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0192) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2800) mvmt=(0.0000,0.0000,-0.0192) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1400) mvmt=(0.0000,0.0000,-0.0192) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1400) mvmt=(0.0000,0.0000,-0.0192) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8247) mvmt=(0.0000,0.0000,-0.0192) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7197) mvmt=(0.0000,0.0000,-0.0192) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0192) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0192) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0192) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2800) mvmt=(0.0000,0.0000,-0.0192) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1400) mvmt=(0.0000,0.0000,-0.0192) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1400) mvmt=(0.0000,0.0000,-0.0192) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8247) mvmt=(0.0000,0.0000,-0.0192) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7197) mvmt=(0.0000,0.0000,-0.0192) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7197) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0122) deltaMag=0.0122 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3646 dpPos=0.4715 dpMove=-0.0133 iDist=0.6354 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3646 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3646 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3646 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3646 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3646 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3646 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3646 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3646 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3646 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3646 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3646 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3646 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3646 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3646 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3646 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3646 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3646 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3646 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3646 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3646 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3646 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3646 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2045) mvmt=(0.0000,0.0000,-0.0197) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2045) mvmt=(0.0000,0.0000,-0.0197) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2045) mvmt=(0.0000,0.0000,-0.0197) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2805) mvmt=(0.0000,0.0000,-0.0197) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1405) mvmt=(0.0000,0.0000,-0.0197) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1405) mvmt=(0.0000,0.0000,-0.0197) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8242) mvmt=(0.0000,0.0000,-0.0197) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7192) mvmt=(0.0000,0.0000,-0.0197) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2045) mvmt=(0.0000,0.0000,-0.0197) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2045) mvmt=(0.0000,0.0000,-0.0197) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2045) mvmt=(0.0000,0.0000,-0.0197) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2805) mvmt=(0.0000,0.0000,-0.0197) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1405) mvmt=(0.0000,0.0000,-0.0197) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1405) mvmt=(0.0000,0.0000,-0.0197) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8242) mvmt=(0.0000,0.0000,-0.0197) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7192) mvmt=(0.0000,0.0000,-0.0197) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7192) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0127) deltaMag=0.0127 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3549 dpPos=0.4712 dpMove=-0.0137 iDist=0.6451 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3549 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3549 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3549 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3549 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3549 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3549 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3549 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3549 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3549 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3549 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3549 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3549 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3549 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3549 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3549 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3549 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3549 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3549 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3549 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3549 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3549 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3549 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2799) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1399) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1399) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8248) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7198) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2799) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1399) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1399) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8248) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7198) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7198) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0121) deltaMag=0.0121 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3665 dpPos=0.4716 dpMove=-0.0133 iDist=0.6335 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3665 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3665 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3665 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3665 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3665 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3665 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3665 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3665 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3665 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3665 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3665 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3665 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3665 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3665 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3665 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3665 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3665 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3665 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3665 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3665 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3665 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3665 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2797) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8250) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7200) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2797) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8250) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7200) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7200) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0120) deltaMag=0.0120 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3693 dpPos=0.4717 dpMove=-0.0132 iDist=0.6307 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3693 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3693 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3693 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3693 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3693 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3693 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3693 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3693 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3693 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3693 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3693 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3693 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3693 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3693 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3693 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3693 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3693 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3693 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3693 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3693 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3693 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3693 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2797) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8250) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7200) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2797) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8250) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7200) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7200) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0120) deltaMag=0.0120 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3691 dpPos=0.4717 dpMove=-0.0132 iDist=0.6309 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3691 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3691 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3691 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3691 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3691 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3691 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3691 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2797) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8250) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7200) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2797) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8250) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7200) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7200) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0120) deltaMag=0.0120 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3688 dpPos=0.4717 dpMove=-0.0132 iDist=0.6312 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3688 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3688 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3688 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3688 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3688 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3688 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3688 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.1995) mvmt=(0.0000,0.0000,-0.0248) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.219) lpos=(2.506,3.259,3.199) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.1995) mvmt=(0.0000,0.0000,-0.0248) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.1995) mvmt=(0.0000,0.0000,-0.0248) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2855) mvmt=(0.0000,0.0000,-0.0248) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1455) mvmt=(0.0000,0.0000,-0.0248) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1455) mvmt=(0.0000,0.0000,-0.0248) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8192) mvmt=(0.0000,0.0000,-0.0248) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7142) mvmt=(0.0000,0.0000,-0.0248) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.1995) mvmt=(0.0000,0.0000,-0.0248) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.219) lpos=(2.506,3.259,3.199) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.1995) mvmt=(0.0000,0.0000,-0.0248) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.1995) mvmt=(0.0000,0.0000,-0.0248) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2855) mvmt=(0.0000,0.0000,-0.0248) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1455) mvmt=(0.0000,0.0000,-0.0248) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1455) mvmt=(0.0000,0.0000,-0.0248) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8192) mvmt=(0.0000,0.0000,-0.0248) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7142) mvmt=(0.0000,0.0000,-0.0248) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7142) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0178) deltaMag=0.0178 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.2828 dpPos=0.4677 dpMove=-0.0172 iDist=0.7172 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2828 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2828 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2828 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2828 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2828 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2828 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2828 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2828 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2828 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2828 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2828 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2828 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2828 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2828 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2828 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2828 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0192) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0192) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0192) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2800) mvmt=(0.0000,0.0000,-0.0192) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1400) mvmt=(0.0000,0.0000,-0.0192) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1400) mvmt=(0.0000,0.0000,-0.0192) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8247) mvmt=(0.0000,0.0000,-0.0192) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7197) mvmt=(0.0000,0.0000,-0.0192) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0192) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0192) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0192) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2800) mvmt=(0.0000,0.0000,-0.0192) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1400) mvmt=(0.0000,0.0000,-0.0192) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1400) mvmt=(0.0000,0.0000,-0.0192) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8247) mvmt=(0.0000,0.0000,-0.0192) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7197) mvmt=(0.0000,0.0000,-0.0192) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7197) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0122) deltaMag=0.0122 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3643 dpPos=0.4715 dpMove=-0.0134 iDist=0.6357 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3643 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3643 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3643 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3643 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3643 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3643 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3643 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3643 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3643 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3643 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3643 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3643 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3643 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3643 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3643 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3643 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3643 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3643 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3643 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3643 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3643 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3643 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2067) mvmt=(0.0000,0.0000,-0.0176) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.227) lpos=(2.506,3.259,3.207) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2067) mvmt=(0.0000,0.0000,-0.0176) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2067) mvmt=(0.0000,0.0000,-0.0176) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2783) mvmt=(0.0000,0.0000,-0.0176) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1383) mvmt=(0.0000,0.0000,-0.0176) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1383) mvmt=(0.0000,0.0000,-0.0176) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8264) mvmt=(0.0000,0.0000,-0.0176) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7214) mvmt=(0.0000,0.0000,-0.0176) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2067) mvmt=(0.0000,0.0000,-0.0176) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.227) lpos=(2.506,3.259,3.207) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2067) mvmt=(0.0000,0.0000,-0.0176) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2067) mvmt=(0.0000,0.0000,-0.0176) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2783) mvmt=(0.0000,0.0000,-0.0176) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1383) mvmt=(0.0000,0.0000,-0.0176) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1383) mvmt=(0.0000,0.0000,-0.0176) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8264) mvmt=(0.0000,0.0000,-0.0176) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7214) mvmt=(0.0000,0.0000,-0.0176) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7214) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0106) deltaMag=0.0106 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3983 dpPos=0.4726 dpMove=-0.0122 iDist=0.6017 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3983 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3983 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3983 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3983 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3983 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3983 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3983 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3983 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3983 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3983 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3983 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3983 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3983 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3983 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3983 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3983 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3983 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3983 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3983 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3983 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3983 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3983 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2796) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8251) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7201) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2796) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8251) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7201) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7201) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0118) deltaMag=0.0118 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3723 dpPos=0.4718 dpMove=-0.0131 iDist=0.6277 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3723 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3723 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3723 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3723 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3723 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3723 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3723 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2800) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1400) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1400) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8247) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7197) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2800) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1400) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1400) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8247) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7197) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7197) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0123) deltaMag=0.0123 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3631 dpPos=0.4715 dpMove=-0.0134 iDist=0.6369 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3631 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3631 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3631 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3631 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3631 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3631 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3631 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3631 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3631 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3631 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3631 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3631 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3631 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3631 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3631 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3631 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3631 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3631 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3631 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3631 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3631 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3631 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2798) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8249) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7199) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2798) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8249) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7199) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7199) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0120) deltaMag=0.0120 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3686 dpPos=0.4717 dpMove=-0.0132 iDist=0.6314 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3686 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3686 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3686 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3686 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3686 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3686 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3686 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3686 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3686 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3686 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3686 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3686 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3686 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3686 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3686 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3686 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3686 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3686 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3686 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3686 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3686 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3686 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2793) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8254) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7204) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2793) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8254) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7204) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7204) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0116) deltaMag=0.0116 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3772 dpPos=0.4720 dpMove=-0.0129 iDist=0.6228 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3772 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3772 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3772 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3772 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3772 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3772 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3772 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2791) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8256) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7206) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2791) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8256) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7206) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7206) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0113) deltaMag=0.0113 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3825 dpPos=0.4721 dpMove=-0.0127 iDist=0.6175 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3825 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3825 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3825 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3825 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3825 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3825 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3825 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3825 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3825 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3825 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3825 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3825 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3825 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3825 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3825 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3825 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3825 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3825 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3825 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3825 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3825 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3825 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2793) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8254) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7204) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2793) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8254) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7204) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7204) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0116) deltaMag=0.0116 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3770 dpPos=0.4720 dpMove=-0.0129 iDist=0.6230 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3770 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3770 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3770 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3770 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3770 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3770 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3770 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2800) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1400) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1400) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8247) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7197) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2800) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1400) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1400) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8247) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7197) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7197) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0123) deltaMag=0.0123 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3634 dpPos=0.4715 dpMove=-0.0134 iDist=0.6366 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3634 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3634 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3634 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3634 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3634 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3634 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3634 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3634 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3634 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3634 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3634 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3634 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3634 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3634 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3634 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3634 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3634 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3634 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3634 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3634 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3634 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3634 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2793) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8254) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7204) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2793) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8254) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7204) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7204) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0116) deltaMag=0.0116 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3769 dpPos=0.4720 dpMove=-0.0129 iDist=0.6231 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2798) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8249) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7199) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2798) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8249) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7199) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7199) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0121) deltaMag=0.0121 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3671 dpPos=0.4716 dpMove=-0.0133 iDist=0.6329 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3671 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3671 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3671 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3671 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3671 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3671 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3671 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2792) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8255) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7205) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2792) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8255) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7205) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7205) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0114) deltaMag=0.0114 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3803 dpPos=0.4721 dpMove=-0.0128 iDist=0.6197 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3803 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3803 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3803 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3803 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3803 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3803 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3803 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3803 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3803 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3803 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3803 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3803 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3803 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3803 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3803 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3803 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3803 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3803 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3803 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3803 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3803 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3803 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2790) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8257) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7207) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2790) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8257) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7207) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7207) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0112) deltaMag=0.0112 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3845 dpPos=0.4722 dpMove=-0.0127 iDist=0.6155 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3845 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3845 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3845 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3845 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3845 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3845 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3845 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3845 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3845 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3845 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3845 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3845 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3845 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3845 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3845 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3845 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3845 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3845 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3845 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3845 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3845 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3845 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[input] MovementStrafeLeft Press +[input] MovementBackup Press +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2045) mvmt=(0.0000,0.0000,-0.0198) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.224) lpos=(2.506,3.259,3.204) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2045) mvmt=(0.0000,0.0000,-0.0198) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2045) mvmt=(0.0000,0.0000,-0.0198) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2805) mvmt=(0.0000,0.0000,-0.0198) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1405) mvmt=(0.0000,0.0000,-0.0198) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1405) mvmt=(0.0000,0.0000,-0.0198) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8242) mvmt=(0.0000,0.0000,-0.0198) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7192) mvmt=(0.0000,0.0000,-0.0198) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2045) mvmt=(0.0000,0.0000,-0.0198) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.224) lpos=(2.506,3.259,3.204) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2045) mvmt=(0.0000,0.0000,-0.0198) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2045) mvmt=(0.0000,0.0000,-0.0198) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2805) mvmt=(0.0000,0.0000,-0.0198) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1405) mvmt=(0.0000,0.0000,-0.0198) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1405) mvmt=(0.0000,0.0000,-0.0198) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8242) mvmt=(0.0000,0.0000,-0.0198) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7192) mvmt=(0.0000,0.0000,-0.0198) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7192) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0128) deltaMag=0.0128 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3542 dpPos=0.4711 dpMove=-0.0137 iDist=0.6458 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3542 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3542 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3542 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3542 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3542 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3542 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3542 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3542 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3542 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3542 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3542 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3542 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3542 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3542 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3542 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3542 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3542 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3542 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3542 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3542 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3542 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3542 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2797) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8249) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7200) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2797) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8249) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7200) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7200) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0120) deltaMag=0.0120 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3687 dpPos=0.4717 dpMove=-0.0132 iDist=0.6313 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3687 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3687 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3687 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3687 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3687 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3687 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3687 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3687 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3687 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3687 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3687 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3687 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3687 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3687 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3687 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3687 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3687 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3687 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3687 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3687 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3687 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3687 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2797) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8250) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7200) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2797) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8250) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7200) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7200) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0119) deltaMag=0.0119 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3696 dpPos=0.4717 dpMove=-0.0132 iDist=0.6304 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3696 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3696 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3696 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3696 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3696 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3696 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3696 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3696 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3696 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3696 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3696 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3696 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3696 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3696 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3696 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3696 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3696 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3696 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3696 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3696 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3696 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3696 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2038) mvmt=(0.0000,0.0000,-0.0204) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.224) lpos=(2.506,3.259,3.204) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2038) mvmt=(0.0000,0.0000,-0.0204) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2038) mvmt=(0.0000,0.0000,-0.0204) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2812) mvmt=(0.0000,0.0000,-0.0204) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1412) mvmt=(0.0000,0.0000,-0.0204) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1412) mvmt=(0.0000,0.0000,-0.0204) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8235) mvmt=(0.0000,0.0000,-0.0204) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7185) mvmt=(0.0000,0.0000,-0.0204) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2038) mvmt=(0.0000,0.0000,-0.0204) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.224) lpos=(2.506,3.259,3.204) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2038) mvmt=(0.0000,0.0000,-0.0204) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2038) mvmt=(0.0000,0.0000,-0.0204) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2812) mvmt=(0.0000,0.0000,-0.0204) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1412) mvmt=(0.0000,0.0000,-0.0204) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1412) mvmt=(0.0000,0.0000,-0.0204) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8235) mvmt=(0.0000,0.0000,-0.0204) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7185) mvmt=(0.0000,0.0000,-0.0204) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7185) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0134) deltaMag=0.0134 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3427 dpPos=0.4707 dpMove=-0.0142 iDist=0.6573 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3427 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3427 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3427 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3427 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3427 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3427 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3427 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3427 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3427 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3427 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3427 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3427 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3427 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3427 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3427 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3427 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3427 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3427 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3427 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3427 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3427 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3427 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2044) mvmt=(0.0000,0.0000,-0.0199) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.224) lpos=(2.506,3.259,3.204) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2044) mvmt=(0.0000,0.0000,-0.0199) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2044) mvmt=(0.0000,0.0000,-0.0199) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2806) mvmt=(0.0000,0.0000,-0.0199) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1406) mvmt=(0.0000,0.0000,-0.0199) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1406) mvmt=(0.0000,0.0000,-0.0199) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8241) mvmt=(0.0000,0.0000,-0.0199) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7191) mvmt=(0.0000,0.0000,-0.0199) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2044) mvmt=(0.0000,0.0000,-0.0199) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.224) lpos=(2.506,3.259,3.204) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2044) mvmt=(0.0000,0.0000,-0.0199) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2044) mvmt=(0.0000,0.0000,-0.0199) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2806) mvmt=(0.0000,0.0000,-0.0199) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1406) mvmt=(0.0000,0.0000,-0.0199) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1406) mvmt=(0.0000,0.0000,-0.0199) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8241) mvmt=(0.0000,0.0000,-0.0199) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7191) mvmt=(0.0000,0.0000,-0.0199) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7191) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0129) deltaMag=0.0129 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3526 dpPos=0.4711 dpMove=-0.0138 iDist=0.6474 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3526 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3526 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3526 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3526 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3526 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3526 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3526 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3526 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3526 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3526 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3526 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3526 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3526 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3526 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3526 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3526 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3526 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3526 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3526 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3526 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3526 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3526 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2793) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8254) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7204) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2793) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8254) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7204) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7204) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0115) deltaMag=0.0115 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3780 dpPos=0.4720 dpMove=-0.0129 iDist=0.6220 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3780 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3780 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3780 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3780 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3780 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3780 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3780 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3780 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3780 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3780 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3780 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3780 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3780 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3780 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3780 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3780 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3780 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3780 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3780 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3780 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3780 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3780 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2797) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8250) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7200) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2797) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8250) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7200) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7200) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0119) deltaMag=0.0119 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3699 dpPos=0.4717 dpMove=-0.0132 iDist=0.6301 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3699 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3699 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3699 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3699 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3699 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3699 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3699 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3699 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3699 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3699 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3699 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3699 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3699 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3699 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3699 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3699 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3699 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3699 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3699 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3699 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3699 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3699 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2798) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8249) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7199) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2798) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8249) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7199) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7199) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0120) deltaMag=0.0120 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3678 dpPos=0.4716 dpMove=-0.0132 iDist=0.6322 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3678 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3678 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3678 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3678 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3678 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3678 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3678 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2046) mvmt=(0.0000,0.0000,-0.0197) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2046) mvmt=(0.0000,0.0000,-0.0197) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2046) mvmt=(0.0000,0.0000,-0.0197) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2804) mvmt=(0.0000,0.0000,-0.0197) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1404) mvmt=(0.0000,0.0000,-0.0197) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1404) mvmt=(0.0000,0.0000,-0.0197) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8243) mvmt=(0.0000,0.0000,-0.0197) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7193) mvmt=(0.0000,0.0000,-0.0197) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2046) mvmt=(0.0000,0.0000,-0.0197) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2046) mvmt=(0.0000,0.0000,-0.0197) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2046) mvmt=(0.0000,0.0000,-0.0197) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2804) mvmt=(0.0000,0.0000,-0.0197) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1404) mvmt=(0.0000,0.0000,-0.0197) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1404) mvmt=(0.0000,0.0000,-0.0197) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8243) mvmt=(0.0000,0.0000,-0.0197) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7193) mvmt=(0.0000,0.0000,-0.0197) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7193) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0127) deltaMag=0.0127 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3560 dpPos=0.4712 dpMove=-0.0137 iDist=0.6440 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3560 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3560 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3560 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3560 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3560 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3560 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3560 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0192) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0192) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0192) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2799) mvmt=(0.0000,0.0000,-0.0192) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1399) mvmt=(0.0000,0.0000,-0.0192) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1399) mvmt=(0.0000,0.0000,-0.0192) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8248) mvmt=(0.0000,0.0000,-0.0192) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7198) mvmt=(0.0000,0.0000,-0.0192) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0192) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0192) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0192) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2799) mvmt=(0.0000,0.0000,-0.0192) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1399) mvmt=(0.0000,0.0000,-0.0192) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1399) mvmt=(0.0000,0.0000,-0.0192) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8248) mvmt=(0.0000,0.0000,-0.0192) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7198) mvmt=(0.0000,0.0000,-0.0192) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7198) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0122) deltaMag=0.0122 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3653 dpPos=0.4715 dpMove=-0.0133 iDist=0.6347 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3653 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3653 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3653 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3653 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3653 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3653 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3653 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3653 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3653 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3653 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3653 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3653 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3653 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3653 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3653 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3653 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3653 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3653 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3653 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3653 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3653 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3653 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2794) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1395) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1395) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8252) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7203) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2794) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1395) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1395) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8252) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7203) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7203) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0117) deltaMag=0.0117 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3746 dpPos=0.4719 dpMove=-0.0130 iDist=0.6254 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2788) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8259) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7209) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2788) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8259) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7209) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7209) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0110) deltaMag=0.0110 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3884 dpPos=0.4723 dpMove=-0.0125 iDist=0.6116 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3884 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3884 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3884 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3884 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3884 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3884 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3884 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3884 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3884 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3884 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3884 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3884 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3884 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3884 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3884 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3884 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3884 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3884 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3884 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3884 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3884 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3884 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2790) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8257) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7207) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2790) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8257) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7207) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7207) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0112) deltaMag=0.0112 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3840 dpPos=0.4722 dpMove=-0.0127 iDist=0.6160 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3840 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3840 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3840 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3840 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3840 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3840 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3840 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3840 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3840 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3840 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3840 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3840 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3840 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3840 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3840 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3840 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3840 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3840 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3840 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3840 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3840 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3840 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2048) mvmt=(0.0000,0.0000,-0.0195) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2048) mvmt=(0.0000,0.0000,-0.0195) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2048) mvmt=(0.0000,0.0000,-0.0195) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2802) mvmt=(0.0000,0.0000,-0.0195) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1402) mvmt=(0.0000,0.0000,-0.0195) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1402) mvmt=(0.0000,0.0000,-0.0195) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8245) mvmt=(0.0000,0.0000,-0.0195) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7195) mvmt=(0.0000,0.0000,-0.0195) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2048) mvmt=(0.0000,0.0000,-0.0195) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2048) mvmt=(0.0000,0.0000,-0.0195) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2048) mvmt=(0.0000,0.0000,-0.0195) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2802) mvmt=(0.0000,0.0000,-0.0195) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1402) mvmt=(0.0000,0.0000,-0.0195) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1402) mvmt=(0.0000,0.0000,-0.0195) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8245) mvmt=(0.0000,0.0000,-0.0195) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7195) mvmt=(0.0000,0.0000,-0.0195) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7195) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0125) deltaMag=0.0125 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3593 dpPos=0.4713 dpMove=-0.0135 iDist=0.6407 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3593 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3593 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3593 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3593 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3593 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3593 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3593 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3593 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3593 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3593 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3593 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3593 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3593 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3593 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3593 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3593 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3593 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3593 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3593 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3593 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3593 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3593 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2788) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8259) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7209) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2788) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8259) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7209) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7209) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0110) deltaMag=0.0110 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3879 dpPos=0.4723 dpMove=-0.0125 iDist=0.6121 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2792) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8255) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7205) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2792) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8255) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7205) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7205) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0115) deltaMag=0.0115 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3791 dpPos=0.4720 dpMove=-0.0128 iDist=0.6209 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3791 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3791 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3791 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3791 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3791 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3791 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3791 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3791 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3791 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3791 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3791 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3791 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3791 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3791 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3791 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3791 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3791 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3791 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3791 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3791 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3791 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3791 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2791) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8256) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7206) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2791) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8256) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7206) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7206) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0114) deltaMag=0.0114 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3814 dpPos=0.4721 dpMove=-0.0128 iDist=0.6186 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3814 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3814 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3814 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3814 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3814 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3814 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3814 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0179) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0179) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0179) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2787) mvmt=(0.0000,0.0000,-0.0179) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1387) mvmt=(0.0000,0.0000,-0.0179) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1387) mvmt=(0.0000,0.0000,-0.0179) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8260) mvmt=(0.0000,0.0000,-0.0179) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7210) mvmt=(0.0000,0.0000,-0.0179) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0179) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0179) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0179) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2787) mvmt=(0.0000,0.0000,-0.0179) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1387) mvmt=(0.0000,0.0000,-0.0179) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1387) mvmt=(0.0000,0.0000,-0.0179) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8260) mvmt=(0.0000,0.0000,-0.0179) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7210) mvmt=(0.0000,0.0000,-0.0179) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7210) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0109) deltaMag=0.0109 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3908 dpPos=0.4724 dpMove=-0.0125 iDist=0.6092 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3908 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3908 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3908 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3908 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3908 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3908 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3908 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3908 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3908 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3908 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3908 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3908 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3908 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3908 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3908 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3908 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3908 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3908 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3908 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3908 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3908 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3908 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2788) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8259) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7209) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2788) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8259) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7209) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7209) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0110) deltaMag=0.0110 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3879 dpPos=0.4723 dpMove=-0.0125 iDist=0.6121 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[input] MovementForward Press +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2055) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2055) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2055) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2795) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1395) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1395) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8252) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7202) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2055) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2055) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2055) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2795) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1395) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1395) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8252) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7202) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7202) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0118) deltaMag=0.0118 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3727 dpPos=0.4718 dpMove=-0.0131 iDist=0.6273 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3727 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3727 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3727 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3727 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3727 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3727 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3727 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3727 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3727 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3727 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3727 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3727 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3727 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3727 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3727 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3727 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3727 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3727 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3727 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3727 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3727 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3727 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2796) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8251) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7201) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2796) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8251) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7201) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7201) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0118) deltaMag=0.0118 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3724 dpPos=0.4718 dpMove=-0.0131 iDist=0.6276 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3724 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3724 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3724 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3724 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3724 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3724 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3724 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2794) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1394) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1394) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8253) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7203) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2794) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1394) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1394) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8253) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7203) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7203) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0116) deltaMag=0.0116 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3756 dpPos=0.4719 dpMove=-0.0130 iDist=0.6244 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3756 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3756 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3756 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3756 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3756 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3756 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3756 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3756 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3756 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3756 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3756 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3756 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3756 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3756 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3756 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3756 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3756 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3756 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3756 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3756 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3756 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3756 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2788) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8259) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7209) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2788) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8259) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7209) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7209) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0110) deltaMag=0.0110 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3889 dpPos=0.4724 dpMove=-0.0125 iDist=0.6111 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3889 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3889 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3889 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3889 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3889 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3889 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3889 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3889 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3889 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3889 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3889 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3889 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3889 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3889 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3889 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3889 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3889 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3889 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3889 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3889 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3889 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3889 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2794) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1394) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1394) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8253) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7203) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2794) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1394) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1394) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8253) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7203) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7203) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0117) deltaMag=0.0117 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3747 dpPos=0.4719 dpMove=-0.0130 iDist=0.6253 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3747 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3747 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3747 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3747 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3747 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3747 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3747 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3747 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3747 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3747 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3747 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3747 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3747 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3747 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3747 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3747 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3747 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3747 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3747 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3747 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3747 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3747 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2787) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1387) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1387) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8260) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7210) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2787) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1387) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1387) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8260) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7210) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7210) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0110) deltaMag=0.0110 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3900 dpPos=0.4724 dpMove=-0.0125 iDist=0.6100 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3900 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3900 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3900 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3900 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3900 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3900 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3900 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3900 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3900 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3900 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3900 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3900 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3900 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3900 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3900 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3900 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3900 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3900 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3900 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3900 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3900 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3900 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2061) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2061) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2061) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2789) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1389) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1389) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8258) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7208) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2061) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2061) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2061) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2789) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1389) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1389) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8258) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7208) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7208) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0111) deltaMag=0.0111 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3861 dpPos=0.4723 dpMove=-0.0126 iDist=0.6139 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3861 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3861 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3861 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3861 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3861 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3861 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3861 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3861 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3861 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3861 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3861 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3861 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3861 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3861 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3861 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3861 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3861 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3861 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3861 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3861 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3861 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3861 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2793) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8254) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7204) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2793) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8254) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7204) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7204) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0116) deltaMag=0.0116 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3769 dpPos=0.4720 dpMove=-0.0129 iDist=0.6231 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2800) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1400) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1400) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8247) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7197) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2800) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1400) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1400) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8247) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7197) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7197) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0123) deltaMag=0.0123 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3636 dpPos=0.4715 dpMove=-0.0134 iDist=0.6364 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3636 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3636 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3636 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3636 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3636 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3636 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3636 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3636 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3636 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3636 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3636 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3636 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3636 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3636 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3636 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3636 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3636 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3636 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3636 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3636 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3636 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3636 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2793) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8254) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7204) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2793) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8254) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7204) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7204) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0116) deltaMag=0.0116 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3772 dpPos=0.4720 dpMove=-0.0129 iDist=0.6228 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3772 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3772 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3772 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3772 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3772 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3772 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3772 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3772 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2790) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8257) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7207) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2790) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8257) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7207) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7207) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0113) deltaMag=0.0113 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3828 dpPos=0.4722 dpMove=-0.0127 iDist=0.6172 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3828 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3828 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3828 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3828 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3828 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3828 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3828 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3828 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3828 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3828 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3828 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3828 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3828 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3828 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3828 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3828 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3828 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3828 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2064) mvmt=(0.0000,0.0000,-0.0179) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2064) mvmt=(0.0000,0.0000,-0.0179) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2064) mvmt=(0.0000,0.0000,-0.0179) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2786) mvmt=(0.0000,0.0000,-0.0179) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1386) mvmt=(0.0000,0.0000,-0.0179) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1386) mvmt=(0.0000,0.0000,-0.0179) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8261) mvmt=(0.0000,0.0000,-0.0179) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7211) mvmt=(0.0000,0.0000,-0.0179) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2064) mvmt=(0.0000,0.0000,-0.0179) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2064) mvmt=(0.0000,0.0000,-0.0179) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2064) mvmt=(0.0000,0.0000,-0.0179) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2786) mvmt=(0.0000,0.0000,-0.0179) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1386) mvmt=(0.0000,0.0000,-0.0179) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1386) mvmt=(0.0000,0.0000,-0.0179) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8261) mvmt=(0.0000,0.0000,-0.0179) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7211) mvmt=(0.0000,0.0000,-0.0179) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7211) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0109) deltaMag=0.0109 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3918 dpPos=0.4724 dpMove=-0.0124 iDist=0.6082 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3918 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3918 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3918 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3918 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3918 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3918 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3918 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3918 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3918 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3918 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3918 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3918 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3918 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3918 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3918 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3918 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3918 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3918 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3918 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3918 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3918 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3918 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2046) mvmt=(0.0000,0.0000,-0.0196) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2046) mvmt=(0.0000,0.0000,-0.0196) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2046) mvmt=(0.0000,0.0000,-0.0196) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2804) mvmt=(0.0000,0.0000,-0.0196) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1404) mvmt=(0.0000,0.0000,-0.0196) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1404) mvmt=(0.0000,0.0000,-0.0196) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8243) mvmt=(0.0000,0.0000,-0.0196) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7193) mvmt=(0.0000,0.0000,-0.0196) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2046) mvmt=(0.0000,0.0000,-0.0196) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2046) mvmt=(0.0000,0.0000,-0.0196) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2046) mvmt=(0.0000,0.0000,-0.0196) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2804) mvmt=(0.0000,0.0000,-0.0196) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1404) mvmt=(0.0000,0.0000,-0.0196) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1404) mvmt=(0.0000,0.0000,-0.0196) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8243) mvmt=(0.0000,0.0000,-0.0196) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7193) mvmt=(0.0000,0.0000,-0.0196) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7193) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0126) deltaMag=0.0126 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3564 dpPos=0.4712 dpMove=-0.0137 iDist=0.6436 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3564 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3564 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3564 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3564 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3564 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3564 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3564 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2787) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1387) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1387) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8260) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7210) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2787) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1387) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1387) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8260) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7210) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7210) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0110) deltaMag=0.0110 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3895 dpPos=0.4724 dpMove=-0.0125 iDist=0.6105 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3895 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3895 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3895 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3895 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3895 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3895 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3895 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[input] MovementBackup Press +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2047) mvmt=(0.0000,0.0000,-0.0196) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2047) mvmt=(0.0000,0.0000,-0.0196) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2047) mvmt=(0.0000,0.0000,-0.0196) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2803) mvmt=(0.0000,0.0000,-0.0196) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1403) mvmt=(0.0000,0.0000,-0.0196) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1403) mvmt=(0.0000,0.0000,-0.0196) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8244) mvmt=(0.0000,0.0000,-0.0196) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7194) mvmt=(0.0000,0.0000,-0.0196) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2047) mvmt=(0.0000,0.0000,-0.0196) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2047) mvmt=(0.0000,0.0000,-0.0196) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2047) mvmt=(0.0000,0.0000,-0.0196) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2803) mvmt=(0.0000,0.0000,-0.0196) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1403) mvmt=(0.0000,0.0000,-0.0196) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1403) mvmt=(0.0000,0.0000,-0.0196) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8244) mvmt=(0.0000,0.0000,-0.0196) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7194) mvmt=(0.0000,0.0000,-0.0196) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7194) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0126) deltaMag=0.0126 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3581 dpPos=0.4713 dpMove=-0.0136 iDist=0.6419 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3581 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3581 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3581 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3581 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3581 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3581 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3581 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3581 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3581 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3581 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3581 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3581 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3581 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3581 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3581 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3581 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3581 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3581 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3581 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3581 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3581 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3581 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[input] MovementStrafeLeft Press +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2798) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8249) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7199) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2798) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8249) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7199) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7199) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0120) deltaMag=0.0120 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3678 dpPos=0.4716 dpMove=-0.0132 iDist=0.6322 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3678 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3678 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3678 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3678 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3678 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3678 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3678 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3678 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2788) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8259) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7209) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2788) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8259) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7209) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7209) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0111) deltaMag=0.0111 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3871 dpPos=0.4723 dpMove=-0.0126 iDist=0.6129 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3871 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3871 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3871 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3871 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3871 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3871 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3871 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3871 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3871 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3871 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3871 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3871 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3871 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3871 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3871 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3871 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3871 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3871 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3871 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3871 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3871 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3871 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2793) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8254) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7204) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2793) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8254) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7204) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7204) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0115) deltaMag=0.0115 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3783 dpPos=0.4720 dpMove=-0.0129 iDist=0.6217 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3783 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3783 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3783 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3783 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3783 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3783 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3783 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3783 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3783 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3783 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3783 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3783 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3783 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3783 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3783 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3783 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3783 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3783 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3783 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3783 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3783 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3783 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2787) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1387) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1387) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8260) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7210) mvmt=(0.0000,0.0000,-0.0180) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2787) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1387) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1387) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8260) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7210) mvmt=(0.0000,0.0000,-0.0180) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7210) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0110) deltaMag=0.0110 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3895 dpPos=0.4724 dpMove=-0.0125 iDist=0.6105 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3895 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3895 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3895 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3895 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3895 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3895 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3895 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3895 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2041) mvmt=(0.0000,0.0000,-0.0202) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.224) lpos=(2.506,3.259,3.204) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2041) mvmt=(0.0000,0.0000,-0.0202) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2041) mvmt=(0.0000,0.0000,-0.0202) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2809) mvmt=(0.0000,0.0000,-0.0202) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1409) mvmt=(0.0000,0.0000,-0.0202) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1409) mvmt=(0.0000,0.0000,-0.0202) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8238) mvmt=(0.0000,0.0000,-0.0202) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7188) mvmt=(0.0000,0.0000,-0.0202) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2041) mvmt=(0.0000,0.0000,-0.0202) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.224) lpos=(2.506,3.259,3.204) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2041) mvmt=(0.0000,0.0000,-0.0202) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2041) mvmt=(0.0000,0.0000,-0.0202) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2809) mvmt=(0.0000,0.0000,-0.0202) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1409) mvmt=(0.0000,0.0000,-0.0202) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1409) mvmt=(0.0000,0.0000,-0.0202) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8238) mvmt=(0.0000,0.0000,-0.0202) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7188) mvmt=(0.0000,0.0000,-0.0202) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7188) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0132) deltaMag=0.0132 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3471 dpPos=0.4708 dpMove=-0.0140 iDist=0.6529 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3471 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3471 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3471 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3471 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3471 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3471 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3471 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3471 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3471 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3471 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3471 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3471 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3471 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3471 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3471 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3471 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3471 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3471 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3471 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3471 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3471 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3471 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2044) mvmt=(0.0000,0.0000,-0.0198) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.224) lpos=(2.506,3.259,3.204) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2044) mvmt=(0.0000,0.0000,-0.0198) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2044) mvmt=(0.0000,0.0000,-0.0198) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2806) mvmt=(0.0000,0.0000,-0.0198) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1406) mvmt=(0.0000,0.0000,-0.0198) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1406) mvmt=(0.0000,0.0000,-0.0198) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8241) mvmt=(0.0000,0.0000,-0.0198) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7191) mvmt=(0.0000,0.0000,-0.0198) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2044) mvmt=(0.0000,0.0000,-0.0198) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.224) lpos=(2.506,3.259,3.204) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2044) mvmt=(0.0000,0.0000,-0.0198) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2044) mvmt=(0.0000,0.0000,-0.0198) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2806) mvmt=(0.0000,0.0000,-0.0198) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1406) mvmt=(0.0000,0.0000,-0.0198) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1406) mvmt=(0.0000,0.0000,-0.0198) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8241) mvmt=(0.0000,0.0000,-0.0198) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7191) mvmt=(0.0000,0.0000,-0.0198) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7191) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0128) deltaMag=0.0128 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3536 dpPos=0.4711 dpMove=-0.0138 iDist=0.6464 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3536 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3536 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3536 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3536 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3536 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3536 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3536 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3536 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3536 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3536 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3536 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3536 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3536 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3536 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3536 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3536 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3536 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3536 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3536 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3536 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3536 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3536 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2046) mvmt=(0.0000,0.0000,-0.0196) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2046) mvmt=(0.0000,0.0000,-0.0196) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2046) mvmt=(0.0000,0.0000,-0.0196) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2804) mvmt=(0.0000,0.0000,-0.0196) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1404) mvmt=(0.0000,0.0000,-0.0196) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1404) mvmt=(0.0000,0.0000,-0.0196) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8243) mvmt=(0.0000,0.0000,-0.0196) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7193) mvmt=(0.0000,0.0000,-0.0196) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2046) mvmt=(0.0000,0.0000,-0.0196) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2046) mvmt=(0.0000,0.0000,-0.0196) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2046) mvmt=(0.0000,0.0000,-0.0196) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2804) mvmt=(0.0000,0.0000,-0.0196) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1404) mvmt=(0.0000,0.0000,-0.0196) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1404) mvmt=(0.0000,0.0000,-0.0196) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8243) mvmt=(0.0000,0.0000,-0.0196) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7193) mvmt=(0.0000,0.0000,-0.0196) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7193) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0126) deltaMag=0.0126 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3564 dpPos=0.4712 dpMove=-0.0137 iDist=0.6436 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3564 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3564 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3564 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3564 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3564 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3564 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3564 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3564 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2048) mvmt=(0.0000,0.0000,-0.0195) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2048) mvmt=(0.0000,0.0000,-0.0195) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2048) mvmt=(0.0000,0.0000,-0.0195) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2802) mvmt=(0.0000,0.0000,-0.0195) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1402) mvmt=(0.0000,0.0000,-0.0195) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1402) mvmt=(0.0000,0.0000,-0.0195) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8245) mvmt=(0.0000,0.0000,-0.0195) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7195) mvmt=(0.0000,0.0000,-0.0195) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2048) mvmt=(0.0000,0.0000,-0.0195) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2048) mvmt=(0.0000,0.0000,-0.0195) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2048) mvmt=(0.0000,0.0000,-0.0195) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2802) mvmt=(0.0000,0.0000,-0.0195) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1402) mvmt=(0.0000,0.0000,-0.0195) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1402) mvmt=(0.0000,0.0000,-0.0195) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8245) mvmt=(0.0000,0.0000,-0.0195) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7195) mvmt=(0.0000,0.0000,-0.0195) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7195) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0125) deltaMag=0.0125 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3597 dpPos=0.4713 dpMove=-0.0135 iDist=0.6403 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3597 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3597 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3597 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3597 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3597 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3597 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3597 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3597 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3597 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3597 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3597 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3597 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3597 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3597 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3597 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3597 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3597 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3597 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3597 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3597 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3597 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3597 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2794) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1394) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1394) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8253) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7203) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2794) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1394) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1394) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8253) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7203) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7203) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0116) deltaMag=0.0116 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3764 dpPos=0.4719 dpMove=-0.0129 iDist=0.6236 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3764 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3764 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3764 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3764 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3764 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3764 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3764 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3764 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3764 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3764 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3764 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3764 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3764 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3764 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3764 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3764 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3764 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3764 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3764 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3764 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3764 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3764 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2799) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1399) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1399) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8248) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7198) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2799) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1399) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1399) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8248) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7198) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7198) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0121) deltaMag=0.0121 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3666 dpPos=0.4716 dpMove=-0.0133 iDist=0.6334 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3666 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3666 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3666 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3666 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3666 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3666 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3666 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2794) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1395) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1395) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8252) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7203) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2794) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1395) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1395) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8252) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7203) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7203) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0117) deltaMag=0.0117 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3746 dpPos=0.4719 dpMove=-0.0130 iDist=0.6254 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2049) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2049) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2049) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2801) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1401) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1401) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8246) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7196) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2049) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2049) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2049) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2801) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1401) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1401) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8246) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7196) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7196) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0123) deltaMag=0.0123 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3619 dpPos=0.4714 dpMove=-0.0134 iDist=0.6381 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3619 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3619 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3619 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3619 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3619 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3619 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3619 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3619 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3619 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3619 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3619 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3619 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3619 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3619 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3619 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3619 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3619 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3619 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3619 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3619 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3619 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3619 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2049) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2049) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2049) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2801) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1401) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1401) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8246) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7196) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2049) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2049) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2049) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2801) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1401) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1401) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8246) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7196) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7196) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0123) deltaMag=0.0123 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3626 dpPos=0.4714 dpMove=-0.0134 iDist=0.6374 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3626 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3626 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3626 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3626 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3626 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3626 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3626 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2041) mvmt=(0.0000,0.0000,-0.0201) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.224) lpos=(2.506,3.259,3.204) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2041) mvmt=(0.0000,0.0000,-0.0201) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2041) mvmt=(0.0000,0.0000,-0.0201) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2809) mvmt=(0.0000,0.0000,-0.0201) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1409) mvmt=(0.0000,0.0000,-0.0201) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1409) mvmt=(0.0000,0.0000,-0.0201) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8238) mvmt=(0.0000,0.0000,-0.0201) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7188) mvmt=(0.0000,0.0000,-0.0201) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2041) mvmt=(0.0000,0.0000,-0.0201) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.224) lpos=(2.506,3.259,3.204) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2041) mvmt=(0.0000,0.0000,-0.0201) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2041) mvmt=(0.0000,0.0000,-0.0201) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2809) mvmt=(0.0000,0.0000,-0.0201) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1409) mvmt=(0.0000,0.0000,-0.0201) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1409) mvmt=(0.0000,0.0000,-0.0201) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8238) mvmt=(0.0000,0.0000,-0.0201) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7188) mvmt=(0.0000,0.0000,-0.0201) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7188) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0131) deltaMag=0.0131 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3477 dpPos=0.4709 dpMove=-0.0140 iDist=0.6523 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3477 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3477 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3477 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3477 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3477 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3477 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3477 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3477 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2068) mvmt=(0.0000,0.0000,-0.0175) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.227) lpos=(2.506,3.259,3.207) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2068) mvmt=(0.0000,0.0000,-0.0175) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2068) mvmt=(0.0000,0.0000,-0.0175) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2782) mvmt=(0.0000,0.0000,-0.0175) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1382) mvmt=(0.0000,0.0000,-0.0175) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1382) mvmt=(0.0000,0.0000,-0.0175) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8265) mvmt=(0.0000,0.0000,-0.0175) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7215) mvmt=(0.0000,0.0000,-0.0175) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2068) mvmt=(0.0000,0.0000,-0.0175) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.227) lpos=(2.506,3.259,3.207) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2068) mvmt=(0.0000,0.0000,-0.0175) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2068) mvmt=(0.0000,0.0000,-0.0175) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2782) mvmt=(0.0000,0.0000,-0.0175) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1382) mvmt=(0.0000,0.0000,-0.0175) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1382) mvmt=(0.0000,0.0000,-0.0175) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8265) mvmt=(0.0000,0.0000,-0.0175) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7215) mvmt=(0.0000,0.0000,-0.0175) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7215) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0105) deltaMag=0.0105 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.4011 dpPos=0.4727 dpMove=-0.0121 iDist=0.5989 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4011 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4011 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4011 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4011 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4011 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4011 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4011 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4011 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4011 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4011 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4011 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4011 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4011 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4011 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4011 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4011 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4011 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4011 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4011 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4011 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4011 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4011 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2797) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8250) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7200) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2797) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8250) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7200) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7200) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0120) deltaMag=0.0120 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3691 dpPos=0.4717 dpMove=-0.0132 iDist=0.6309 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3691 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3691 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3691 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3691 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3691 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3691 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3691 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3691 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2798) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8249) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7199) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2798) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8249) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7199) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7199) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0121) deltaMag=0.0121 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3672 dpPos=0.4716 dpMove=-0.0133 iDist=0.6328 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3672 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3672 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3672 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3672 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3672 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3672 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3672 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3672 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3672 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3672 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3672 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3672 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3672 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3672 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3672 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3672 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3672 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3672 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3672 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3672 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3672 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3672 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2791) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8256) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7206) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2791) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8256) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7206) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7206) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0114) deltaMag=0.0114 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3808 dpPos=0.4721 dpMove=-0.0128 iDist=0.6192 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3808 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3808 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3808 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3808 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3808 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3808 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3808 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3808 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3808 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3808 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3808 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3808 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3808 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3808 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3808 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3808 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3808 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3808 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3808 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3808 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3808 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3808 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0179) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0179) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0179) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2787) mvmt=(0.0000,0.0000,-0.0179) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1387) mvmt=(0.0000,0.0000,-0.0179) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1387) mvmt=(0.0000,0.0000,-0.0179) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8260) mvmt=(0.0000,0.0000,-0.0179) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7210) mvmt=(0.0000,0.0000,-0.0179) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0179) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0179) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2063) mvmt=(0.0000,0.0000,-0.0179) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2787) mvmt=(0.0000,0.0000,-0.0179) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1387) mvmt=(0.0000,0.0000,-0.0179) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1387) mvmt=(0.0000,0.0000,-0.0179) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8260) mvmt=(0.0000,0.0000,-0.0179) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7210) mvmt=(0.0000,0.0000,-0.0179) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7210) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0109) deltaMag=0.0109 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3905 dpPos=0.4724 dpMove=-0.0125 iDist=0.6095 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3905 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3905 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3905 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3905 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3905 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3905 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3905 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3905 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3905 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3905 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3905 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3905 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3905 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3905 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3905 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3905 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3905 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3905 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3905 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3905 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3905 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3905 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[input] MovementForward Press +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2790) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8257) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7207) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2790) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8257) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7207) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7207) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0112) deltaMag=0.0112 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3846 dpPos=0.4722 dpMove=-0.0127 iDist=0.6154 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3846 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3846 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3846 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3846 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3846 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3846 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3846 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3846 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3846 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3846 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3846 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3846 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3846 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3846 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3846 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3846 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3846 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3846 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3846 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3846 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3846 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3846 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2793) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8254) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7204) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2793) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8254) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7204) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7204) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0116) deltaMag=0.0116 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3769 dpPos=0.4720 dpMove=-0.0129 iDist=0.6231 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3769 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2798) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8249) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7199) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2052) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2798) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1398) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8249) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7199) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7199) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0121) deltaMag=0.0121 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3671 dpPos=0.4716 dpMove=-0.0133 iDist=0.6329 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3671 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3671 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3671 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3671 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3671 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3671 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3671 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3671 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2791) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8256) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7206) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2791) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8256) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7206) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7206) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0113) deltaMag=0.0113 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3822 dpPos=0.4721 dpMove=-0.0127 iDist=0.6178 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3822 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3822 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3822 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3822 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3822 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3822 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3822 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3822 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3822 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3822 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3822 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3822 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3822 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3822 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3822 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3822 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3822 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3822 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3822 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3822 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3822 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3822 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2796) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8251) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7201) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2796) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8251) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7201) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7201) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0118) deltaMag=0.0118 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3715 dpPos=0.4718 dpMove=-0.0131 iDist=0.6285 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3715 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3715 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3715 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3715 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3715 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3715 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3715 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3715 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3715 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3715 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3715 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3715 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3715 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3715 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3715 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3715 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3715 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3715 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3715 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3715 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3715 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3715 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2061) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2061) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2061) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2789) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1389) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1389) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8258) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7208) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2061) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2061) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2061) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2789) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1389) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1389) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8258) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7208) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7208) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0112) deltaMag=0.0112 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3854 dpPos=0.4722 dpMove=-0.0126 iDist=0.6146 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3854 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3854 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3854 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3854 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3854 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3854 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3854 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3854 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3854 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3854 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3854 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3854 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3854 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3854 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3854 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3854 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3854 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3854 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3854 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3854 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3854 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3854 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2790) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8257) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7207) mvmt=(0.0000,0.0000,-0.0182) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2790) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8257) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7207) mvmt=(0.0000,0.0000,-0.0182) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7207) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0112) deltaMag=0.0112 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3843 dpPos=0.4722 dpMove=-0.0127 iDist=0.6157 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3843 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3843 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3843 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3843 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3843 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3843 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3843 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3843 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3843 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3843 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3843 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3843 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3843 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3843 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3843 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3843 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3843 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3843 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3843 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3843 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3843 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3843 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2790) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8257) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7207) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2060) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2790) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1390) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8257) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7207) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7207) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0113) deltaMag=0.0113 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3833 dpPos=0.4722 dpMove=-0.0127 iDist=0.6167 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3833 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3833 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3833 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3833 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3833 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3833 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3833 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3833 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3833 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3833 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3833 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3833 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3833 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3833 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3833 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3833 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3833 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3833 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3833 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3833 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3833 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3833 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2794) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1394) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1394) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8253) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7203) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2794) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1394) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1394) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8253) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7203) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7203) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0116) deltaMag=0.0116 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3759 dpPos=0.4719 dpMove=-0.0129 iDist=0.6241 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3759 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3759 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3759 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3759 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3759 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3759 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3759 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3759 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3759 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3759 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3759 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3759 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3759 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3759 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3759 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3759 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3759 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3759 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3759 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3759 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3759 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3759 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2791) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8256) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7206) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2791) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8256) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7206) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7206) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0114) deltaMag=0.0114 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3814 dpPos=0.4721 dpMove=-0.0128 iDist=0.6186 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3814 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3814 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3814 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3814 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3814 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3814 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3814 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3814 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2796) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8251) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7201) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2796) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8251) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7201) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7201) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0118) deltaMag=0.0118 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3721 dpPos=0.4718 dpMove=-0.0131 iDist=0.6279 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3721 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3721 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3721 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3721 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3721 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3721 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3721 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3721 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3721 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3721 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3721 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3721 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3721 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3721 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3721 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3721 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3721 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3721 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3721 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3721 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3721 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3721 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.1970) mvmt=(0.0000,0.0000,-0.0272) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.217) lpos=(2.506,3.259,3.197) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.1970) mvmt=(0.0000,0.0000,-0.0272) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.1970) mvmt=(0.0000,0.0000,-0.0272) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2880) mvmt=(0.0000,0.0000,-0.0272) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1480) mvmt=(0.0000,0.0000,-0.0272) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1480) mvmt=(0.0000,0.0000,-0.0272) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8167) mvmt=(0.0000,0.0000,-0.0272) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7117) mvmt=(0.0000,0.0000,-0.0272) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.1970) mvmt=(0.0000,0.0000,-0.0272) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.217) lpos=(2.506,3.259,3.197) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.1970) mvmt=(0.0000,0.0000,-0.0272) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.1970) mvmt=(0.0000,0.0000,-0.0272) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2880) mvmt=(0.0000,0.0000,-0.0272) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1480) mvmt=(0.0000,0.0000,-0.0272) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1480) mvmt=(0.0000,0.0000,-0.0272) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8167) mvmt=(0.0000,0.0000,-0.0272) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7117) mvmt=(0.0000,0.0000,-0.0272) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7117) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0202) deltaMag=0.0202 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.2571 dpPos=0.4659 dpMove=-0.0189 iDist=0.7429 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2571 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2571 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2571 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2571 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2571 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2571 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2571 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2571 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2571 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2571 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.2571 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2571 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2571 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2571 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2571 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2571 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2571 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2571 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2571 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2571 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2571 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.2571 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2796) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8251) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7201) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2796) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8251) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7201) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7201) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0118) deltaMag=0.0118 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3723 dpPos=0.4718 dpMove=-0.0131 iDist=0.6277 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3723 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3723 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3723 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3723 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3723 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3723 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3723 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3723 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2792) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8255) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7205) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2792) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8255) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7205) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7205) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0115) deltaMag=0.0115 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3789 dpPos=0.4720 dpMove=-0.0128 iDist=0.6211 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3789 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3789 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3789 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3789 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3789 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3789 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3789 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2793) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8254) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7204) mvmt=(0.0000,0.0000,-0.0186) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2057) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2793) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1393) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8254) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7204) mvmt=(0.0000,0.0000,-0.0186) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7204) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0116) deltaMag=0.0116 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3770 dpPos=0.4720 dpMove=-0.0129 iDist=0.6230 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3770 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3770 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3770 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3770 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3770 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3770 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3770 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3770 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2791) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8256) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7206) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2791) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8256) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7206) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7206) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0113) deltaMag=0.0113 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3819 dpPos=0.4721 dpMove=-0.0127 iDist=0.6181 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3819 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3819 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3819 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3819 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3819 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3819 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3819 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3819 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3819 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3819 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3819 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3819 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3819 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3819 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3819 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3819 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3819 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3819 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3819 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3819 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3819 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3819 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2788) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8259) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7209) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2788) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8259) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7209) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7209) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0110) deltaMag=0.0110 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3879 dpPos=0.4723 dpMove=-0.0125 iDist=0.6121 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3879 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2792) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8255) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7205) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2792) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8255) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7205) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7205) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0114) deltaMag=0.0114 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3800 dpPos=0.4721 dpMove=-0.0128 iDist=0.6200 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3800 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3800 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3800 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3800 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3800 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3800 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3800 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3800 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3800 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3800 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3800 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3800 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3800 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3800 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3800 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3800 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3800 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3800 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3800 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3800 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3800 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3800 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2792) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8255) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7205) mvmt=(0.0000,0.0000,-0.0185) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2792) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8255) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7205) mvmt=(0.0000,0.0000,-0.0185) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7205) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0115) deltaMag=0.0115 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3789 dpPos=0.4720 dpMove=-0.0128 iDist=0.6211 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3789 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3789 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3789 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3789 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3789 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3789 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3789 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3789 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[input] MovementTurnLeft Press +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2792) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8255) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7205) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2792) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8255) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7205) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7205) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0114) deltaMag=0.0114 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3797 dpPos=0.4720 dpMove=-0.0128 iDist=0.6203 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3797 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3797 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3797 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3797 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3797 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3797 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3797 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3797 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3797 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3797 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3797 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3797 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3797 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3797 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3797 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3797 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3797 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3797 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3797 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3797 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3797 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3797 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2794) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1395) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1395) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8252) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7203) mvmt=(0.0000,0.0000,-0.0187) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2056) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2794) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1395) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1395) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8252) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7203) mvmt=(0.0000,0.0000,-0.0187) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7203) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0117) deltaMag=0.0117 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3746 dpPos=0.4719 dpMove=-0.0130 iDist=0.6254 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3746 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2788) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8259) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7209) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2788) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8259) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7209) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7209) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0111) deltaMag=0.0111 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3872 dpPos=0.4723 dpMove=-0.0126 iDist=0.6128 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3872 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3872 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3872 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3872 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3872 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3872 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3872 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3872 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3872 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3872 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3872 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3872 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3872 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3872 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3872 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3872 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3872 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3872 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3872 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3872 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3872 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3872 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2796) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8251) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7201) mvmt=(0.0000,0.0000,-0.0188) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2796) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8251) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7201) mvmt=(0.0000,0.0000,-0.0188) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7201) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0118) deltaMag=0.0118 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3724 dpPos=0.4718 dpMove=-0.0131 iDist=0.6276 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3724 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3724 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3724 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3724 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3724 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3724 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3724 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3724 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2067) mvmt=(0.0000,0.0000,-0.0175) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.227) lpos=(2.506,3.259,3.207) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2067) mvmt=(0.0000,0.0000,-0.0175) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2067) mvmt=(0.0000,0.0000,-0.0175) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2783) mvmt=(0.0000,0.0000,-0.0175) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1383) mvmt=(0.0000,0.0000,-0.0175) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1383) mvmt=(0.0000,0.0000,-0.0175) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8264) mvmt=(0.0000,0.0000,-0.0175) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7214) mvmt=(0.0000,0.0000,-0.0175) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2067) mvmt=(0.0000,0.0000,-0.0175) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.227) lpos=(2.506,3.259,3.207) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2067) mvmt=(0.0000,0.0000,-0.0175) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2067) mvmt=(0.0000,0.0000,-0.0175) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2783) mvmt=(0.0000,0.0000,-0.0175) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1383) mvmt=(0.0000,0.0000,-0.0175) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1383) mvmt=(0.0000,0.0000,-0.0175) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8264) mvmt=(0.0000,0.0000,-0.0175) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7214) mvmt=(0.0000,0.0000,-0.0175) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7214) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0105) deltaMag=0.0105 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3992 dpPos=0.4727 dpMove=-0.0122 iDist=0.6008 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3992 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3992 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3992 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3992 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3992 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3992 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3992 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3992 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3992 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3992 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3992 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3992 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3992 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3992 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3992 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3992 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3992 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3992 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3992 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3992 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3992 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3992 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2061) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2061) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2061) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2789) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1389) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1389) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8258) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7208) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2061) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2061) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2061) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2789) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1389) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1389) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8258) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7208) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7208) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0111) deltaMag=0.0111 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3867 dpPos=0.4723 dpMove=-0.0126 iDist=0.6133 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3867 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3867 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3867 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3867 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3867 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3867 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3867 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3867 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3867 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3867 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3867 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3867 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3867 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3867 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3867 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3867 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3867 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3867 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3867 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3867 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3867 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3867 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2792) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8255) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7205) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2058) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2792) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1392) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8255) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7205) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7205) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0114) deltaMag=0.0114 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3805 dpPos=0.4721 dpMove=-0.0128 iDist=0.6195 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3805 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3805 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3805 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3805 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3805 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3805 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3805 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3805 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3805 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3805 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3805 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3805 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3805 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3805 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3805 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3805 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3805 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3805 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3805 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3805 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3805 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3805 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2049) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2049) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2049) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2801) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1401) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1401) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8246) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7196) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2049) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2049) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2049) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2801) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1401) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1401) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8246) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7196) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7196) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0123) deltaMag=0.0123 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3626 dpPos=0.4714 dpMove=-0.0134 iDist=0.6374 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3626 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3626 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3626 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3626 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3626 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3626 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3626 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3626 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2797) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8250) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7200) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2797) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8250) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7200) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7200) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0120) deltaMag=0.0120 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3688 dpPos=0.4717 dpMove=-0.0132 iDist=0.6312 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3688 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3688 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3688 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3688 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3688 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3688 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3688 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3688 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[input] MovementTurnRight Press +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2799) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1399) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1399) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8248) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7198) mvmt=(0.0000,0.0000,-0.0191) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2051) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2799) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1399) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1399) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8248) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7198) mvmt=(0.0000,0.0000,-0.0191) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7198) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0121) deltaMag=0.0121 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3666 dpPos=0.4716 dpMove=-0.0133 iDist=0.6334 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3666 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3666 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3666 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3666 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3666 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3666 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3666 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3666 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2047) mvmt=(0.0000,0.0000,-0.0195) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2047) mvmt=(0.0000,0.0000,-0.0195) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2047) mvmt=(0.0000,0.0000,-0.0195) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2803) mvmt=(0.0000,0.0000,-0.0195) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1403) mvmt=(0.0000,0.0000,-0.0195) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1403) mvmt=(0.0000,0.0000,-0.0195) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8244) mvmt=(0.0000,0.0000,-0.0195) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7194) mvmt=(0.0000,0.0000,-0.0195) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2047) mvmt=(0.0000,0.0000,-0.0195) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2047) mvmt=(0.0000,0.0000,-0.0195) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2047) mvmt=(0.0000,0.0000,-0.0195) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2803) mvmt=(0.0000,0.0000,-0.0195) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1403) mvmt=(0.0000,0.0000,-0.0195) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1403) mvmt=(0.0000,0.0000,-0.0195) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8244) mvmt=(0.0000,0.0000,-0.0195) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7194) mvmt=(0.0000,0.0000,-0.0195) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7194) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0125) deltaMag=0.0125 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3589 dpPos=0.4713 dpMove=-0.0136 iDist=0.6411 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3589 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3589 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3589 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3589 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3589 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3589 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3589 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3589 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3589 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3589 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3589 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3589 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3589 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3589 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3589 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3589 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3589 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3589 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3589 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3589 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3589 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3589 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2796) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8251) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7201) mvmt=(0.0000,0.0000,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2054) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2796) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1396) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8251) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7201) mvmt=(0.0000,0.0000,-0.0189) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7201) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0119) deltaMag=0.0119 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3714 dpPos=0.4718 dpMove=-0.0131 iDist=0.6286 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3714 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3714 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3714 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3714 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3714 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3714 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3714 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3714 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3714 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3714 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3714 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3714 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3714 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3714 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3714 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3714 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3714 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3714 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3714 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3714 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3714 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3714 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2788) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8259) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7209) mvmt=(0.0000,0.0000,-0.0181) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2062) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2788) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1388) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8259) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7209) mvmt=(0.0000,0.0000,-0.0181) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7209) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0111) deltaMag=0.0111 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3875 dpPos=0.4723 dpMove=-0.0126 iDist=0.6125 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3875 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3875 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3875 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3875 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3875 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3875 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3875 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3875 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3875 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3875 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3875 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3875 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3875 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3875 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3875 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3875 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3875 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3875 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3875 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3875 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3875 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3875 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2064) mvmt=(0.0000,0.0000,-0.0178) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2064) mvmt=(0.0000,0.0000,-0.0178) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2064) mvmt=(0.0000,0.0000,-0.0178) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2786) mvmt=(0.0000,0.0000,-0.0178) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1386) mvmt=(0.0000,0.0000,-0.0178) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1386) mvmt=(0.0000,0.0000,-0.0178) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8261) mvmt=(0.0000,0.0000,-0.0178) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7211) mvmt=(0.0000,0.0000,-0.0178) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2064) mvmt=(0.0000,0.0000,-0.0178) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2064) mvmt=(0.0000,0.0000,-0.0178) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2064) mvmt=(0.0000,0.0000,-0.0178) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2786) mvmt=(0.0000,0.0000,-0.0178) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1386) mvmt=(0.0000,0.0000,-0.0178) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1386) mvmt=(0.0000,0.0000,-0.0178) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8261) mvmt=(0.0000,0.0000,-0.0178) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7211) mvmt=(0.0000,0.0000,-0.0178) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7211) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0108) deltaMag=0.0108 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3925 dpPos=0.4725 dpMove=-0.0124 iDist=0.6075 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3925 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3925 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3925 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3925 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3925 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3925 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3925 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3925 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3925 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3925 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3925 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3925 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3925 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3925 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3925 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3925 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3925 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3925 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3925 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3925 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3925 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3925 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2072) mvmt=(0.0000,0.0000,-0.0171) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.227) lpos=(2.506,3.259,3.207) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2072) mvmt=(0.0000,0.0000,-0.0171) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2072) mvmt=(0.0000,0.0000,-0.0171) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2778) mvmt=(0.0000,0.0000,-0.0171) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1378) mvmt=(0.0000,0.0000,-0.0171) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1378) mvmt=(0.0000,0.0000,-0.0171) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8268) mvmt=(0.0000,0.0000,-0.0171) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7219) mvmt=(0.0000,0.0000,-0.0171) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2072) mvmt=(0.0000,0.0000,-0.0171) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.227) lpos=(2.506,3.259,3.207) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2072) mvmt=(0.0000,0.0000,-0.0171) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2072) mvmt=(0.0000,0.0000,-0.0171) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2778) mvmt=(0.0000,0.0000,-0.0171) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1378) mvmt=(0.0000,0.0000,-0.0171) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1378) mvmt=(0.0000,0.0000,-0.0171) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8268) mvmt=(0.0000,0.0000,-0.0171) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7219) mvmt=(0.0000,0.0000,-0.0171) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7219) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0101) deltaMag=0.0101 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.4097 dpPos=0.4730 dpMove=-0.0119 iDist=0.5903 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4097 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4097 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4097 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4097 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4097 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4097 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4097 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4097 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4097 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4097 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4097 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4097 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4097 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4097 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4097 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4097 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4097 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4097 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4097 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4097 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4097 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4097 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2073) mvmt=(0.0000,0.0000,-0.0169) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.227) lpos=(2.506,3.259,3.207) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2073) mvmt=(0.0000,0.0000,-0.0169) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2073) mvmt=(0.0000,0.0000,-0.0169) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2777) mvmt=(0.0000,0.0000,-0.0169) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1377) mvmt=(0.0000,0.0000,-0.0169) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1377) mvmt=(0.0000,0.0000,-0.0169) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8270) mvmt=(0.0000,0.0000,-0.0169) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7220) mvmt=(0.0000,0.0000,-0.0169) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2073) mvmt=(0.0000,0.0000,-0.0169) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.227) lpos=(2.506,3.259,3.207) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2073) mvmt=(0.0000,0.0000,-0.0169) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2073) mvmt=(0.0000,0.0000,-0.0169) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2777) mvmt=(0.0000,0.0000,-0.0169) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1377) mvmt=(0.0000,0.0000,-0.0169) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1377) mvmt=(0.0000,0.0000,-0.0169) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8270) mvmt=(0.0000,0.0000,-0.0169) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7220) mvmt=(0.0000,0.0000,-0.0169) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7220) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0099) deltaMag=0.0099 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.4137 dpPos=0.4731 dpMove=-0.0118 iDist=0.5863 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4137 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4137 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4137 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4137 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4137 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4137 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4137 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4137 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4137 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4137 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4137 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4137 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4137 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4137 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4137 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4137 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4137 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4137 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4137 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4137 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4137 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4137 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2797) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8250) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7200) mvmt=(0.0000,0.0000,-0.0190) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2053) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2797) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1397) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8250) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7200) mvmt=(0.0000,0.0000,-0.0190) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7200) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0120) deltaMag=0.0120 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3690 dpPos=0.4717 dpMove=-0.0132 iDist=0.6310 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3690 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3690 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3690 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3690 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3690 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3690 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3690 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3690 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3690 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3690 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3690 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3690 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3690 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3690 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3690 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3690 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3690 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3690 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3690 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3690 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3690 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3690 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[input] MovementStrafeRight Press +[input] MovementBackup Press +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2048) mvmt=(0.0000,0.0000,-0.0194) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2048) mvmt=(0.0000,0.0000,-0.0194) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2048) mvmt=(0.0000,0.0000,-0.0194) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2802) mvmt=(0.0000,0.0000,-0.0194) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1402) mvmt=(0.0000,0.0000,-0.0194) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1402) mvmt=(0.0000,0.0000,-0.0194) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8245) mvmt=(0.0000,0.0000,-0.0194) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7195) mvmt=(0.0000,0.0000,-0.0194) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2048) mvmt=(0.0000,0.0000,-0.0194) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2048) mvmt=(0.0000,0.0000,-0.0194) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2048) mvmt=(0.0000,0.0000,-0.0194) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2802) mvmt=(0.0000,0.0000,-0.0194) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1402) mvmt=(0.0000,0.0000,-0.0194) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1402) mvmt=(0.0000,0.0000,-0.0194) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8245) mvmt=(0.0000,0.0000,-0.0194) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7195) mvmt=(0.0000,0.0000,-0.0194) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7195) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0124) deltaMag=0.0124 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3609 dpPos=0.4714 dpMove=-0.0135 iDist=0.6391 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3609 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3609 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3609 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3609 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3609 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3609 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3609 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3609 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3609 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3609 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3609 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3609 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3609 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3609 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3609 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3609 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3609 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3609 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3609 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3609 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3609 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3609 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2791) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8256) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7206) mvmt=(0.0000,0.0000,-0.0184) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2791) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8256) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7206) mvmt=(0.0000,0.0000,-0.0184) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7206) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0114) deltaMag=0.0114 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3811 dpPos=0.4721 dpMove=-0.0128 iDist=0.6189 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3811 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3811 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3811 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3811 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3811 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3811 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3811 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3811 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3811 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3811 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3811 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3811 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3811 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3811 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3811 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3811 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3811 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3811 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3811 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3811 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3811 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3811 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2041) mvmt=(0.0000,0.0000,-0.0201) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.224) lpos=(2.506,3.259,3.204) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2041) mvmt=(0.0000,0.0000,-0.0201) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2041) mvmt=(0.0000,0.0000,-0.0201) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2809) mvmt=(0.0000,0.0000,-0.0201) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1409) mvmt=(0.0000,0.0000,-0.0201) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1409) mvmt=(0.0000,0.0000,-0.0201) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8238) mvmt=(0.0000,0.0000,-0.0201) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7188) mvmt=(0.0000,0.0000,-0.0201) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2041) mvmt=(0.0000,0.0000,-0.0201) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.224) lpos=(2.506,3.259,3.204) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2041) mvmt=(0.0000,0.0000,-0.0201) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2041) mvmt=(0.0000,0.0000,-0.0201) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2809) mvmt=(0.0000,0.0000,-0.0201) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1409) mvmt=(0.0000,0.0000,-0.0201) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1409) mvmt=(0.0000,0.0000,-0.0201) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8238) mvmt=(0.0000,0.0000,-0.0201) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7188) mvmt=(0.0000,0.0000,-0.0201) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7188) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0131) deltaMag=0.0131 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3484 dpPos=0.4709 dpMove=-0.0140 iDist=0.6516 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3484 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3484 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3484 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3484 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3484 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3484 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3484 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3484 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3484 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3484 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3484 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3484 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3484 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3484 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3484 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3484 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3484 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3484 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3484 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3484 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3484 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3484 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2076) mvmt=(0.0000,0.0000,-0.0166) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.228) lpos=(2.506,3.259,3.208) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2076) mvmt=(0.0000,0.0000,-0.0166) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2076) mvmt=(0.0000,0.0000,-0.0166) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2774) mvmt=(0.0000,0.0000,-0.0166) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1374) mvmt=(0.0000,0.0000,-0.0166) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1374) mvmt=(0.0000,0.0000,-0.0166) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8273) mvmt=(0.0000,0.0000,-0.0166) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7223) mvmt=(0.0000,0.0000,-0.0166) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2076) mvmt=(0.0000,0.0000,-0.0166) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.228) lpos=(2.506,3.259,3.208) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2076) mvmt=(0.0000,0.0000,-0.0166) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2076) mvmt=(0.0000,0.0000,-0.0166) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2774) mvmt=(0.0000,0.0000,-0.0166) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1374) mvmt=(0.0000,0.0000,-0.0166) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1374) mvmt=(0.0000,0.0000,-0.0166) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8273) mvmt=(0.0000,0.0000,-0.0166) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7223) mvmt=(0.0000,0.0000,-0.0166) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7223) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0096) deltaMag=0.0096 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.4212 dpPos=0.4733 dpMove=-0.0116 iDist=0.5788 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4212 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4212 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4212 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4212 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4212 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4212 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4212 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4212 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4212 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4212 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4212 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4212 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4212 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4212 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4212 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4212 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4212 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4212 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4212 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4212 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4212 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4212 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2800) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1400) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1400) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8247) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7197) mvmt=(0.0000,0.0000,-0.0193) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2050) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2800) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1400) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1400) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8247) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7197) mvmt=(0.0000,0.0000,-0.0193) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7197) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0123) deltaMag=0.0123 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3633 dpPos=0.4715 dpMove=-0.0134 iDist=0.6367 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3633 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3633 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3633 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3633 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3633 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3633 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3633 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3633 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3633 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3633 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3633 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3633 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3633 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3633 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3633 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3633 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3633 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3633 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3633 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3633 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3633 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3633 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[input] MovementStrafeRight Press +[input] MovementBackup Press +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2027) mvmt=(0.0000,0.0000,-0.0216) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.223) lpos=(2.506,3.259,3.203) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2027) mvmt=(0.0000,0.0000,-0.0216) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2027) mvmt=(0.0000,0.0000,-0.0216) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2823) mvmt=(0.0000,0.0000,-0.0216) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1423) mvmt=(0.0000,0.0000,-0.0216) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1423) mvmt=(0.0000,0.0000,-0.0216) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8224) mvmt=(0.0000,0.0000,-0.0216) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7174) mvmt=(0.0000,0.0000,-0.0216) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2027) mvmt=(0.0000,0.0000,-0.0216) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.223) lpos=(2.506,3.259,3.203) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2027) mvmt=(0.0000,0.0000,-0.0216) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2027) mvmt=(0.0000,0.0000,-0.0216) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2823) mvmt=(0.0000,0.0000,-0.0216) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1423) mvmt=(0.0000,0.0000,-0.0216) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1423) mvmt=(0.0000,0.0000,-0.0216) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8224) mvmt=(0.0000,0.0000,-0.0216) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7174) mvmt=(0.0000,0.0000,-0.0216) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7174) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0146) deltaMag=0.0146 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3245 dpPos=0.4699 dpMove=-0.0150 iDist=0.6755 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3245 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3245 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3245 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3245 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3245 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3245 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3245 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3245 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3245 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3245 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3245 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3245 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3245 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3245 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3245 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3245 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3245 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3245 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3245 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3245 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3245 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3245 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2046) mvmt=(0.0000,0.0000,-0.0197) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2046) mvmt=(0.0000,0.0000,-0.0197) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2046) mvmt=(0.0000,0.0000,-0.0197) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2804) mvmt=(0.0000,0.0000,-0.0197) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1404) mvmt=(0.0000,0.0000,-0.0197) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1404) mvmt=(0.0000,0.0000,-0.0197) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8243) mvmt=(0.0000,0.0000,-0.0197) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7193) mvmt=(0.0000,0.0000,-0.0197) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2046) mvmt=(0.0000,0.0000,-0.0197) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2046) mvmt=(0.0000,0.0000,-0.0197) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2046) mvmt=(0.0000,0.0000,-0.0197) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2804) mvmt=(0.0000,0.0000,-0.0197) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1404) mvmt=(0.0000,0.0000,-0.0197) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1404) mvmt=(0.0000,0.0000,-0.0197) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8243) mvmt=(0.0000,0.0000,-0.0197) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7193) mvmt=(0.0000,0.0000,-0.0197) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7193) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0127) deltaMag=0.0127 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3560 dpPos=0.4712 dpMove=-0.0137 iDist=0.6440 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3560 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3560 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3560 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3560 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3560 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3560 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3560 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3560 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[input] MovementBackup Press +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2044) mvmt=(0.0000,0.0000,-0.0198) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.224) lpos=(2.506,3.259,3.204) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2044) mvmt=(0.0000,0.0000,-0.0198) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2044) mvmt=(0.0000,0.0000,-0.0198) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2806) mvmt=(0.0000,0.0000,-0.0198) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1406) mvmt=(0.0000,0.0000,-0.0198) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1406) mvmt=(0.0000,0.0000,-0.0198) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8241) mvmt=(0.0000,0.0000,-0.0198) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7191) mvmt=(0.0000,0.0000,-0.0198) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2044) mvmt=(0.0000,0.0000,-0.0198) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.224) lpos=(2.506,3.259,3.204) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2044) mvmt=(0.0000,0.0000,-0.0198) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2044) mvmt=(0.0000,0.0000,-0.0198) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2806) mvmt=(0.0000,0.0000,-0.0198) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1406) mvmt=(0.0000,0.0000,-0.0198) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1406) mvmt=(0.0000,0.0000,-0.0198) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8241) mvmt=(0.0000,0.0000,-0.0198) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7191) mvmt=(0.0000,0.0000,-0.0198) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7191) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0128) deltaMag=0.0128 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3534 dpPos=0.4711 dpMove=-0.0138 iDist=0.6466 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3534 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3534 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3534 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3534 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3534 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3534 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3534 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3534 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3534 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3534 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3534 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3534 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3534 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3534 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3534 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3534 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3534 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3534 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3534 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3534 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3534 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3534 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[input] MovementStrafeRight Press +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2049) mvmt=(0.0000,0.0000,-0.0194) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2049) mvmt=(0.0000,0.0000,-0.0194) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2049) mvmt=(0.0000,0.0000,-0.0194) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2801) mvmt=(0.0000,0.0000,-0.0194) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1401) mvmt=(0.0000,0.0000,-0.0194) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1401) mvmt=(0.0000,0.0000,-0.0194) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8246) mvmt=(0.0000,0.0000,-0.0194) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7196) mvmt=(0.0000,0.0000,-0.0194) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2049) mvmt=(0.0000,0.0000,-0.0194) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.225) lpos=(2.506,3.259,3.205) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2049) mvmt=(0.0000,0.0000,-0.0194) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2049) mvmt=(0.0000,0.0000,-0.0194) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2801) mvmt=(0.0000,0.0000,-0.0194) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1401) mvmt=(0.0000,0.0000,-0.0194) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1401) mvmt=(0.0000,0.0000,-0.0194) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8246) mvmt=(0.0000,0.0000,-0.0194) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7196) mvmt=(0.0000,0.0000,-0.0194) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7196) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0124) deltaMag=0.0124 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3611 dpPos=0.4714 dpMove=-0.0135 iDist=0.6389 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3611 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3611 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3611 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3611 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3611 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3611 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3611 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3611 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3611 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3611 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3611 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3611 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3611 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3611 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3611 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3611 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3611 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3611 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3611 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3611 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3611 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3611 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2070) mvmt=(0.0000,0.0000,-0.0172) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.227) lpos=(2.506,3.259,3.207) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2070) mvmt=(0.0000,0.0000,-0.0172) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2070) mvmt=(0.0000,0.0000,-0.0172) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2780) mvmt=(0.0000,0.0000,-0.0172) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1380) mvmt=(0.0000,0.0000,-0.0172) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1380) mvmt=(0.0000,0.0000,-0.0172) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8267) mvmt=(0.0000,0.0000,-0.0172) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7217) mvmt=(0.0000,0.0000,-0.0172) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2070) mvmt=(0.0000,0.0000,-0.0172) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.227) lpos=(2.506,3.259,3.207) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2070) mvmt=(0.0000,0.0000,-0.0172) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2070) mvmt=(0.0000,0.0000,-0.0172) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2780) mvmt=(0.0000,0.0000,-0.0172) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1380) mvmt=(0.0000,0.0000,-0.0172) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1380) mvmt=(0.0000,0.0000,-0.0172) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8267) mvmt=(0.0000,0.0000,-0.0172) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7217) mvmt=(0.0000,0.0000,-0.0172) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7217) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0102) deltaMag=0.0102 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.4068 dpPos=0.4729 dpMove=-0.0120 iDist=0.5932 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4068 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4068 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4068 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4068 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4068 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4068 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4068 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4068 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4068 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4068 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4068 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4068 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4068 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4068 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4068 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4068 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4068 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4068 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4068 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4068 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4068 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4068 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[input] MovementBackup Press +[input] MovementStrafeRight Press +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2074) mvmt=(0.0000,0.0000,-0.0169) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.227) lpos=(2.506,3.259,3.207) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2074) mvmt=(0.0000,0.0000,-0.0169) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2074) mvmt=(0.0000,0.0000,-0.0169) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2776) mvmt=(0.0000,0.0000,-0.0169) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1376) mvmt=(0.0000,0.0000,-0.0169) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1376) mvmt=(0.0000,0.0000,-0.0169) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8271) mvmt=(0.0000,0.0000,-0.0169) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7221) mvmt=(0.0000,0.0000,-0.0169) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2074) mvmt=(0.0000,0.0000,-0.0169) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.227) lpos=(2.506,3.259,3.207) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2074) mvmt=(0.0000,0.0000,-0.0169) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2074) mvmt=(0.0000,0.0000,-0.0169) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2776) mvmt=(0.0000,0.0000,-0.0169) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1376) mvmt=(0.0000,0.0000,-0.0169) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1376) mvmt=(0.0000,0.0000,-0.0169) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8271) mvmt=(0.0000,0.0000,-0.0169) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7221) mvmt=(0.0000,0.0000,-0.0169) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7221) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0099) deltaMag=0.0099 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.4152 dpPos=0.4731 dpMove=-0.0117 iDist=0.5848 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4152 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4152 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4152 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4152 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4152 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4152 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4152 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4152 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4152 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4152 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.4152 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4152 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4152 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4152 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4152 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4152 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4152 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4152 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4152 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4152 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4152 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.4152 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2791) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8256) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7206) mvmt=(0.0000,0.0000,-0.0183) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.226) lpos=(2.506,3.259,3.206) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2059) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2791) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1391) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8256) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7206) mvmt=(0.0000,0.0000,-0.0183) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7206) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0113) deltaMag=0.0113 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3827 dpPos=0.4722 dpMove=-0.0127 iDist=0.6173 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3827 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3827 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3827 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3827 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3827 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3827 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3827 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3827 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3827 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3827 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3827 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3827 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3827 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3827 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3827 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3827 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3827 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3827 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3827 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3827 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3827 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3827 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[input] MovementBackup Press +[input] MovementStrafeRight Press +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2035) mvmt=(0.0000,0.0000,-0.0207) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.224) lpos=(2.506,3.259,3.204) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2035) mvmt=(0.0000,0.0000,-0.0207) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2035) mvmt=(0.0000,0.0000,-0.0207) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2815) mvmt=(0.0000,0.0000,-0.0207) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1415) mvmt=(0.0000,0.0000,-0.0207) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1415) mvmt=(0.0000,0.0000,-0.0207) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8232) mvmt=(0.0000,0.0000,-0.0207) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7182) mvmt=(0.0000,0.0000,-0.0207) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2035) mvmt=(0.0000,0.0000,-0.0207) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.224) lpos=(2.506,3.259,3.204) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2035) mvmt=(0.0000,0.0000,-0.0207) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2035) mvmt=(0.0000,0.0000,-0.0207) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2815) mvmt=(0.0000,0.0000,-0.0207) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1415) mvmt=(0.0000,0.0000,-0.0207) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1415) mvmt=(0.0000,0.0000,-0.0207) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8232) mvmt=(0.0000,0.0000,-0.0207) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7182) mvmt=(0.0000,0.0000,-0.0207) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3413,0.8666,1.7182) out=(0.3413,0.8666,1.7319) delta=(0.0000,0.0000,0.0137) deltaMag=0.0137 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3378 dpPos=0.4705 dpMove=-0.0144 iDist=0.6622 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4014B caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3378 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3378 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3378 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3378 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3378 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3378 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3378 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3378 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3378 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3378 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=True insertType=0 objState=0x300 winterp=0.3378 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3378 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.994,8.241,97.237) lpos=(2.506,3.259,3.217) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3378 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2172) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3378 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0294,3.2589,-1.2678) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3378 return=-1 +[push-back-disp] site=dispatch center=(3.4576,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3378 return=-1 +[push-back-disp] site=dispatch center=(-2.7774,2.6714,-4.1278) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3378 return=-1 +[push-back-disp] site=dispatch center=(-0.6337,1.1066,1.8369) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3378 return=-1 +[push-back-disp] site=dispatch center=(0.3413,0.8666,1.7319) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3378 return=-1 +[push-back-disp] site=dispatch center=(0.3413,-1.3446,0.3819) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3378 return=-1 +[push-back-disp] site=dispatch center=(-3.0294,3.2589,1.7372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3378 return=-1 +[push-back-disp] site=dispatch center=(2.5056,3.2589,3.2372) mvmt=(0.0000,0.0000,-0.0070) collide=False insertType=1 objState=0x300 winterp=0.3378 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.TransitionalInsert:824 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.TransitionalInsert:862 +[10:28:38 INF] smoke plugin disabled (saw 10946 entities total) diff --git a/docs/research/2026-05-21-a6-captures/scen3_inn_2nd_floor_slice2v2/acdream.log b/docs/research/2026-05-21-a6-captures/scen3_inn_2nd_floor_slice2v2/acdream.log new file mode 100644 index 0000000..81d90ea --- /dev/null +++ b/docs/research/2026-05-21-a6-captures/scen3_inn_2nd_floor_slice2v2/acdream.log @@ -0,0 +1,257668 @@ +[10:32:45 INF] scanning plugins in C:\Users\erikn\source\repos\acdream\.claude\worktrees\strange-albattani-3fc83c\src\AcDream.App\bin\Debug\net10.0\plugins +[10:32:45 INF] smoke plugin initialized +[10:32:45 INF] loaded plugin acdream.smoke (Smoke Plugin) +[10:32:45 INF] smoke plugin enabled +[10:32:45 INF] smoke plugin sees 0 entities (replay count at subscribe) +spells: loaded 3956 entries from spells.csv +keybinds: loaded 152 bindings from C:\Users\erikn\AppData\Local\acdream\keybinds.json +world-hud font: loaded 442KB, atlas 512x512, lineHeight=17.6px (reserved for D.6 HUD) +audio: OpenAL engine ready (16 voices, 3D positional) +[QUALITY] Preset High ? QualitySettings { NearRadius = 4, FarRadius = 12, MsaaSamples = 4, AnisotropicLevel = 16, AlphaToCoverage = True, MaxCompletionsPerFrame = 4 } +devtools: ImGui panel host ready (VitalsPanel + ChatPanel + DebugPanel + SettingsPanel registered) +loading world view centered on 0xA9B4FFFF +sky: GameTime ZeroTimeOfYear=3600 (was default 3333.75) +sky: loaded Region 0x13000000 ? 20 day groups, SkyDesc.TickSize=0.800000011920929 (throttle, not rate), LightTickSize=15 +sky: PY10 day0 ? DayGroup[16] "Rainy" (Chance=5.00, 19 objects, 13 keyframes, weather=Overcast) +[N.5] modern path capabilities present (bindless + ARB_shader_draw_parameters) +TerrainAtlas: 33 terrain layers at 512x512 (mipmaps+aniso16x) +AlphaAtlas: 8 layers at 512x512 (corners=4, sides=1, roads=3) +TerrainAtlas: anisotropic updated to 16x +[N.5] mesh_modern shader loaded +[N.4+N.5] WB foundation + modern path active ? routing all content through ObjectMeshManager. +streaming: nearRadius=4 (window=9x9) farRadius=12 (window=25x25) +live: connecting to 127.0.0.1:9000 as testaccount +sky: PY117 day4 ? DayGroup[11] "Clear" (Chance=5.00, 7 objects, 11 keyframes, weather=Clear) +live: entering world as 0x5000000A +Acdream +settings: loaded character[+Acdream] preferences +live: in world ? CreateObject stream active (so far: 0 received, 0 hydrated) +chat: SetTurbineChatChannels parsed enabled=True general=0x00000002 trade=0x00000003 lfg=0x00000004 roleplay=0x00000005 society=0x00000000 olthoi=0x0000000A allegiance=0x00000000 +chat: SetTurbineChatChannels parsed enabled=True general=0x00000002 trade=0x00000003 lfg=0x00000004 roleplay=0x00000005 society=0x00000000 olthoi=0x0000000A allegiance=0x00000000 +chat: SetTurbineChatChannels parsed enabled=True general=0x00000002 trade=0x00000003 lfg=0x00000004 roleplay=0x00000005 society=0x00000000 olthoi=0x0000000A allegiance=0x00000000 +live: spawn guid=0x5000000A name="+Acdream" setup=0x02000001 pos=(128.0,8.2,96.8)@0xA9B4014B itemType=0x00000010 animParts=35 texChanges=23 subPalettes=12 +live: spawn guid=0x800004FC name="Agent of Arcanum List" setup=0x02000155 pos=no-pos itemType=0x00002000 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x80000503 name="Refurbisher's Tally" setup=0x02000155 pos=no-pos itemType=0x00002000 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x800005FF name="Pyreal" setup=0x02000B77 pos=no-pos itemType=0x00000040 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x80000600 name="Sack" setup=0x02000181 pos=no-pos itemType=0x00000200 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000601 name="Calling Stone" setup=0x02000179 pos=no-pos itemType=0x00000800 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x800006F7 name="Brimstone" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x800006F8 name="Cadmia" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x800006F9 name="Cinnabar" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x800006FA name="Cobalt" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x800006FB name="Colcothar" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000701 name="Verdigris" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x800006F4 name="Rowan Talisman" setup=0x02000307 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000702 name="Vitriol" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000703 name="Amaranth" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000604 name="Ust" setup=0x02000D5C pos=no-pos itemType=0x20000000 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x80000705 name="Comfrey" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000706 name="Damiana" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000605 name="Letter From Home" setup=0x02000155 pos=no-pos itemType=0x00002000 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x80001BB5 name="Pathwarden Robe" setup=0x020001A6 pos=no-pos itemType=0x00000004 animParts=1 texChanges=4 subPalettes=4 +live: spawn guid=0x80000696 name="Academy Coat" setup=0x020000D4 pos=no-pos itemType=0x00000002 animParts=1 texChanges=6 subPalettes=7 +live: spawn guid=0x800006EC name="Blackthorn Talisman" setup=0x02000307 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x800006F3 name="Poplar Talisman" setup=0x02000307 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x800006F6 name="Yew Talisman" setup=0x02000307 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x800006FF name="Stibnite" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000700 name="Turpeth" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000F1B name="Refurbisher's Tally" setup=0x02000155 pos=no-pos itemType=0x00002000 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x80000711 name="Vervain" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000713 name="Yarrow" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000F1C name="Agent of Arcanum List" setup=0x02000155 pos=no-pos itemType=0x00002000 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x80000714 name="Powdered Agate" setup=0x02000308 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000715 name="Powdered Amber" setup=0x02000308 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000717 name="Powdered Bloodstone" setup=0x02000308 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000718 name="Powdered Carnelian" setup=0x02000308 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000606 name="Blackmoor's Favor" setup=0x02000179 pos=no-pos itemType=0x00000800 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x80000694 name="Oil of Rendering" setup=0x020005FF pos=no-pos itemType=0x00000080 animParts=1 texChanges=2 subPalettes=1 +live: spawn guid=0x80000695 name="Oil of Rendering" setup=0x020005FF pos=no-pos itemType=0x00000080 animParts=1 texChanges=2 subPalettes=1 +live: spawn guid=0x80000707 name="Dragonsblood" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000708 name="Eyebright" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000709 name="Frankincense" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x8000070B name="Henbane" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x8000070C name="Hyssop" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x8000071A name="Powdered Malachite" setup=0x02000308 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x8000071E name="Powdered Turquoise" setup=0x02000308 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x8000072C name="Chorizite" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x7A9B3001 name="Holtburg" setup=0x020006EF pos=(27.8,173.8,93.0)@0xA9B30010 itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x800006FC name="Gypsum" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x800006FD name="Quicksilver" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x800006FE name="Realgar" setup=0x02000309 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x8000070D name="Mandrake" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x8000070E name="Mugwort" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x8000070F name="Myrrh" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80000710 name="Saffron" setup=0x02000181 pos=no-pos itemType=0x00001000 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80001BB7 name="Pathwarden Gauntlets" setup=0x020000D8 pos=no-pos itemType=0x00000002 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80001BB8 name="Pathwarden Helm" setup=0x020000DA pos=no-pos itemType=0x00000002 animParts=1 texChanges=1 subPalettes=1 +live: spawn guid=0x80001BB6 name="Pathwarden Sollerets" setup=0x020000DE pos=no-pos itemType=0x00000002 animParts=1 texChanges=2 subPalettes=1 +live: spawn guid=0x7A9B4037 name="Beer Keg" setup=0x02000975 pos=(109.7,33.0,95.0)@0xA9B4015C itemType=0x00400000 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x80001BB4 name="Pathwarden Plate Leggings" setup=0x020001A8 pos=no-pos itemType=0x00000002 animParts=1 texChanges=2 subPalettes=1 +live: spawn guid=0x80001BB3 name="Pathwarden Plate Hauberk" setup=0x020000D4 pos=no-pos itemType=0x00000002 animParts=1 texChanges=6 subPalettes=5 +live: spawn guid=0x7A9B4013 name="Chest" setup=0x0200007C pos=(135.7,9.9,97.0)@0xA9B4014B itemType=0x00000200 animParts=0 texChanges=0 subPalettes=0 +live: animated=1 animReject: noCycle=2 fr0=1 1frame=0 partFrames=0 +live: summary recv=60 hydrated=4 drops: noPos=56 noSetup=0 setupMissing=0 noMesh=0 +live: spawn guid=0x7A9B4014 name="Chest" setup=0x0200007C pos=(132.5,9.9,97.0)@0xA9B4014B itemType=0x00000200 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B4023 name="Scribe Renald the Younger" setup=0x02000001 pos=(131.4,12.2,94.0)@0xA9B4013F itemType=0x00000010 animParts=37 texChanges=25 subPalettes=9 +live: spawn guid=0x50000001 name="+Je" setup=0x02000001 pos=(129.2,7.7,95.5)@0xA9B4013F itemType=0x00000010 animParts=34 texChanges=16 subPalettes=9 +live: spawn guid=0x7A9B4021 name="Shopkeeper Renald the Elder" setup=0x02000001 pos=(139.2,18.3,94.0)@0xA9B40141 itemType=0x00000010 animParts=35 texChanges=25 subPalettes=9 +live: spawn guid=0x8000032A name="Apprentice Alchemist" setup=0x0200004E pos=(139.6,8.1,97.0)@0xA9B4014D itemType=0x00000010 animParts=34 texChanges=23 subPalettes=8 +live: spawn guid=0x7A9B4015 name="Door" setup=0x020019FF pos=(132.6,17.1,94.1)@0xA9B40029 itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B4016 name="Door" setup=0x020019FF pos=(136.3,5.2,94.1)@0xA9B40029 itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B403B name="Agent of the Arcanum " setup=0x02000B8E pos=(150.5,17.9,94.0)@0xA9B40031 itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B4017 name="Door" setup=0x020019FF pos=(104.1,31.0,94.1)@0xA9B40154 itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B4018 name="Door" setup=0x020019FF pos=(110.9,31.0,94.1)@0xA9B40154 itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B4019 name="Door" setup=0x020019FF pos=(107.5,31.5,94.1)@0xA9B40155 itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B401A name="Door" setup=0x020019FF pos=(97.5,36.0,94.1)@0xA9B40022 itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B401B name="Door" setup=0x020019FF pos=(118.5,36.0,94.1)@0xA9B40022 itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B401C name="Door" setup=0x020019FF pos=(107.5,41.0,97.6)@0xA9B40022 itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B401D name="Chest" setup=0x0200007C pos=(75.8,38.4,94.0)@0xA9B4016A itemType=0x00000200 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B401E name="Door" setup=0x020019FF pos=(75.7,33.7,94.1)@0xA9B4001A itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B401F name="Door" setup=0x020019FF pos=(81.7,33.6,94.1)@0xA9B4001A itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B402B name="Fispur's Foodstuffs" setup=0x02000290 pos=(83.1,34.4,94.1)@0xA9B4001A itemType=0x00000080 animParts=1 texChanges=1 subPalettes=0 +live: spawn guid=0x7A9B4022 name="Barkeeper Wilomine" setup=0x0200004E pos=(108.8,34.9,94.0)@0xA9B40155 itemType=0x00000010 animParts=37 texChanges=23 subPalettes=9 +live: spawn guid=0x7A9B4024 name="Fispur Ansel the Grocer" setup=0x02000001 pos=(79.0,38.5,94.0)@0xA9B4016A itemType=0x00000010 animParts=36 texChanges=26 subPalettes=10 +live: animated=17 animReject: noCycle=4 fr0=13 1frame=0 partFrames=0 +live: summary recv=80 hydrated=24 drops: noPos=56 noSetup=0 setupMissing=0 noMesh=0 +live: spawn guid=0x7A9B402D name="Helm and Shield" setup=0x02000290 pos=(119.1,37.4,94.1)@0xA9B40022 itemType=0x00000080 animParts=1 texChanges=1 subPalettes=0 +live: spawn guid=0x7A9B403A name="Door" setup=0x020019FF pos=(155.4,15.9,94.1)@0xA9B40170 itemType=0x00000080 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B4041 name="Wedding Planner" setup=0x0200004E pos=(163.0,8.7,94.0)@0xA9B40172 itemType=0x00000010 animParts=34 texChanges=17 subPalettes=7 +live: spawn guid=0x7A9B404E name="Novedion the Gem Seller" setup=0x02000A0B pos=(124.8,31.5,94.0)@0xA9B4002A itemType=0x00000010 animParts=8 texChanges=8 subPalettes=1 +live: spawn guid=0x7A9B404F name="Life Stone" setup=0x020002EE pos=(81.3,11.8,94.0)@0xA9B40019 itemType=0x10000000 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B4050 name="Bind Stone" setup=0x020010AC pos=(145.0,41.5,94.0)@0xA9B40032 itemType=0x10000000 animParts=0 texChanges=0 subPalettes=1 +live: spawn guid=0x7A9B4051 name="Holtburg Meeting Hall Portal" setup=0x020001B3 pos=(159.2,39.0,95.9)@0xA9B4017A itemType=0x00010000 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B406E name="Renald the Eldest" setup=0x02000001 pos=(128.5,5.0,94.0)@0xA9B40029 itemType=0x00000010 animParts=37 texChanges=21 subPalettes=8 +live: spawn guid=0x7A9B4072 name="Aluvian Pathwarden Chest" setup=0x0200007C pos=(99.0,29.5,94.0)@0xA9B40022 itemType=0x00000200 animParts=0 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B46B1 name="Bottle" setup=0x02001257 pos=(108.3,39.5,94.0)@0xA9B40155 itemType=0x00000010 animParts=1 texChanges=0 subPalettes=0 +live: spawn guid=0x7A9B46A9 name="Contract Broker" setup=0x0200004E pos=(114.2,35.0,94.0)@0xA9B40162 itemType=0x00000010 animParts=41 texChanges=11 subPalettes=18 +live: spawn guid=0x7A9B46AA name="Gawain Cooper" setup=0x02000001 pos=(113.8,33.0,94.0)@0xA9B40162 itemType=0x00000010 animParts=34 texChanges=3 subPalettes=14 +live: spawn guid=0x7A9B46AE name="Royal Guard" setup=0x02000001 pos=(115.3,6.5,94.0)@0xA9B40021 itemType=0x00000010 animParts=44 texChanges=36 subPalettes=15 +live: spawn guid=0x7A9B46B0 name="Royal Guard" setup=0x02000001 pos=(176.7,106.4,65.3)@0xA9B4003D itemType=0x00000010 animParts=44 texChanges=36 subPalettes=15 +live: spawn guid=0x80000322 name="Cooking Forge" setup=0x0200124B pos=(91.5,37.7,94.0)@0xA9B4001A itemType=0x00000010 animParts=1 texChanges=0 subPalettes=0 +live: spawn guid=0x80000323 name="Lockpick Forge" setup=0x02001248 pos=(122.2,12.0,94.0)@0xA9B40029 itemType=0x00000010 animParts=1 texChanges=0 subPalettes=0 +live: spawn guid=0x80000325 name="Flinrala Ryndmad" setup=0x0200004E pos=(103.1,45.7,94.0)@0xA9B40169 itemType=0x00000010 animParts=35 texChanges=15 subPalettes=11 +live: spawn guid=0x80000328 name="Agent of the Arcanum" setup=0x02000001 pos=(163.2,5.8,94.0)@0xA9B40172 itemType=0x00000010 animParts=34 texChanges=15 subPalettes=7 +live: spawn guid=0x8000032E name="Worcer" setup=0x02000001 pos=(107.7,46.1,94.0)@0xA9B40169 itemType=0x00000010 animParts=35 texChanges=19 subPalettes=8 +live: spawn guid=0x80000332 name="Alfrin" setup=0x02000001 pos=(108.6,45.2,94.0)@0xA9B40169 itemType=0x00000010 animParts=34 texChanges=21 subPalettes=8 +live: animated=33 animReject: noCycle=5 fr0=16 1frame=1 partFrames=0 +live: summary recv=100 hydrated=44 drops: noPos=56 noSetup=0 setupMissing=0 noMesh=0 +live: spawn guid=0x80000336 name="Arcanum Refurbisher" setup=0x0200004E pos=(159.7,5.5,94.0)@0xA9B40172 itemType=0x00000010 animParts=34 texChanges=15 subPalettes=7 +live: spawn guid=0x8000033A name="Rand, Game Hunter" setup=0x02000001 pos=(154.6,36.2,96.0)@0xA9B40032 itemType=0x00000010 animParts=35 texChanges=9 subPalettes=19 +live: spawn guid=0x8000033B name="Paradox-touched Olthoi Spear" setup=0x02001713 pos=no-pos itemType=0x00000001 animParts=1 texChanges=2 subPalettes=1 +live: spawn guid=0x8000035B name="Exploration Marker" setup=0x0200187F pos=(112.2,46.4,94.0)@0xA9B40022 itemType=0x00000010 animParts=1 texChanges=2 subPalettes=1 +live: spawn guid=0x80000341 name="Tirenia" setup=0x0200004E pos=(101.9,20.4,94.0)@0xA9B40021 itemType=0x00000010 animParts=35 texChanges=20 subPalettes=8 +live: spawn guid=0x80000344 name="Alcott" setup=0x02000001 pos=(83.3,14.0,94.0)@0xA9B40019 itemType=0x00000010 animParts=44 texChanges=33 subPalettes=14 +live: spawn guid=0x8000034A name="Pathwarden Thorolf" setup=0x02000001 pos=(97.0,27.0,94.0)@0xA9B40022 itemType=0x00000010 animParts=44 texChanges=33 subPalettes=14 +live: spawn guid=0x80000350 name="Buckminster" setup=0x02000001 pos=(104.4,35.2,94.0)@0xA9B40163 itemType=0x00000010 animParts=44 texChanges=33 subPalettes=14 +live: spawn guid=0x8000035C name="Sean the Speedy" setup=0x02000001 pos=(114.6,46.4,94.0)@0xA9B40022 itemType=0x00000010 animParts=38 texChanges=23 subPalettes=10 +live: spawn guid=0x80000296 name="Town Crier" setup=0x02000001 pos=(29.3,173.7,93.1)@0xA9B30010 itemType=0x00000010 animParts=45 texChanges=31 subPalettes=12 +live: spawn guid=0x8000029F name="Drudge Slinker" setup=0x020007DD pos=(143.8,95.5,113.9)@0xA9B3002C itemType=0x00000010 animParts=2 texChanges=2 subPalettes=1 +live: spawn guid=0x800002A1 name="Simi" setup=0x0200013F pos=no-pos itemType=0x00000001 animParts=1 texChanges=3 subPalettes=1 +live: auto-entry ? applied server skills run=498 jump=453 +physics: player step heights ? StepUp=0.600 m (Setup.StepUpHeight=0.600), StepDown=1.500 m (Setup.StepDownHeight=1.500) +[cell-transit] 0x00000000 -> 0xA9B4014B pos=(127.994,8.241,96.764) reason=teleport +live: auto-entered player mode for 0x5000000A +[cell-cache] envCellId=0xA5B00100 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(1.85,-0.72,1.58) r=9.18 portalCount=3 visibleCells=6 cellBspRoot=ok worldOrigin=(-708.00,-612.00,42.02) +[cell-cache] envCellId=0xA5B00101 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.01,5.99,1.25) r=2.01 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(-708.00,-612.00,42.02) +[cell-cache] envCellId=0xA5B00102 physicsPolyCount=17 resolvedCount=17 bspTotalLeafPolys=17 bspUnmatchedIds=0 bsphere=(1.28,0.38,6.54) r=8.97 portalCount=3 visibleCells=6 cellBspRoot=ok worldOrigin=(-708.00,-612.00,42.02) +[cell-cache] envCellId=0xA5B00103 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.01,5.98,7.52) r=1.20 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(-708.00,-612.00,42.02) +[cell-cache] envCellId=0xA5B00104 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.01,-5.98,7.52) r=1.20 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(-708.00,-612.00,42.02) +[cell-cache] envCellId=0xA5B00105 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.01,-5.99,1.26) r=2.01 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(-708.00,-612.00,42.02) +[cell-cache] envCellId=0xA5B00106 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.93,0.29,3.02) r=4.43 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(-708.00,-612.00,42.02) +[cell-cache] envCellId=0xA5B40100 physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(-2.06,-2.09,2.55) r=7.34 portalCount=4 visibleCells=6 cellBspRoot=ok worldOrigin=(-634.61,62.15,52.02) +[cell-cache] envCellId=0xA5B40101 physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(-0.74,-0.34,4.24) r=5.60 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(-634.61,62.15,52.02) +[cell-cache] envCellId=0xA5B40102 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-0.03,-0.66,1.74) r=1.33 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(-634.61,62.15,52.02) +[cell-cache] envCellId=0xA5B40103 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(1.25,4.43,4.08) r=5.69 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(-634.61,62.15,52.02) +[cell-cache] envCellId=0xA5B40104 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-1.58,0.95,1.25) r=1.59 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(-634.61,62.15,52.02) +[cell-cache] envCellId=0xA5B40105 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(-2.00,1.93,3.13) r=6.60 portalCount=4 visibleCells=6 cellBspRoot=ok worldOrigin=(-634.61,62.15,52.02) +[cell-cache] envCellId=0xA5B40106 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(2.72,0.29,1.29) r=8.49 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(-634.61,62.15,52.02) +[cell-cache] envCellId=0xA5B40107 physicsPolyCount=31 resolvedCount=31 bspTotalLeafPolys=31 bspUnmatchedIds=0 bsphere=(-0.05,0.23,2.72) r=6.96 portalCount=4 visibleCells=4 cellBspRoot=ok worldOrigin=(-592.44,81.47,46.02) +[cell-cache] envCellId=0xA5B40108 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.04,0.26,3.54) r=7.06 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(-592.44,81.47,46.02) +[cell-cache] envCellId=0xA5B40109 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.40,-5.10,1.40) r=1.96 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-592.44,81.47,46.02) +[cell-cache] envCellId=0xA5B4010A physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-4.21,-2.59,1.85) r=1.23 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-592.44,81.47,46.02) +[cell-cache] envCellId=0xA5B4010B physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.20,-1.17,1.23) r=1.71 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-592.44,81.47,46.02) +[cell-cache] envCellId=0xA5B4010C physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-6.14,-0.38,4.76) r=1.07 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(-591.11,60.19,46.02) +[cell-cache] envCellId=0xA5B4010D physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-2.85,-5.40,1.75) r=0.97 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(-591.11,60.19,46.02) +[cell-cache] envCellId=0xA5B4010E physicsPolyCount=19 resolvedCount=19 bspTotalLeafPolys=19 bspUnmatchedIds=0 bsphere=(0.32,-0.71,1.07) r=8.19 portalCount=5 visibleCells=7 cellBspRoot=ok worldOrigin=(-591.11,60.19,46.02) +[cell-cache] envCellId=0xA5B4010F physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(3.45,-5.40,1.75) r=0.97 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(-591.11,60.19,46.02) +[cell-cache] envCellId=0xA5B40110 physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(0.00,-0.30,3.00) r=7.49 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(-591.11,60.19,46.02) +[cell-cache] envCellId=0xA5B40111 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-6.17,2.08,1.24) r=1.56 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(-591.11,60.19,46.02) +[cell-cache] envCellId=0xA5B40112 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.37,-5.62,1.24) r=1.56 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(-591.11,60.19,46.02) +[cell-cache] envCellId=0xA5B40113 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-5.48,-0.50,2.89) r=2.83 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(-591.11,60.19,46.02) +[cell-cache] envCellId=0xA5B40114 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(0.00,-1.50,0.85) r=1.94 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-593.30,125.84,46.02) +[cell-cache] envCellId=0xA5B40115 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-0.02,-2.03,1.24) r=1.63 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-593.30,125.84,46.02) +[cell-cache] envCellId=0xA5B40116 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(0.09,0.74,0.35) r=4.65 portalCount=3 visibleCells=4 cellBspRoot=ok worldOrigin=(-593.30,125.84,46.02) +[cell-cache] envCellId=0xA5B40117 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(2.46,-1.40,-0.02) r=1.95 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(-593.30,125.84,46.02) +[cell-cache] envCellId=0xA5B40118 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(-2.46,-1.18,0.65) r=2.39 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(-593.30,125.84,46.02) +[cell-cache] envCellId=0xA5B40119 physicsPolyCount=26 resolvedCount=26 bspTotalLeafPolys=26 bspUnmatchedIds=0 bsphere=(0.00,0.00,7.40) r=9.32 portalCount=3 visibleCells=3 cellBspRoot=ok worldOrigin=(-684.00,84.00,76.02) +[cell-cache] envCellId=0xA5B4011A physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(2.65,-4.18,9.91) r=1.98 portalCount=2 visibleCells=3 cellBspRoot=ok worldOrigin=(-684.00,84.00,76.02) +[cell-cache] envCellId=0xA5B4011B physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.42,-4.38,1.13) r=2.03 portalCount=2 visibleCells=3 cellBspRoot=ok worldOrigin=(-684.00,84.00,76.02) +[cell-cache] envCellId=0xA5B4011C physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.93,1.29,14.95) r=4.43 portalCount=2 visibleCells=3 cellBspRoot=ok worldOrigin=(-684.00,84.00,76.02) +[cell-cache] envCellId=0xA7B30100 physicsPolyCount=9 resolvedCount=9 bspTotalLeafPolys=9 bspUnmatchedIds=0 bsphere=(0.10,12.28,-4.86) r=9.40 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(-281.80,-56.73,30.02) +[cell-cache] envCellId=0xA7B30101 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-1.34,1.95,-2.64) r=5.87 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-281.80,-56.73,30.02) +[cell-cache] envCellId=0xA7B30102 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.09,1.16,0.05) r=3.56 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-281.80,-56.73,30.02) +[cell-cache] envCellId=0xA7B30103 physicsPolyCount=30 resolvedCount=30 bspTotalLeafPolys=30 bspUnmatchedIds=0 bsphere=(0.83,-0.07,0.43) r=5.18 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-281.80,-56.73,30.02) +[cell-cache] envCellId=0xA7B30104 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.00,-3.47,1.48) r=1.85 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-281.80,-56.73,30.02) +[cell-cache] envCellId=0xA7B40100 physicsPolyCount=31 resolvedCount=31 bspTotalLeafPolys=31 bspUnmatchedIds=0 bsphere=(-0.05,0.23,2.72) r=6.96 portalCount=4 visibleCells=4 cellBspRoot=ok worldOrigin=(-250.11,84.57,28.02) +[cell-cache] envCellId=0xA7B40101 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.04,0.26,3.54) r=7.06 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(-250.11,84.57,28.02) +[cell-cache] envCellId=0xA7B40102 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.40,-5.10,1.40) r=1.96 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-250.11,84.57,28.02) +[cell-cache] envCellId=0xA7B40103 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-4.21,-2.59,1.85) r=1.23 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-250.11,84.57,28.02) +[cell-cache] envCellId=0xA7B40104 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.20,-1.17,1.23) r=1.71 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-250.11,84.57,28.02) +[cell-cache] envCellId=0xA8B00100 physicsPolyCount=26 resolvedCount=26 bspTotalLeafPolys=26 bspUnmatchedIds=0 bsphere=(0.00,0.00,7.40) r=9.32 portalCount=3 visibleCells=3 cellBspRoot=ok worldOrigin=(-36.00,-660.00,74.02) +[cell-cache] envCellId=0xA8B00101 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(2.65,-4.18,9.91) r=1.98 portalCount=2 visibleCells=3 cellBspRoot=ok worldOrigin=(-36.00,-660.00,74.02) +[cell-cache] envCellId=0xA8B00102 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.42,-4.38,1.13) r=2.03 portalCount=2 visibleCells=3 cellBspRoot=ok worldOrigin=(-36.00,-660.00,74.02) +[cell-cache] envCellId=0xA8B00103 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.93,1.29,14.95) r=4.43 portalCount=2 visibleCells=3 cellBspRoot=ok worldOrigin=(-36.00,-660.00,74.02) +[cell-cache] envCellId=0xA8B20100 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(0.00,-1.50,0.85) r=1.94 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-156.00,-300.00,36.02) +[cell-cache] envCellId=0xA8B20101 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-0.02,-2.03,1.24) r=1.63 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(-156.00,-300.00,36.02) +[cell-cache] envCellId=0xA8B20102 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(0.09,0.74,0.35) r=4.65 portalCount=3 visibleCells=4 cellBspRoot=ok worldOrigin=(-156.00,-300.00,36.02) +[cell-cache] envCellId=0xA8B20103 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(2.46,-1.40,-0.02) r=1.95 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(-156.00,-300.00,36.02) +[cell-cache] envCellId=0xA8B20104 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(-2.46,-1.18,0.65) r=2.39 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(-156.00,-300.00,36.02) +[cell-cache] envCellId=0xA9B00100 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-6.14,-0.38,4.76) r=1.07 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(36.00,-612.00,58.02) +[cell-cache] envCellId=0xA9B00101 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-2.85,-5.40,1.75) r=0.97 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(36.00,-612.00,58.02) +[cell-cache] envCellId=0xA9B00102 physicsPolyCount=19 resolvedCount=19 bspTotalLeafPolys=19 bspUnmatchedIds=0 bsphere=(0.32,-0.71,1.07) r=8.19 portalCount=5 visibleCells=7 cellBspRoot=ok worldOrigin=(36.00,-612.00,58.02) +[cell-cache] envCellId=0xA9B00103 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(3.45,-5.40,1.75) r=0.97 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(36.00,-612.00,58.02) +[cell-cache] envCellId=0xA9B00104 physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(0.00,-0.30,3.00) r=7.49 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(36.00,-612.00,58.02) +[cell-cache] envCellId=0xA9B00105 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-6.17,2.08,1.24) r=1.56 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(36.00,-612.00,58.02) +[cell-cache] envCellId=0xA9B00106 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.37,-5.62,1.24) r=1.56 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(36.00,-612.00,58.02) +[cell-cache] envCellId=0xA9B00107 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-5.48,-0.50,2.89) r=2.83 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(36.00,-612.00,58.02) +[cell-cache] envCellId=0xA9B00108 physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(-2.06,-2.09,2.55) r=7.34 portalCount=4 visibleCells=6 cellBspRoot=ok worldOrigin=(36.00,-660.00,64.02) +[cell-cache] envCellId=0xA9B00109 physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(-0.74,-0.34,4.24) r=5.60 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(36.00,-660.00,64.02) +[cell-cache] envCellId=0xA9B0010A physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-0.03,-0.66,1.74) r=1.33 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(36.00,-660.00,64.02) +[cell-cache] envCellId=0xA9B0010B physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(1.25,4.43,4.08) r=5.69 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(36.00,-660.00,64.02) +[cell-cache] envCellId=0xA9B0010C physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-1.58,0.95,1.25) r=1.59 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(36.00,-660.00,64.02) +[cell-cache] envCellId=0xA9B0010D physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(-2.00,1.93,3.13) r=6.60 portalCount=4 visibleCells=6 cellBspRoot=ok worldOrigin=(36.00,-660.00,64.02) +[cell-cache] envCellId=0xA9B0010E physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(2.72,0.29,1.29) r=8.49 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(36.00,-660.00,64.02) +[cell-cache] envCellId=0xA9B0010F physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(0.00,-1.50,0.85) r=1.94 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(10.23,-617.66,58.02) +[cell-cache] envCellId=0xA9B00110 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-0.02,-2.03,1.24) r=1.63 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(10.23,-617.66,58.02) +[cell-cache] envCellId=0xA9B00111 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(0.09,0.74,0.35) r=4.65 portalCount=3 visibleCells=4 cellBspRoot=ok worldOrigin=(10.23,-617.66,58.02) +[cell-cache] envCellId=0xA9B00112 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(2.46,-1.40,-0.02) r=1.95 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(10.23,-617.66,58.02) +[cell-cache] envCellId=0xA9B00113 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(-2.46,-1.18,0.65) r=2.39 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(10.23,-617.66,58.02) +[cell-cache] envCellId=0xA9B20102 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.62,-3.85,1.08) r=2.01 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20103 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.88,3.85,1.08) r=2.01 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20104 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.68,-0.40,1.11) r=1.98 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20105 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(6.57,-0.12,0.44) r=5.59 portalCount=4 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20106 physicsPolyCount=26 resolvedCount=26 bspTotalLeafPolys=26 bspUnmatchedIds=0 bsphere=(0.02,0.35,1.46) r=5.37 portalCount=3 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20107 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(9.15,2.14,3.14) r=2.67 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20108 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(9.81,0.10,2.65) r=5.31 portalCount=3 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20109 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(8.89,-0.23,4.07) r=6.30 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B2010A physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(9.25,4.50,1.66) r=2.15 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B2010B physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(7.49,6.57,1.12) r=5.33 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B2010C physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(8.89,-3.44,1.55) r=1.88 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B2010D physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,2.50,1.49) r=4.07 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B2010E physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(0.00,-2.50,1.49) r=4.07 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B2010F physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-4.82,-0.40,4.61) r=1.98 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20110 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.00,2.00,3.50) r=4.23 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20111 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.00,-2.25,3.50) r=4.21 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20112 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.68,-0.40,4.61) r=1.98 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20113 physicsPolyCount=23 resolvedCount=23 bspTotalLeafPolys=23 bspUnmatchedIds=0 bsphere=(-0.23,5.94,4.93) r=8.23 portalCount=6 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20114 physicsPolyCount=22 resolvedCount=22 bspTotalLeafPolys=22 bspUnmatchedIds=0 bsphere=(-0.05,-6.09,3.89) r=6.99 portalCount=5 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20115 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.36,10.52,1.41) r=2.00 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20116 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.02,-9.97,1.26) r=1.67 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20117 physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(-0.38,0.11,4.59) r=6.59 portalCount=4 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20118 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-4.99,3.01,1.69) r=2.25 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B20119 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-4.99,-5.50,1.56) r=3.43 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B2011A physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-6.08,-2.10,2.83) r=7.18 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(84.00,-300.00,94.02) +[cell-cache] envCellId=0xA9B30100 physicsPolyCount=9 resolvedCount=9 bspTotalLeafPolys=9 bspUnmatchedIds=0 bsphere=(1.87,-0.09,0.32) r=5.49 portalCount=4 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B30101 physicsPolyCount=12 resolvedCount=12 bspTotalLeafPolys=12 bspUnmatchedIds=0 bsphere=(3.63,-4.76,1.07) r=2.69 portalCount=1 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B30102 physicsPolyCount=12 resolvedCount=12 bspTotalLeafPolys=12 bspUnmatchedIds=0 bsphere=(4.09,2.39,0.58) r=4.01 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B30103 physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(-1.23,-0.50,0.24) r=6.80 portalCount=3 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B30104 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.49,-1.06,1.10) r=1.96 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B30105 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.15,-6.37,1.08) r=2.02 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B30106 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(2.00,-3.88,4.25) r=1.55 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B30107 physicsPolyCount=16 resolvedCount=16 bspTotalLeafPolys=16 bspUnmatchedIds=0 bsphere=(-1.13,-3.92,4.99) r=5.37 portalCount=3 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B30108 physicsPolyCount=9 resolvedCount=9 bspTotalLeafPolys=9 bspUnmatchedIds=0 bsphere=(3.90,2.50,4.25) r=3.37 portalCount=5 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B30109 physicsPolyCount=3 resolvedCount=3 bspTotalLeafPolys=3 bspUnmatchedIds=0 bsphere=(3.51,1.84,6.49) r=4.00 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B3010A physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(-1.24,2.39,5.16) r=4.67 portalCount=4 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B3010B physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(1.38,-0.22,4.14) r=1.83 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B3010C physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-1.26,-6.36,4.73) r=1.19 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B3010D physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(6.20,1.50,4.75) r=0.93 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B3010E physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(6.20,3.50,4.75) r=0.93 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B3010F physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-3.80,2.40,3.00) r=2.55 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B30110 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(3.32,0.05,4.25) r=1.55 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(180.00,-108.00,116.02) +[cell-cache] envCellId=0xA9B40100 physicsPolyCount=25 resolvedCount=25 bspTotalLeafPolys=25 bspUnmatchedIds=0 bsphere=(1.79,4.26,3.06) r=8.75 portalCount=6 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B40101 physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(0.18,-5.73,4.30) r=7.39 portalCount=5 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B40102 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-4.51,5.00,1.40) r=2.59 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B40103 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(4.99,5.00,1.76) r=2.67 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B40104 physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(-0.69,-5.50,0.27) r=7.08 portalCount=5 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B40105 physicsPolyCount=9 resolvedCount=9 bspTotalLeafPolys=9 bspUnmatchedIds=0 bsphere=(-6.39,-4.40,4.58) r=5.34 portalCount=3 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B40106 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-8.94,-4.48,5.15) r=1.05 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B40107 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-7.32,-4.78,1.55) r=1.43 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B40108 physicsPolyCount=9 resolvedCount=9 bspTotalLeafPolys=9 bspUnmatchedIds=0 bsphere=(-6.66,-4.71,2.41) r=5.32 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B40109 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-1.68,-10.71,5.13) r=1.10 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B4010A physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(1.07,-10.71,5.13) r=1.10 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B4010B physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.02,-10.97,1.26) r=1.67 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B4010C physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(2.04,-3.72,3.23) r=3.61 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B4010D physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(3.68,-9.95,1.11) r=1.98 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B4010E physicsPolyCount=7 resolvedCount=7 bspTotalLeafPolys=7 bspUnmatchedIds=0 bsphere=(4.86,-5.73,1.74) r=6.62 portalCount=1 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B4010F physicsPolyCount=2 resolvedCount=2 bspTotalLeafPolys=2 bspUnmatchedIds=0 bsphere=(-3.05,-4.50,6.47) r=3.67 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B40110 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.40,-0.18,1.11) r=1.98 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(84.09,131.54,66.02) +[cell-cache] envCellId=0xA9B40111 physicsPolyCount=31 resolvedCount=31 bspTotalLeafPolys=31 bspUnmatchedIds=0 bsphere=(-0.05,0.23,2.72) r=6.96 portalCount=4 visibleCells=4 cellBspRoot=ok worldOrigin=(31.50,159.50,66.02) +[cell-cache] envCellId=0xA9B40112 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.04,0.26,3.54) r=7.06 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(31.50,159.50,66.02) +[cell-cache] envCellId=0xA9B40113 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.40,-5.10,1.40) r=1.96 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(31.50,159.50,66.02) +[cell-cache] envCellId=0xA9B40114 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-4.21,-2.59,1.85) r=1.23 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(31.50,159.50,66.02) +[cell-cache] envCellId=0xA9B40115 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.20,-1.17,1.23) r=1.71 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(31.50,159.50,66.02) +[cell-cache] envCellId=0xA9B40116 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.35,-4.21,1.72) r=1.06 portalCount=2 visibleCells=8 cellBspRoot=ok worldOrigin=(154.06,132.70,66.02) +[cell-cache] envCellId=0xA9B40117 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(0.65,-1.64,1.01) r=9.05 portalCount=4 visibleCells=8 cellBspRoot=ok worldOrigin=(154.06,132.70,66.02) +[cell-cache] envCellId=0xA9B40118 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-3.15,-4.40,1.25) r=1.60 portalCount=2 visibleCells=8 cellBspRoot=ok worldOrigin=(154.06,132.70,66.02) +[cell-cache] envCellId=0xA9B40119 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(3.15,4.70,1.25) r=1.59 portalCount=2 visibleCells=8 cellBspRoot=ok worldOrigin=(154.06,132.70,66.02) +[cell-cache] envCellId=0xA9B4011A physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-5.48,-0.50,5.89) r=2.83 portalCount=2 visibleCells=8 cellBspRoot=ok worldOrigin=(154.06,132.70,66.02) +[cell-cache] envCellId=0xA9B4011B physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(-0.38,-0.84,5.26) r=8.45 portalCount=3 visibleCells=8 cellBspRoot=ok worldOrigin=(154.06,132.70,66.02) +[cell-cache] envCellId=0xA9B4011C physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.67,-1.73,6.18) r=8.96 portalCount=1 visibleCells=8 cellBspRoot=ok worldOrigin=(154.06,132.70,66.02) +[cell-cache] envCellId=0xA9B4011D physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.05,-5.40,4.75) r=1.41 portalCount=2 visibleCells=8 cellBspRoot=ok worldOrigin=(154.06,132.70,66.02) +[cell-cache] envCellId=0xA9B4011E physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.20,3.75,3.00) r=2.55 portalCount=2 visibleCells=8 cellBspRoot=ok worldOrigin=(154.06,132.70,66.02) +[cell-cache] envCellId=0xA9B4011F physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-6.14,-0.38,4.76) r=1.07 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(104.50,135.50,66.02) +[cell-cache] envCellId=0xA9B40120 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-2.85,-5.40,1.75) r=0.97 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(104.50,135.50,66.02) +[cell-cache] envCellId=0xA9B40121 physicsPolyCount=19 resolvedCount=19 bspTotalLeafPolys=19 bspUnmatchedIds=0 bsphere=(0.32,-0.71,1.07) r=8.19 portalCount=5 visibleCells=7 cellBspRoot=ok worldOrigin=(104.50,135.50,66.02) +[cell-cache] envCellId=0xA9B40122 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(3.45,-5.40,1.75) r=0.97 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(104.50,135.50,66.02) +[cell-cache] envCellId=0xA9B40123 physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(0.00,-0.30,3.00) r=7.49 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(104.50,135.50,66.02) +[cell-cache] envCellId=0xA9B40124 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-6.17,2.08,1.24) r=1.56 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(104.50,135.50,66.02) +[cell-cache] envCellId=0xA9B40125 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.37,-5.62,1.24) r=1.56 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(104.50,135.50,66.02) +[cell-cache] envCellId=0xA9B40126 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-5.48,-0.50,2.89) r=2.83 portalCount=2 visibleCells=7 cellBspRoot=ok worldOrigin=(104.50,135.50,66.02) +[cell-cache] envCellId=0xA9B40127 physicsPolyCount=9 resolvedCount=9 bspTotalLeafPolys=9 bspUnmatchedIds=0 bsphere=(1.87,-0.09,0.32) r=5.49 portalCount=4 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B40128 physicsPolyCount=12 resolvedCount=12 bspTotalLeafPolys=12 bspUnmatchedIds=0 bsphere=(3.63,-4.76,1.07) r=2.69 portalCount=1 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B40129 physicsPolyCount=12 resolvedCount=12 bspTotalLeafPolys=12 bspUnmatchedIds=0 bsphere=(4.09,2.39,0.58) r=4.01 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B4012A physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(-1.23,-0.50,0.24) r=6.80 portalCount=3 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B4012B physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.49,-1.06,1.10) r=1.96 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B4012C physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.15,-6.37,1.08) r=2.02 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B4012D physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(2.00,-3.88,4.25) r=1.55 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B4012E physicsPolyCount=16 resolvedCount=16 bspTotalLeafPolys=16 bspUnmatchedIds=0 bsphere=(-1.13,-3.92,4.99) r=5.37 portalCount=3 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B4012F physicsPolyCount=9 resolvedCount=9 bspTotalLeafPolys=9 bspUnmatchedIds=0 bsphere=(3.90,2.50,4.25) r=3.37 portalCount=5 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B40130 physicsPolyCount=3 resolvedCount=3 bspTotalLeafPolys=3 bspUnmatchedIds=0 bsphere=(3.51,1.84,6.49) r=4.00 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B40131 physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(-1.24,2.39,5.16) r=4.67 portalCount=4 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B40132 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(1.38,-0.22,4.14) r=1.83 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B40133 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-1.26,-6.36,4.73) r=1.19 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B40134 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(6.20,1.50,4.75) r=0.93 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B40135 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(6.20,3.50,4.75) r=0.93 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B40136 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-3.80,2.40,3.00) r=2.55 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B40137 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(3.32,0.05,4.25) r=1.55 portalCount=2 visibleCells=16 cellBspRoot=ok worldOrigin=(57.50,133.50,66.02) +[cell-cache] envCellId=0xA9B40138 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(1.85,-0.72,1.58) r=9.18 portalCount=3 visibleCells=6 cellBspRoot=ok worldOrigin=(132.50,154.00,66.02) +[cell-cache] envCellId=0xA9B40139 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.01,5.99,1.25) r=2.01 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(132.50,154.00,66.02) +[cell-cache] envCellId=0xA9B4013A physicsPolyCount=17 resolvedCount=17 bspTotalLeafPolys=17 bspUnmatchedIds=0 bsphere=(1.28,0.38,6.54) r=8.97 portalCount=3 visibleCells=6 cellBspRoot=ok worldOrigin=(132.50,154.00,66.02) +[cell-cache] envCellId=0xA9B4013B physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.01,5.98,7.52) r=1.20 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(132.50,154.00,66.02) +[cell-cache] envCellId=0xA9B4013C physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.01,-5.98,7.52) r=1.20 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(132.50,154.00,66.02) +[cell-cache] envCellId=0xA9B4013D physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.01,-5.99,1.26) r=2.01 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(132.50,154.00,66.02) +[cell-cache] envCellId=0xA9B4013E physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.93,0.29,3.02) r=4.43 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(132.50,154.00,66.02) +[cell-cache] envCellId=0xA9B4013F physicsPolyCount=32 resolvedCount=32 bspTotalLeafPolys=32 bspUnmatchedIds=0 bsphere=(0.01,-0.19,0.19) r=8.11 portalCount=5 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B40140 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-6.06,-3.55,2.23) r=1.71 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B40141 physicsPolyCount=20 resolvedCount=20 bspTotalLeafPolys=20 bspUnmatchedIds=0 bsphere=(-8.47,-4.72,2.33) r=4.77 portalCount=3 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B40142 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(-8.84,-1.63,1.25) r=3.20 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B40143 physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(-10.31,2.66,1.23) r=6.63 portalCount=4 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B40144 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-6.00,1.03,1.25) r=2.93 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B40145 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-6.00,6.35,1.25) r=1.59 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B40146 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-10.22,5.25,-0.00) r=2.83 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B40147 physicsPolyCount=37 resolvedCount=37 bspTotalLeafPolys=37 bspUnmatchedIds=0 bsphere=(-9.52,6.98,-0.98) r=9.60 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B40148 physicsPolyCount=39 resolvedCount=39 bspTotalLeafPolys=39 bspUnmatchedIds=0 bsphere=(-2.42,6.13,-0.63) r=8.46 portalCount=3 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B40149 physicsPolyCount=17 resolvedCount=17 bspTotalLeafPolys=17 bspUnmatchedIds=0 bsphere=(2.80,6.00,-2.10) r=4.51 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B4014A physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(2.37,3.03,2.80) r=2.85 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B4014B physicsPolyCount=9 resolvedCount=9 bspTotalLeafPolys=9 bspUnmatchedIds=0 bsphere=(-1.13,1.42,6.42) r=10.39 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B4014C physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.86,-5.09,1.77) r=1.08 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B4014D physicsPolyCount=10 resolvedCount=10 bspTotalLeafPolys=10 bspUnmatchedIds=0 bsphere=(-9.02,-0.00,3.41) r=9.02 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B4014E physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-8.88,7.63,4.76) r=1.00 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B4014F physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-8.90,-7.42,0.94) r=2.34 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B40150 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-2.03,-5.56,1.23) r=1.70 portalCount=2 visibleCells=17 cellBspRoot=ok worldOrigin=(130.50,11.50,94.02) +[cell-cache] envCellId=0xA9B40151 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.62,-3.85,1.08) r=2.01 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40152 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.88,3.85,1.08) r=2.01 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40153 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.68,-0.40,1.11) r=1.98 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40154 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(6.57,-0.12,0.44) r=5.59 portalCount=4 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40155 physicsPolyCount=26 resolvedCount=26 bspTotalLeafPolys=26 bspUnmatchedIds=0 bsphere=(0.02,0.35,1.46) r=5.37 portalCount=3 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40156 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(9.15,2.14,3.14) r=2.67 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40157 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(9.81,0.10,2.65) r=5.31 portalCount=3 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40158 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(8.89,-0.23,4.07) r=6.30 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40159 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(9.25,4.50,1.66) r=2.15 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B4015A physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(7.49,6.57,1.12) r=5.33 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B4015B physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(8.89,-3.44,1.55) r=1.88 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B4015C physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,2.50,1.49) r=4.07 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B4015D physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(0.00,-2.50,1.49) r=4.07 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B4015E physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-4.82,-0.40,4.61) r=1.98 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B4015F physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.00,2.00,3.50) r=4.23 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40160 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.00,-2.25,3.50) r=4.21 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40161 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.68,-0.40,4.61) r=1.98 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40162 physicsPolyCount=23 resolvedCount=23 bspTotalLeafPolys=23 bspUnmatchedIds=0 bsphere=(-0.23,5.94,4.93) r=8.23 portalCount=6 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40163 physicsPolyCount=22 resolvedCount=22 bspTotalLeafPolys=22 bspUnmatchedIds=0 bsphere=(-0.05,-6.09,3.89) r=6.99 portalCount=5 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40164 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.36,10.52,1.41) r=2.00 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40165 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.02,-9.97,1.26) r=1.67 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40166 physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(-0.38,0.11,4.59) r=6.59 portalCount=4 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40167 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-4.99,3.01,1.69) r=2.25 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40168 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-4.99,-5.50,1.56) r=3.43 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B40169 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-6.08,-2.10,2.83) r=7.18 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(107.50,36.00,94.02) +[cell-cache] envCellId=0xA9B4016A physicsPolyCount=31 resolvedCount=31 bspTotalLeafPolys=31 bspUnmatchedIds=0 bsphere=(-0.05,0.23,2.72) r=6.96 portalCount=4 visibleCells=4 cellBspRoot=ok worldOrigin=(79.50,37.50,94.02) +[cell-cache] envCellId=0xA9B4016B physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.04,0.26,3.54) r=7.06 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(79.50,37.50,94.02) +[cell-cache] envCellId=0xA9B4016C physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.40,-5.10,1.40) r=1.96 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(79.50,37.50,94.02) +[cell-cache] envCellId=0xA9B4016D physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-4.21,-2.59,1.85) r=1.23 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(79.50,37.50,94.02) +[cell-cache] envCellId=0xA9B4016E physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.20,-1.17,1.23) r=1.71 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(79.50,37.50,94.02) +[cell-cache] envCellId=0xA9B4016F physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-3.24,-0.11,2.27) r=1.64 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(161.93,7.50,94.02) +[cell-cache] envCellId=0xA9B40170 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(6.10,-8.12,1.39) r=2.01 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(161.93,7.50,94.02) +[cell-cache] envCellId=0xA9B40171 physicsPolyCount=54 resolvedCount=54 bspTotalLeafPolys=54 bspUnmatchedIds=0 bsphere=(6.55,-3.25,4.60) r=6.83 portalCount=3 visibleCells=6 cellBspRoot=ok worldOrigin=(161.93,7.50,94.02) +[cell-cache] envCellId=0xA9B40172 physicsPolyCount=27 resolvedCount=27 bspTotalLeafPolys=27 bspUnmatchedIds=0 bsphere=(0.05,0.45,3.44) r=6.33 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(161.93,7.50,94.02) +[cell-cache] envCellId=0xA9B40173 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.00,-0.90,1.25) r=1.58 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(161.93,7.50,94.02) +[cell-cache] envCellId=0xA9B40174 physicsPolyCount=7 resolvedCount=7 bspTotalLeafPolys=7 bspUnmatchedIds=0 bsphere=(3.32,0.05,-3.59) r=7.41 portalCount=1 visibleCells=6 cellBspRoot=ok worldOrigin=(161.93,7.50,94.02) +[cell-cache] envCellId=0xA9B40175 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(8.57,-0.95,-0.00) r=2.66 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(161.93,7.50,94.02) +[cell-cache] envCellId=0xA9B40176 physicsPolyCount=9 resolvedCount=9 bspTotalLeafPolys=9 bspUnmatchedIds=0 bsphere=(1.64,11.20,-4.61) r=10.28 portalCount=1 visibleCells=2 cellBspRoot=ok worldOrigin=(65.21,156.63,66.02) +[cell-cache] envCellId=0xA9B40177 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(-0.19,0.83,-1.63) r=5.35 portalCount=3 visibleCells=2 cellBspRoot=ok worldOrigin=(65.21,156.63,66.02) +[cell-cache] envCellId=0xA9B40178 physicsPolyCount=3 resolvedCount=3 bspTotalLeafPolys=3 bspUnmatchedIds=0 bsphere=(0.90,1.00,2.57) r=5.28 portalCount=2 visibleCells=2 cellBspRoot=ok worldOrigin=(65.21,156.63,66.02) +[cell-cache] envCellId=0xA9B40179 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.52,-2.01,3.63) r=2.45 portalCount=2 visibleCells=1 cellBspRoot=ok worldOrigin=(158.18,37.71,94.02) +[cell-cache] envCellId=0xA9B4017A physicsPolyCount=10 resolvedCount=10 bspTotalLeafPolys=10 bspUnmatchedIds=0 bsphere=(0.01,1.71,4.08) r=7.66 portalCount=1 visibleCells=1 cellBspRoot=ok worldOrigin=(158.18,37.71,94.02) +[cell-cache] envCellId=0xAAB30100 physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(-2.06,-2.09,2.55) r=7.34 portalCount=4 visibleCells=6 cellBspRoot=ok worldOrigin=(228.00,-108.00,116.02) +[cell-cache] envCellId=0xAAB30101 physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(-0.74,-0.34,4.24) r=5.60 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(228.00,-108.00,116.02) +[cell-cache] envCellId=0xAAB30102 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-0.03,-0.66,1.74) r=1.33 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(228.00,-108.00,116.02) +[cell-cache] envCellId=0xAAB30103 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(1.25,4.43,4.08) r=5.69 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(228.00,-108.00,116.02) +[cell-cache] envCellId=0xAAB30104 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-1.58,0.95,1.25) r=1.59 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(228.00,-108.00,116.02) +[cell-cache] envCellId=0xAAB30105 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(-2.00,1.93,3.13) r=6.60 portalCount=4 visibleCells=6 cellBspRoot=ok worldOrigin=(228.00,-108.00,116.02) +[cell-cache] envCellId=0xAAB30106 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(2.72,0.29,1.29) r=8.49 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(228.00,-108.00,116.02) +[cell-cache] envCellId=0xAAB30107 physicsPolyCount=26 resolvedCount=26 bspTotalLeafPolys=26 bspUnmatchedIds=0 bsphere=(0.00,0.00,7.40) r=9.32 portalCount=3 visibleCells=3 cellBspRoot=ok worldOrigin=(300.00,-132.00,112.02) +[cell-cache] envCellId=0xAAB30108 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(2.65,-4.18,9.91) r=1.98 portalCount=2 visibleCells=3 cellBspRoot=ok worldOrigin=(300.00,-132.00,112.02) +[cell-cache] envCellId=0xAAB30109 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.42,-4.38,1.13) r=2.03 portalCount=2 visibleCells=3 cellBspRoot=ok worldOrigin=(300.00,-132.00,112.02) +[cell-cache] envCellId=0xAAB3010A physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.93,1.29,14.95) r=4.43 portalCount=2 visibleCells=3 cellBspRoot=ok worldOrigin=(300.00,-132.00,112.02) +[cell-cache] envCellId=0xAAB50100 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(0.85,0.40,3.28) r=3.12 portalCount=2 visibleCells=0 cellBspRoot=ok worldOrigin=(194.46,225.06,28.01) +[cell-cache] envCellId=0xABB00100 physicsPolyCount=9 resolvedCount=9 bspTotalLeafPolys=9 bspUnmatchedIds=0 bsphere=(0.10,12.28,-4.86) r=9.40 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(566.27,-737.50,64.02) +[cell-cache] envCellId=0xABB00101 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-1.34,1.95,-2.64) r=5.87 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(566.27,-737.50,64.02) +[cell-cache] envCellId=0xABB00102 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.09,1.16,0.05) r=3.56 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(566.27,-737.50,64.02) +[cell-cache] envCellId=0xABB00103 physicsPolyCount=30 resolvedCount=30 bspTotalLeafPolys=30 bspUnmatchedIds=0 bsphere=(0.83,-0.07,0.43) r=5.18 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(566.27,-737.50,64.02) +[cell-cache] envCellId=0xABB00104 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.00,-3.47,1.48) r=1.85 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(566.27,-737.50,64.02) +[cell-cache] envCellId=0xABB30100 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(0.00,-1.50,0.85) r=1.94 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(467.91,-86.67,66.02) +[cell-cache] envCellId=0xABB30101 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-0.02,-2.03,1.24) r=1.63 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(467.91,-86.67,66.02) +[cell-cache] envCellId=0xABB30102 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(0.09,0.74,0.35) r=4.65 portalCount=3 visibleCells=4 cellBspRoot=ok worldOrigin=(467.91,-86.67,66.02) +[cell-cache] envCellId=0xABB30103 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(2.46,-1.40,-0.02) r=1.95 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(467.91,-86.67,66.02) +[cell-cache] envCellId=0xABB30104 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(-2.46,-1.18,0.65) r=2.39 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(467.91,-86.67,66.02) +[cell-cache] envCellId=0xACB50100 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-0.28,2.56,-1.17) r=5.85 portalCount=2 visibleCells=10 cellBspRoot=ok worldOrigin=(684.75,349.06,58.02) +[cell-cache] envCellId=0xACB50101 physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(-0.30,0.50,2.20) r=6.50 portalCount=2 visibleCells=10 cellBspRoot=ok worldOrigin=(684.75,349.06,58.02) +[cell-cache] envCellId=0xACB50102 physicsPolyCount=16 resolvedCount=16 bspTotalLeafPolys=16 bspUnmatchedIds=0 bsphere=(-0.03,9.87,-3.57) r=3.62 portalCount=1 visibleCells=3 cellBspRoot=ok worldOrigin=(684.75,349.06,58.02) +[cell-cache] envCellId=0xACB50103 physicsPolyCount=10 resolvedCount=10 bspTotalLeafPolys=10 bspUnmatchedIds=0 bsphere=(-0.18,6.52,-2.98) r=4.18 portalCount=2 visibleCells=10 cellBspRoot=ok worldOrigin=(684.75,349.06,58.02) +[cell-cache] envCellId=0xACB50104 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=50 cellBspRoot=ok worldOrigin=(784.75,426.06,16.42) +[cell-cache] envCellId=0xACB50105 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=50 cellBspRoot=ok worldOrigin=(784.75,426.06,16.42) +[cell-cache] envCellId=0xACB50106 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=50 cellBspRoot=ok worldOrigin=(784.75,426.06,16.42) +[cell-cache] envCellId=0xACB50107 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=50 cellBspRoot=ok worldOrigin=(784.75,436.06,16.42) +[cell-cache] envCellId=0xACB50108 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=50 cellBspRoot=ok worldOrigin=(784.75,436.06,16.42) +[cell-cache] envCellId=0xACB50109 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=50 cellBspRoot=ok worldOrigin=(784.75,436.06,16.42) +[cell-cache] envCellId=0xACB5010A physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=45 cellBspRoot=ok worldOrigin=(774.75,416.06,16.42) +[cell-cache] envCellId=0xACB5010B physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=45 cellBspRoot=ok worldOrigin=(774.75,416.06,16.42) +[cell-cache] envCellId=0xACB5010C physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=44 cellBspRoot=ok worldOrigin=(774.75,416.06,16.42) +[cell-cache] envCellId=0xACB5010D physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(0.24,0.21,0.48) r=5.88 portalCount=4 visibleCells=50 cellBspRoot=ok worldOrigin=(774.75,426.06,16.42) +[cell-cache] envCellId=0xACB5010E physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.04,-4.99,1.85) r=3.06 portalCount=2 visibleCells=50 cellBspRoot=ok worldOrigin=(774.75,426.06,16.42) +[cell-cache] envCellId=0xACB5010F physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(4.99,-0.04,1.85) r=3.06 portalCount=2 visibleCells=43 cellBspRoot=ok worldOrigin=(774.75,426.06,16.42) +[cell-cache] envCellId=0xACB50110 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(0.04,4.99,1.85) r=3.06 portalCount=2 visibleCells=45 cellBspRoot=ok worldOrigin=(774.75,426.06,16.42) +[cell-cache] envCellId=0xACB50111 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-4.70,0.15,1.69) r=3.01 portalCount=2 visibleCells=50 cellBspRoot=ok worldOrigin=(774.75,426.06,16.42) +[cell-cache] envCellId=0xACB50112 physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(0.24,0.21,0.48) r=5.88 portalCount=4 visibleCells=50 cellBspRoot=ok worldOrigin=(774.75,436.06,16.42) +[cell-cache] envCellId=0xACB50113 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.04,-4.99,1.85) r=3.06 portalCount=2 visibleCells=53 cellBspRoot=ok worldOrigin=(774.75,436.06,16.42) +[cell-cache] envCellId=0xACB50114 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(4.99,-0.04,1.85) r=3.06 portalCount=2 visibleCells=43 cellBspRoot=ok worldOrigin=(774.75,436.06,16.42) +[cell-cache] envCellId=0xACB50115 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(0.04,4.99,1.85) r=3.06 portalCount=2 visibleCells=50 cellBspRoot=ok worldOrigin=(774.75,436.06,16.42) +[cell-cache] envCellId=0xACB50116 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-4.70,0.15,1.69) r=3.01 portalCount=2 visibleCells=50 cellBspRoot=ok worldOrigin=(774.75,436.06,16.42) +[cell-cache] envCellId=0xACB50117 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=55 cellBspRoot=ok worldOrigin=(774.75,446.06,16.42) +[cell-cache] envCellId=0xACB50118 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=54 cellBspRoot=ok worldOrigin=(774.75,446.06,16.42) +[cell-cache] envCellId=0xACB50119 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=55 cellBspRoot=ok worldOrigin=(774.75,446.06,16.42) +[cell-cache] envCellId=0xACB5011A physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=41 cellBspRoot=ok worldOrigin=(764.75,406.06,16.42) +[cell-cache] envCellId=0xACB5011B physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=41 cellBspRoot=ok worldOrigin=(764.75,406.06,16.42) +[cell-cache] envCellId=0xACB5011C physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=41 cellBspRoot=ok worldOrigin=(764.75,406.06,16.42) +[cell-cache] envCellId=0xACB5011D physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(0.27,-0.64,1.01) r=5.86 portalCount=3 visibleCells=41 cellBspRoot=ok worldOrigin=(764.75,416.06,16.42) +[cell-cache] envCellId=0xACB5011E physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(4.64,-0.16,1.69) r=3.01 portalCount=2 visibleCells=41 cellBspRoot=ok worldOrigin=(764.75,416.06,16.42) +[cell-cache] envCellId=0xACB5011F physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-4.64,0.16,1.69) r=3.01 portalCount=2 visibleCells=40 cellBspRoot=ok worldOrigin=(764.75,416.06,16.42) +[cell-cache] envCellId=0xACB50120 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.16,-4.64,1.69) r=3.01 portalCount=2 visibleCells=41 cellBspRoot=ok worldOrigin=(764.75,416.06,16.42) +[cell-cache] envCellId=0xACB50121 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=43 cellBspRoot=ok worldOrigin=(764.75,426.06,16.42) +[cell-cache] envCellId=0xACB50122 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=43 cellBspRoot=ok worldOrigin=(764.75,426.06,16.42) +[cell-cache] envCellId=0xACB50123 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=43 cellBspRoot=ok worldOrigin=(764.75,426.06,16.42) +[cell-cache] envCellId=0xACB50124 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=43 cellBspRoot=ok worldOrigin=(764.75,436.06,16.42) +[cell-cache] envCellId=0xACB50125 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=43 cellBspRoot=ok worldOrigin=(764.75,436.06,16.42) +[cell-cache] envCellId=0xACB50126 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=43 cellBspRoot=ok worldOrigin=(764.75,436.06,16.42) +[cell-cache] envCellId=0xACB50127 physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(-1.28,-0.32,2.62) r=6.94 portalCount=2 visibleCells=66 cellBspRoot=ok worldOrigin=(764.75,446.06,16.42) +[cell-cache] envCellId=0xACB50128 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=41 cellBspRoot=ok worldOrigin=(754.75,406.06,16.42) +[cell-cache] envCellId=0xACB50129 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=41 cellBspRoot=ok worldOrigin=(754.75,406.06,16.42) +[cell-cache] envCellId=0xACB5012A physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=31 cellBspRoot=ok worldOrigin=(754.75,406.06,16.42) +[cell-cache] envCellId=0xACB5012B physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=40 cellBspRoot=ok worldOrigin=(754.75,416.06,16.42) +[cell-cache] envCellId=0xACB5012C physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=40 cellBspRoot=ok worldOrigin=(754.75,416.06,16.42) +[cell-cache] envCellId=0xACB5012D physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=40 cellBspRoot=ok worldOrigin=(754.75,416.06,16.42) +[cell-cache] envCellId=0xACB5012E physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=61 cellBspRoot=ok worldOrigin=(754.75,446.06,16.42) +[cell-cache] envCellId=0xACB5012F physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=61 cellBspRoot=ok worldOrigin=(754.75,446.06,16.42) +[cell-cache] envCellId=0xACB50130 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=64 cellBspRoot=ok worldOrigin=(754.75,446.06,16.42) +[cell-cache] envCellId=0xACB50131 physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(0.27,-0.64,1.01) r=5.86 portalCount=3 visibleCells=58 cellBspRoot=ok worldOrigin=(754.75,456.06,16.42) +[cell-cache] envCellId=0xACB50132 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(4.64,-0.16,1.69) r=3.01 portalCount=2 visibleCells=55 cellBspRoot=ok worldOrigin=(754.75,456.06,16.42) +[cell-cache] envCellId=0xACB50133 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-4.64,0.16,1.69) r=3.01 portalCount=2 visibleCells=58 cellBspRoot=ok worldOrigin=(754.75,456.06,16.42) +[cell-cache] envCellId=0xACB50134 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.16,-4.64,1.69) r=3.01 portalCount=2 visibleCells=57 cellBspRoot=ok worldOrigin=(754.75,456.06,16.42) +[cell-cache] envCellId=0xACB50135 physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(-1.28,-0.32,2.62) r=6.94 portalCount=2 visibleCells=68 cellBspRoot=ok worldOrigin=(754.75,466.06,16.42) +[cell-cache] envCellId=0xACB50136 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=52 cellBspRoot=ok worldOrigin=(754.75,476.06,16.42) +[cell-cache] envCellId=0xACB50137 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=40 cellBspRoot=ok worldOrigin=(754.75,476.06,16.42) +[cell-cache] envCellId=0xACB50138 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=51 cellBspRoot=ok worldOrigin=(754.75,476.06,16.42) +[cell-cache] envCellId=0xACB50139 physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(-1.28,-0.32,2.62) r=6.94 portalCount=2 visibleCells=90 cellBspRoot=ok worldOrigin=(744.75,456.06,16.42) +[cell-cache] envCellId=0xACB5013A physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(-1.28,-0.32,2.62) r=6.94 portalCount=2 visibleCells=38 cellBspRoot=ok worldOrigin=(744.75,476.06,16.42) +[cell-cache] envCellId=0xACB5013B physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=71 cellBspRoot=ok worldOrigin=(734.75,426.06,16.42) +[cell-cache] envCellId=0xACB5013C physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=62 cellBspRoot=ok worldOrigin=(734.75,426.06,16.42) +[cell-cache] envCellId=0xACB5013D physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=71 cellBspRoot=ok worldOrigin=(734.75,426.06,16.42) +[cell-cache] envCellId=0xACB5013E physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(-1.28,-0.32,2.62) r=6.94 portalCount=2 visibleCells=76 cellBspRoot=ok worldOrigin=(734.75,436.06,16.42) +[cell-cache] envCellId=0xACB5013F physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(0.27,-0.64,1.01) r=5.86 portalCount=3 visibleCells=83 cellBspRoot=ok worldOrigin=(734.75,446.06,16.42) +[cell-cache] envCellId=0xACB50140 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(4.64,-0.16,1.69) r=3.01 portalCount=2 visibleCells=76 cellBspRoot=ok worldOrigin=(734.75,446.06,16.42) +[cell-cache] envCellId=0xACB50141 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-4.64,0.16,1.69) r=3.01 portalCount=2 visibleCells=76 cellBspRoot=ok worldOrigin=(734.75,446.06,16.42) +[cell-cache] envCellId=0xACB50142 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.16,-4.64,1.69) r=3.01 portalCount=3 visibleCells=83 cellBspRoot=ok worldOrigin=(734.75,446.06,16.42) +[cell-cache] envCellId=0xACB50143 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=74 cellBspRoot=ok worldOrigin=(734.75,456.06,16.42) +[cell-cache] envCellId=0xACB50144 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=76 cellBspRoot=ok worldOrigin=(734.75,456.06,16.42) +[cell-cache] envCellId=0xACB50145 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=74 cellBspRoot=ok worldOrigin=(734.75,456.06,16.42) +[cell-cache] envCellId=0xACB50146 physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(-1.28,-0.32,2.62) r=6.94 portalCount=2 visibleCells=77 cellBspRoot=ok worldOrigin=(734.75,476.06,16.42) +[cell-cache] envCellId=0xACB50147 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=64 cellBspRoot=ok worldOrigin=(724.75,426.06,16.42) +[cell-cache] envCellId=0xACB50148 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=64 cellBspRoot=ok worldOrigin=(724.75,426.06,16.42) +[cell-cache] envCellId=0xACB50149 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=65 cellBspRoot=ok worldOrigin=(724.75,426.06,16.42) +[cell-cache] envCellId=0xACB5014A physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=65 cellBspRoot=ok worldOrigin=(724.75,436.06,16.42) +[cell-cache] envCellId=0xACB5014B physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=65 cellBspRoot=ok worldOrigin=(724.75,436.06,16.42) +[cell-cache] envCellId=0xACB5014C physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=65 cellBspRoot=ok worldOrigin=(724.75,436.06,16.42) +[cell-cache] envCellId=0xACB5014D physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.61,0.46,1.31) r=4.73 portalCount=2 visibleCells=83 cellBspRoot=ok worldOrigin=(724.75,446.06,16.42) +[cell-cache] envCellId=0xACB5014E physicsPolyCount=16 resolvedCount=16 bspTotalLeafPolys=16 bspUnmatchedIds=0 bsphere=(-0.21,0.11,3.12) r=7.85 portalCount=5 visibleCells=83 cellBspRoot=ok worldOrigin=(724.75,446.06,16.42) +[cell-cache] envCellId=0xACB5014F physicsPolyCount=12 resolvedCount=12 bspTotalLeafPolys=12 bspUnmatchedIds=0 bsphere=(0.44,-0.71,2.36) r=8.18 portalCount=3 visibleCells=72 cellBspRoot=ok worldOrigin=(724.75,456.06,16.42) +[cell-cache] envCellId=0xACB50150 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=66 cellBspRoot=ok worldOrigin=(724.75,466.06,16.42) +[cell-cache] envCellId=0xACB50151 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=68 cellBspRoot=ok worldOrigin=(724.75,466.06,16.42) +[cell-cache] envCellId=0xACB50152 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=69 cellBspRoot=ok worldOrigin=(724.75,466.06,16.42) +[cell-cache] envCellId=0xACB50153 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=73 cellBspRoot=ok worldOrigin=(724.75,476.06,16.42) +[cell-cache] envCellId=0xACB50154 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=74 cellBspRoot=ok worldOrigin=(724.75,476.06,16.42) +[cell-cache] envCellId=0xACB50155 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=73 cellBspRoot=ok worldOrigin=(724.75,476.06,16.42) +[cell-cache] envCellId=0xACB50156 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=76 cellBspRoot=ok worldOrigin=(714.75,436.06,16.42) +[cell-cache] envCellId=0xACB50157 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=65 cellBspRoot=ok worldOrigin=(714.75,436.06,16.42) +[cell-cache] envCellId=0xACB50158 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=3 visibleCells=73 cellBspRoot=ok worldOrigin=(714.75,436.06,16.42) +[cell-cache] envCellId=0xACB50159 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.61,0.46,1.31) r=4.73 portalCount=2 visibleCells=73 cellBspRoot=ok worldOrigin=(714.75,446.06,16.42) +[cell-cache] envCellId=0xACB5015A physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(-0.03,0.55,2.18) r=8.42 portalCount=6 visibleCells=83 cellBspRoot=ok worldOrigin=(714.75,446.06,16.42) +[cell-cache] envCellId=0xACB5015B physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(1.49,0.92,5.80) r=9.23 portalCount=6 visibleCells=77 cellBspRoot=ok worldOrigin=(714.75,456.06,16.42) +[cell-cache] envCellId=0xACB5015C physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.61,0.46,1.31) r=4.73 portalCount=2 visibleCells=74 cellBspRoot=ok worldOrigin=(714.75,456.06,16.42) +[cell-cache] envCellId=0xACB5015D physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=70 cellBspRoot=ok worldOrigin=(714.75,466.06,16.42) +[cell-cache] envCellId=0xACB5015E physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=3 visibleCells=74 cellBspRoot=ok worldOrigin=(714.75,466.06,16.42) +[cell-cache] envCellId=0xACB5015F physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=69 cellBspRoot=ok worldOrigin=(714.75,466.06,16.42) +[cell-cache] envCellId=0xACB50160 physicsPolyCount=2 resolvedCount=2 bspTotalLeafPolys=2 bspUnmatchedIds=0 bsphere=(-0.46,0.33,1.19) r=9.03 portalCount=4 visibleCells=80 cellBspRoot=ok worldOrigin=(724.75,446.06,22.42) +[cell-cache] envCellId=0xACB50161 physicsPolyCount=2 resolvedCount=2 bspTotalLeafPolys=2 bspUnmatchedIds=0 bsphere=(2.31,-1.34,3.64) r=8.96 portalCount=4 visibleCells=69 cellBspRoot=ok worldOrigin=(724.75,456.06,22.42) +[cell-cache] envCellId=0xACB50162 physicsPolyCount=1 resolvedCount=1 bspTotalLeafPolys=1 bspUnmatchedIds=0 bsphere=(-0.46,0.33,1.19) r=9.03 portalCount=5 visibleCells=75 cellBspRoot=ok worldOrigin=(714.75,446.06,22.42) +[cell-cache] envCellId=0xACB50163 physicsPolyCount=1 resolvedCount=1 bspTotalLeafPolys=1 bspUnmatchedIds=0 bsphere=(-0.46,0.33,1.19) r=9.03 portalCount=5 visibleCells=73 cellBspRoot=ok worldOrigin=(714.75,456.06,22.42) +[cell-cache] envCellId=0xACB50164 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.00,0.00,0.00) r=9.28 portalCount=5 visibleCells=80 cellBspRoot=ok worldOrigin=(704.75,446.06,22.42) +[cell-cache] envCellId=0xACB50165 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(1.09,-0.59,-0.21) r=10.35 portalCount=5 visibleCells=77 cellBspRoot=ok worldOrigin=(704.75,456.06,22.42) +[cell-cache] envCellId=0xACB50166 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.05,-0.18,2.74) r=7.95 portalCount=5 visibleCells=80 cellBspRoot=ok worldOrigin=(694.75,446.06,22.42) +[cell-cache] envCellId=0xACB50167 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(0.14,2.63,1.15) r=3.90 portalCount=2 visibleCells=74 cellBspRoot=ok worldOrigin=(694.75,446.06,22.42) +[cell-cache] envCellId=0xACB50168 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.56,0.39,1.14) r=4.61 portalCount=2 visibleCells=69 cellBspRoot=ok worldOrigin=(694.75,456.06,22.42) +[cell-cache] envCellId=0xACB50169 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.09,0.10,2.80) r=7.89 portalCount=5 visibleCells=75 cellBspRoot=ok worldOrigin=(694.75,456.06,22.42) +[cell-cache] envCellId=0xACB5016A physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(-1.28,-0.32,2.62) r=6.94 portalCount=3 visibleCells=74 cellBspRoot=ok worldOrigin=(684.75,456.06,22.42) +[cell-cache] envCellId=0xACB5016B physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(-1.28,-0.32,2.62) r=6.94 portalCount=2 visibleCells=74 cellBspRoot=ok worldOrigin=(674.75,456.06,22.42) +[cell-cache] envCellId=0xACB5016C physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=85 cellBspRoot=ok worldOrigin=(664.75,456.06,22.42) +[cell-cache] envCellId=0xACB5016D physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=80 cellBspRoot=ok worldOrigin=(664.75,456.06,22.42) +[cell-cache] envCellId=0xACB5016E physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=85 cellBspRoot=ok worldOrigin=(664.75,456.06,22.42) +[cell-cache] envCellId=0xACB5016F physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(2.17,-0.57,0.31) r=9.09 portalCount=3 visibleCells=73 cellBspRoot=ok worldOrigin=(724.75,446.06,28.42) +[cell-cache] envCellId=0xACB50170 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(1.13,-0.92,1.23) r=7.47 portalCount=3 visibleCells=69 cellBspRoot=ok worldOrigin=(724.75,456.06,28.42) +[cell-cache] envCellId=0xACB50171 physicsPolyCount=3 resolvedCount=3 bspTotalLeafPolys=3 bspUnmatchedIds=0 bsphere=(-0.66,0.53,1.17) r=8.13 portalCount=4 visibleCells=73 cellBspRoot=ok worldOrigin=(714.75,446.06,28.42) +[cell-cache] envCellId=0xACB50172 physicsPolyCount=3 resolvedCount=3 bspTotalLeafPolys=3 bspUnmatchedIds=0 bsphere=(-0.66,0.53,1.17) r=8.13 portalCount=4 visibleCells=69 cellBspRoot=ok worldOrigin=(714.75,456.06,28.42) +[cell-cache] envCellId=0xACB50173 physicsPolyCount=3 resolvedCount=3 bspTotalLeafPolys=3 bspUnmatchedIds=0 bsphere=(-0.66,0.53,1.17) r=8.13 portalCount=4 visibleCells=74 cellBspRoot=ok worldOrigin=(704.75,446.06,28.42) +[cell-cache] envCellId=0xACB50174 physicsPolyCount=3 resolvedCount=3 bspTotalLeafPolys=3 bspUnmatchedIds=0 bsphere=(-0.66,0.53,1.17) r=8.13 portalCount=4 visibleCells=69 cellBspRoot=ok worldOrigin=(704.75,456.06,28.42) +[cell-cache] envCellId=0xACB50175 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(2.17,-0.57,0.31) r=9.09 portalCount=3 visibleCells=67 cellBspRoot=ok worldOrigin=(694.75,446.06,28.42) +[cell-cache] envCellId=0xACB50176 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(2.17,-0.57,0.31) r=9.09 portalCount=3 visibleCells=66 cellBspRoot=ok worldOrigin=(694.75,456.06,28.42) +[cell-cache] envCellId=0xACB50177 physicsPolyCount=32 resolvedCount=32 bspTotalLeafPolys=32 bspUnmatchedIds=0 bsphere=(0.38,-0.09,-1.21) r=7.37 portalCount=3 visibleCells=76 cellBspRoot=ok worldOrigin=(684.75,446.06,28.42) +[cell-cache] envCellId=0xACB50178 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=76 cellBspRoot=ok worldOrigin=(674.75,446.06,28.42) +[cell-cache] envCellId=0xACB50179 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=76 cellBspRoot=ok worldOrigin=(674.75,446.06,28.42) +[cell-cache] envCellId=0xACB5017A physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=76 cellBspRoot=ok worldOrigin=(674.75,446.06,28.42) +[cell-cache] envCellId=0xACB5017B physicsPolyCount=32 resolvedCount=32 bspTotalLeafPolys=32 bspUnmatchedIds=0 bsphere=(0.38,-0.09,-1.21) r=7.37 portalCount=2 visibleCells=70 cellBspRoot=ok worldOrigin=(664.75,446.06,28.42) +[cell-cache] envCellId=0xACB5017C physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=88 cellBspRoot=ok worldOrigin=(734.75,376.06,34.42) +[cell-cache] envCellId=0xACB5017D physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=73 cellBspRoot=ok worldOrigin=(734.75,376.06,34.42) +[cell-cache] envCellId=0xACB5017E physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=97 cellBspRoot=ok worldOrigin=(734.75,376.06,34.42) +[cell-cache] envCellId=0xACB5017F physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(-1.28,-0.32,2.62) r=6.94 portalCount=3 visibleCells=77 cellBspRoot=ok worldOrigin=(734.75,386.06,34.42) +[cell-cache] envCellId=0xACB50180 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.89,1.66,4.03) r=9.12 portalCount=5 visibleCells=68 cellBspRoot=ok worldOrigin=(734.75,396.06,34.42) +[cell-cache] envCellId=0xACB50181 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(0.14,2.63,1.15) r=3.90 portalCount=2 visibleCells=66 cellBspRoot=ok worldOrigin=(734.75,396.06,34.42) +[cell-cache] envCellId=0xACB50182 physicsPolyCount=12 resolvedCount=12 bspTotalLeafPolys=12 bspUnmatchedIds=0 bsphere=(0.44,-0.71,2.36) r=8.18 portalCount=3 visibleCells=66 cellBspRoot=ok worldOrigin=(734.75,406.06,34.42) +[cell-cache] envCellId=0xACB50183 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=77 cellBspRoot=ok worldOrigin=(724.75,356.06,34.42) +[cell-cache] envCellId=0xACB50184 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=77 cellBspRoot=ok worldOrigin=(724.75,356.06,34.42) +[cell-cache] envCellId=0xACB50185 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=76 cellBspRoot=ok worldOrigin=(724.75,356.06,34.42) +[cell-cache] envCellId=0xACB50186 physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(-1.28,-0.32,2.62) r=6.94 portalCount=2 visibleCells=89 cellBspRoot=ok worldOrigin=(724.75,366.06,34.42) +[cell-cache] envCellId=0xACB50187 physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(0.27,-0.64,1.01) r=5.86 portalCount=3 visibleCells=97 cellBspRoot=ok worldOrigin=(724.75,376.06,34.42) +[cell-cache] envCellId=0xACB50188 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(4.64,-0.16,1.69) r=3.01 portalCount=2 visibleCells=97 cellBspRoot=ok worldOrigin=(724.75,376.06,34.42) +[cell-cache] envCellId=0xACB50189 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-4.64,0.16,1.69) r=3.01 portalCount=2 visibleCells=86 cellBspRoot=ok worldOrigin=(724.75,376.06,34.42) +[cell-cache] envCellId=0xACB5018A physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.16,-4.64,1.69) r=3.01 portalCount=2 visibleCells=97 cellBspRoot=ok worldOrigin=(724.75,376.06,34.42) +[cell-cache] envCellId=0xACB5018B physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=97 cellBspRoot=ok worldOrigin=(724.75,386.06,34.42) +[cell-cache] envCellId=0xACB5018C physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=3 visibleCells=96 cellBspRoot=ok worldOrigin=(724.75,386.06,34.42) +[cell-cache] envCellId=0xACB5018D physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=97 cellBspRoot=ok worldOrigin=(724.75,386.06,34.42) +[cell-cache] envCellId=0xACB5018E physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-0.31,0.85,2.16) r=8.80 portalCount=4 visibleCells=66 cellBspRoot=ok worldOrigin=(724.75,396.06,34.42) +[cell-cache] envCellId=0xACB5018F physicsPolyCount=13 resolvedCount=13 bspTotalLeafPolys=13 bspUnmatchedIds=0 bsphere=(1.49,0.92,5.80) r=9.23 portalCount=6 visibleCells=62 cellBspRoot=ok worldOrigin=(724.75,406.06,34.42) +[cell-cache] envCellId=0xACB50190 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.61,0.46,1.31) r=4.73 portalCount=2 visibleCells=62 cellBspRoot=ok worldOrigin=(724.75,406.06,34.42) +[cell-cache] envCellId=0xACB50191 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=62 cellBspRoot=ok worldOrigin=(724.75,416.06,34.42) +[cell-cache] envCellId=0xACB50192 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=3 visibleCells=62 cellBspRoot=ok worldOrigin=(724.75,416.06,34.42) +[cell-cache] envCellId=0xACB50193 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=3 visibleCells=62 cellBspRoot=ok worldOrigin=(724.75,416.06,34.42) +[cell-cache] envCellId=0xACB50194 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=40 cellBspRoot=ok worldOrigin=(714.75,346.06,34.42) +[cell-cache] envCellId=0xACB50195 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=40 cellBspRoot=ok worldOrigin=(714.75,346.06,34.42) +[cell-cache] envCellId=0xACB50196 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=40 cellBspRoot=ok worldOrigin=(714.75,346.06,34.42) +[cell-cache] envCellId=0xACB50197 physicsPolyCount=24 resolvedCount=24 bspTotalLeafPolys=24 bspUnmatchedIds=0 bsphere=(0.24,0.21,0.48) r=5.88 portalCount=4 visibleCells=40 cellBspRoot=ok worldOrigin=(714.75,356.06,34.42) +[cell-cache] envCellId=0xACB50198 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.04,-4.99,1.85) r=3.06 portalCount=2 visibleCells=35 cellBspRoot=ok worldOrigin=(714.75,356.06,34.42) +[cell-cache] envCellId=0xACB50199 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(4.99,-0.04,1.85) r=3.06 portalCount=2 visibleCells=36 cellBspRoot=ok worldOrigin=(714.75,356.06,34.42) +[cell-cache] envCellId=0xACB5019A physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(0.04,4.99,1.85) r=3.06 portalCount=2 visibleCells=40 cellBspRoot=ok worldOrigin=(714.75,356.06,34.42) +[cell-cache] envCellId=0xACB5019B physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-4.70,0.15,1.69) r=3.01 portalCount=2 visibleCells=72 cellBspRoot=ok worldOrigin=(714.75,356.06,34.42) +[cell-cache] envCellId=0xACB5019C physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=32 cellBspRoot=ok worldOrigin=(714.75,366.06,34.42) +[cell-cache] envCellId=0xACB5019D physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=32 cellBspRoot=ok worldOrigin=(714.75,366.06,34.42) +[cell-cache] envCellId=0xACB5019E physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=35 cellBspRoot=ok worldOrigin=(714.75,366.06,34.42) +[cell-cache] envCellId=0xACB5019F physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.56,0.39,1.14) r=4.61 portalCount=2 visibleCells=88 cellBspRoot=ok worldOrigin=(714.75,386.06,34.42) +[cell-cache] envCellId=0xACB501A0 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.09,0.10,2.80) r=7.89 portalCount=5 visibleCells=77 cellBspRoot=ok worldOrigin=(714.75,386.06,34.42) +[cell-cache] envCellId=0xACB501A1 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(-0.36,1.83,1.58) r=9.75 portalCount=5 visibleCells=77 cellBspRoot=ok worldOrigin=(714.75,396.06,34.42) +[cell-cache] envCellId=0xACB501A2 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(-0.36,1.83,1.58) r=9.75 portalCount=5 visibleCells=66 cellBspRoot=ok worldOrigin=(714.75,406.06,34.42) +[cell-cache] envCellId=0xACB501A3 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.05,-0.18,2.74) r=7.95 portalCount=5 visibleCells=66 cellBspRoot=ok worldOrigin=(714.75,416.06,34.42) +[cell-cache] envCellId=0xACB501A4 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(0.14,2.63,1.15) r=3.90 portalCount=2 visibleCells=64 cellBspRoot=ok worldOrigin=(714.75,416.06,34.42) +[cell-cache] envCellId=0xACB501A5 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=43 cellBspRoot=ok worldOrigin=(704.75,346.06,34.42) +[cell-cache] envCellId=0xACB501A6 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=43 cellBspRoot=ok worldOrigin=(704.75,346.06,34.42) +[cell-cache] envCellId=0xACB501A7 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=43 cellBspRoot=ok worldOrigin=(704.75,346.06,34.42) +[cell-cache] envCellId=0xACB501A8 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=32 cellBspRoot=ok worldOrigin=(704.75,356.06,34.42) +[cell-cache] envCellId=0xACB501A9 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=36 cellBspRoot=ok worldOrigin=(704.75,356.06,34.42) +[cell-cache] envCellId=0xACB501AA physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=32 cellBspRoot=ok worldOrigin=(704.75,356.06,34.42) +[cell-cache] envCellId=0xACB501AB physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=32 cellBspRoot=ok worldOrigin=(704.75,366.06,34.42) +[cell-cache] envCellId=0xACB501AC physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=31 cellBspRoot=ok worldOrigin=(704.75,366.06,34.42) +[cell-cache] envCellId=0xACB501AD physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=32 cellBspRoot=ok worldOrigin=(704.75,366.06,34.42) +[cell-cache] envCellId=0xACB501AE physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.05,-0.18,2.74) r=7.95 portalCount=5 visibleCells=77 cellBspRoot=ok worldOrigin=(704.75,386.06,34.42) +[cell-cache] envCellId=0xACB501AF physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(0.14,2.63,1.15) r=3.90 portalCount=2 visibleCells=69 cellBspRoot=ok worldOrigin=(704.75,386.06,34.42) +[cell-cache] envCellId=0xACB501B0 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.61,0.46,1.31) r=4.73 portalCount=2 visibleCells=77 cellBspRoot=ok worldOrigin=(704.75,396.06,34.42) +[cell-cache] envCellId=0xACB501B1 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(-0.24,0.48,2.14) r=8.52 portalCount=6 visibleCells=77 cellBspRoot=ok worldOrigin=(704.75,396.06,34.42) +[cell-cache] envCellId=0xACB501B2 physicsPolyCount=3 resolvedCount=3 bspTotalLeafPolys=3 bspUnmatchedIds=0 bsphere=(0.16,0.86,1.41) r=9.07 portalCount=4 visibleCells=66 cellBspRoot=ok worldOrigin=(704.75,406.06,34.42) +[cell-cache] envCellId=0xACB501B3 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(0.34,-0.34,4.19) r=7.81 portalCount=3 visibleCells=66 cellBspRoot=ok worldOrigin=(704.75,416.06,34.42) +[cell-cache] envCellId=0xACB501B4 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=70 cellBspRoot=ok worldOrigin=(694.75,386.06,34.42) +[cell-cache] envCellId=0xACB501B5 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=3 visibleCells=70 cellBspRoot=ok worldOrigin=(694.75,386.06,34.42) +[cell-cache] envCellId=0xACB501B6 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=70 cellBspRoot=ok worldOrigin=(694.75,386.06,34.42) +[cell-cache] envCellId=0xACB501B7 physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(0.27,-0.64,1.01) r=5.86 portalCount=3 visibleCells=77 cellBspRoot=ok worldOrigin=(694.75,396.06,34.42) +[cell-cache] envCellId=0xACB501B8 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(4.64,-0.16,1.69) r=3.01 portalCount=2 visibleCells=77 cellBspRoot=ok worldOrigin=(694.75,396.06,34.42) +[cell-cache] envCellId=0xACB501B9 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-4.64,0.16,1.69) r=3.01 portalCount=2 visibleCells=66 cellBspRoot=ok worldOrigin=(694.75,396.06,34.42) +[cell-cache] envCellId=0xACB501BA physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.16,-4.64,1.69) r=3.01 portalCount=3 visibleCells=77 cellBspRoot=ok worldOrigin=(694.75,396.06,34.42) +[cell-cache] envCellId=0xACB501BB physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=77 cellBspRoot=ok worldOrigin=(694.75,406.06,34.42) +[cell-cache] envCellId=0xACB501BC physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=77 cellBspRoot=ok worldOrigin=(694.75,406.06,34.42) +[cell-cache] envCellId=0xACB501BD physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=77 cellBspRoot=ok worldOrigin=(694.75,406.06,34.42) +[cell-cache] envCellId=0xACB501BE physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(0.27,-0.64,1.01) r=5.86 portalCount=3 visibleCells=88 cellBspRoot=ok worldOrigin=(684.75,406.06,34.42) +[cell-cache] envCellId=0xACB501BF physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(4.64,-0.16,1.69) r=3.01 portalCount=2 visibleCells=64 cellBspRoot=ok worldOrigin=(684.75,406.06,34.42) +[cell-cache] envCellId=0xACB501C0 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-4.64,0.16,1.69) r=3.01 portalCount=2 visibleCells=77 cellBspRoot=ok worldOrigin=(684.75,406.06,34.42) +[cell-cache] envCellId=0xACB501C1 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.16,-4.64,1.69) r=3.01 portalCount=2 visibleCells=77 cellBspRoot=ok worldOrigin=(684.75,406.06,34.42) +[cell-cache] envCellId=0xACB501C2 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=80 cellBspRoot=ok worldOrigin=(684.75,416.06,34.42) +[cell-cache] envCellId=0xACB501C3 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=80 cellBspRoot=ok worldOrigin=(684.75,416.06,34.42) +[cell-cache] envCellId=0xACB501C4 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=82 cellBspRoot=ok worldOrigin=(684.75,416.06,34.42) +[cell-cache] envCellId=0xACB501C5 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=60 cellBspRoot=ok worldOrigin=(674.75,406.06,34.42) +[cell-cache] envCellId=0xACB501C6 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=64 cellBspRoot=ok worldOrigin=(674.75,406.06,34.42) +[cell-cache] envCellId=0xACB501C7 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=60 cellBspRoot=ok worldOrigin=(674.75,406.06,34.42) +[cell-cache] envCellId=0xACB501C8 physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(0.27,-0.64,1.01) r=5.86 portalCount=3 visibleCells=83 cellBspRoot=ok worldOrigin=(674.75,416.06,34.42) +[cell-cache] envCellId=0xACB501C9 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(4.64,-0.16,1.69) r=3.01 portalCount=2 visibleCells=80 cellBspRoot=ok worldOrigin=(674.75,416.06,34.42) +[cell-cache] envCellId=0xACB501CA physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-4.64,0.16,1.69) r=3.01 portalCount=2 visibleCells=53 cellBspRoot=ok worldOrigin=(674.75,416.06,34.42) +[cell-cache] envCellId=0xACB501CB physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.16,-4.64,1.69) r=3.01 portalCount=2 visibleCells=57 cellBspRoot=ok worldOrigin=(674.75,416.06,34.42) +[cell-cache] envCellId=0xACB501CC physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=47 cellBspRoot=ok worldOrigin=(674.75,426.06,34.42) +[cell-cache] envCellId=0xACB501CD physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=47 cellBspRoot=ok worldOrigin=(674.75,426.06,34.42) +[cell-cache] envCellId=0xACB501CE physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=49 cellBspRoot=ok worldOrigin=(674.75,426.06,34.42) +[cell-cache] envCellId=0xACB501CF physicsPolyCount=32 resolvedCount=32 bspTotalLeafPolys=32 bspUnmatchedIds=0 bsphere=(0.38,-0.09,-1.21) r=7.37 portalCount=2 visibleCells=66 cellBspRoot=ok worldOrigin=(674.75,436.06,34.42) +[cell-cache] envCellId=0xACB501D0 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=59 cellBspRoot=ok worldOrigin=(664.75,416.06,34.42) +[cell-cache] envCellId=0xACB501D1 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=55 cellBspRoot=ok worldOrigin=(664.75,416.06,34.42) +[cell-cache] envCellId=0xACB501D2 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=59 cellBspRoot=ok worldOrigin=(664.75,416.06,34.42) +[cell-cache] envCellId=0xACB501D3 physicsPolyCount=14 resolvedCount=14 bspTotalLeafPolys=14 bspUnmatchedIds=0 bsphere=(0.27,-0.64,1.01) r=5.86 portalCount=3 visibleCells=80 cellBspRoot=ok worldOrigin=(664.75,426.06,34.42) +[cell-cache] envCellId=0xACB501D4 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(4.64,-0.16,1.69) r=3.01 portalCount=2 visibleCells=54 cellBspRoot=ok worldOrigin=(664.75,426.06,34.42) +[cell-cache] envCellId=0xACB501D5 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-4.64,0.16,1.69) r=3.01 portalCount=2 visibleCells=59 cellBspRoot=ok worldOrigin=(664.75,426.06,34.42) +[cell-cache] envCellId=0xACB501D6 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.16,-4.64,1.69) r=3.01 portalCount=2 visibleCells=33 cellBspRoot=ok worldOrigin=(664.75,426.06,34.42) +[cell-cache] envCellId=0xACB501D7 physicsPolyCount=32 resolvedCount=32 bspTotalLeafPolys=32 bspUnmatchedIds=0 bsphere=(0.38,-0.09,-1.21) r=7.37 portalCount=2 visibleCells=54 cellBspRoot=ok worldOrigin=(664.75,436.06,34.42) +[cell-cache] envCellId=0xACB501D8 physicsPolyCount=7 resolvedCount=7 bspTotalLeafPolys=7 bspUnmatchedIds=0 bsphere=(-0.68,-0.29,1.45) r=7.91 portalCount=3 visibleCells=68 cellBspRoot=ok worldOrigin=(734.75,396.06,40.42) +[cell-cache] envCellId=0xACB501D9 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(1.13,-0.92,1.23) r=7.47 portalCount=3 visibleCells=66 cellBspRoot=ok worldOrigin=(734.75,406.06,40.42) +[cell-cache] envCellId=0xACB501DA physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(0.52,0.72,1.14) r=8.04 portalCount=4 visibleCells=66 cellBspRoot=ok worldOrigin=(724.75,396.06,40.42) +[cell-cache] envCellId=0xACB501DB physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.00,0.00,1.50) r=7.24 portalCount=4 visibleCells=62 cellBspRoot=ok worldOrigin=(724.75,406.06,40.42) +[cell-cache] envCellId=0xACB501DC physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(2.17,-0.57,0.31) r=9.09 portalCount=3 visibleCells=77 cellBspRoot=ok worldOrigin=(714.75,386.06,40.42) +[cell-cache] envCellId=0xACB501DD physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(0.03,0.03,0.21) r=7.65 portalCount=5 visibleCells=71 cellBspRoot=ok worldOrigin=(714.75,396.06,40.42) +[cell-cache] envCellId=0xACB501DE physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(0.03,0.03,0.21) r=7.65 portalCount=5 visibleCells=66 cellBspRoot=ok worldOrigin=(714.75,406.06,40.42) +[cell-cache] envCellId=0xACB501DF physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(2.17,-0.57,0.31) r=9.09 portalCount=3 visibleCells=66 cellBspRoot=ok worldOrigin=(714.75,416.06,40.42) +[cell-cache] envCellId=0xACB501E0 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=26 cellBspRoot=ok worldOrigin=(704.75,326.06,40.42) +[cell-cache] envCellId=0xACB501E1 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=26 cellBspRoot=ok worldOrigin=(704.75,326.06,40.42) +[cell-cache] envCellId=0xACB501E2 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=26 cellBspRoot=ok worldOrigin=(704.75,326.06,40.42) +[cell-cache] envCellId=0xACB501E3 physicsPolyCount=32 resolvedCount=32 bspTotalLeafPolys=32 bspUnmatchedIds=0 bsphere=(0.38,-0.09,-1.21) r=7.37 portalCount=2 visibleCells=44 cellBspRoot=ok worldOrigin=(704.75,336.06,40.42) +[cell-cache] envCellId=0xACB501E4 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(2.17,-0.57,0.31) r=9.09 portalCount=3 visibleCells=77 cellBspRoot=ok worldOrigin=(704.75,386.06,40.42) +[cell-cache] envCellId=0xACB501E5 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.00,0.00,1.50) r=7.24 portalCount=4 visibleCells=77 cellBspRoot=ok worldOrigin=(704.75,396.06,40.42) +[cell-cache] envCellId=0xACB501E6 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(0.52,0.72,1.14) r=8.04 portalCount=4 visibleCells=66 cellBspRoot=ok worldOrigin=(704.75,406.06,40.42) +[cell-cache] envCellId=0xACB501E7 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(1.13,-0.92,1.23) r=7.47 portalCount=3 visibleCells=66 cellBspRoot=ok worldOrigin=(704.75,416.06,40.42) +[cell-cache] envCellId=0xACB501E8 physicsPolyCount=32 resolvedCount=32 bspTotalLeafPolys=32 bspUnmatchedIds=0 bsphere=(0.38,-0.09,-1.21) r=7.37 portalCount=2 visibleCells=24 cellBspRoot=ok worldOrigin=(694.75,326.06,46.42) +[cell-cache] envCellId=0xACB501E9 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(-0.17,-0.21,1.98) r=4.29 portalCount=2 visibleCells=14 cellBspRoot=ok worldOrigin=(684.75,326.06,46.42) +[cell-cache] envCellId=0xACB501EA physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-3.94,0.00,1.19) r=3.19 portalCount=2 visibleCells=14 cellBspRoot=ok worldOrigin=(684.75,326.06,46.42) +[cell-cache] envCellId=0xACB501EB physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.00,-3.94,1.19) r=3.19 portalCount=2 visibleCells=14 cellBspRoot=ok worldOrigin=(684.75,326.06,46.42) +[cell-cache] envCellId=0xACB501EC physicsPolyCount=32 resolvedCount=32 bspTotalLeafPolys=32 bspUnmatchedIds=0 bsphere=(0.38,-0.09,-1.21) r=7.37 portalCount=2 visibleCells=11 cellBspRoot=ok worldOrigin=(684.75,336.06,52.42) +[cell-cache] envCellId=0xACB501ED physicsPolyCount=16 resolvedCount=16 bspTotalLeafPolys=16 bspUnmatchedIds=0 bsphere=(-0.19,-4.47,1.93) r=3.67 portalCount=1 visibleCells=8 cellBspRoot=ok worldOrigin=(684.75,346.06,52.42) +[cell-cache] envCellId=0xACB70100 physicsPolyCount=31 resolvedCount=31 bspTotalLeafPolys=31 bspUnmatchedIds=0 bsphere=(-0.05,0.23,2.72) r=6.96 portalCount=4 visibleCells=4 cellBspRoot=ok worldOrigin=(756.00,684.00,102.02) +[cell-cache] envCellId=0xACB70101 physicsPolyCount=8 resolvedCount=8 bspTotalLeafPolys=8 bspUnmatchedIds=0 bsphere=(-0.04,0.26,3.54) r=7.06 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(756.00,684.00,102.02) +[cell-cache] envCellId=0xACB70102 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.40,-5.10,1.40) r=1.96 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(756.00,684.00,102.02) +[cell-cache] envCellId=0xACB70103 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-4.21,-2.59,1.85) r=1.23 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(756.00,684.00,102.02) +[cell-cache] envCellId=0xACB70104 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(4.20,-1.17,1.23) r=1.71 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(756.00,684.00,102.02) +[cell-cache] envCellId=0xADB20100 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(0.00,-1.50,0.85) r=1.94 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(780.00,-300.00,30.02) +[cell-cache] envCellId=0xADB20101 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-0.02,-2.03,1.24) r=1.63 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(780.00,-300.00,30.02) +[cell-cache] envCellId=0xADB20102 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(0.09,0.74,0.35) r=4.65 portalCount=3 visibleCells=4 cellBspRoot=ok worldOrigin=(780.00,-300.00,30.02) +[cell-cache] envCellId=0xADB20103 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(2.46,-1.40,-0.02) r=1.95 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(780.00,-300.00,30.02) +[cell-cache] envCellId=0xADB20104 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(-2.46,-1.18,0.65) r=2.39 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(780.00,-300.00,30.02) +[cell-cache] envCellId=0xADB60100 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(0.00,-1.50,0.85) r=1.94 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(897.69,516.16,96.02) +[cell-cache] envCellId=0xADB60101 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-0.02,-2.03,1.24) r=1.63 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(897.69,516.16,96.02) +[cell-cache] envCellId=0xADB60102 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(0.09,0.74,0.35) r=4.65 portalCount=3 visibleCells=4 cellBspRoot=ok worldOrigin=(897.69,516.16,96.02) +[cell-cache] envCellId=0xADB60103 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(2.46,-1.40,-0.02) r=1.95 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(897.69,516.16,96.02) +[cell-cache] envCellId=0xADB60104 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(-2.46,-1.18,0.65) r=2.39 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(897.69,516.16,96.02) +[cell-cache] envCellId=0xADB70100 physicsPolyCount=15 resolvedCount=15 bspTotalLeafPolys=15 bspUnmatchedIds=0 bsphere=(1.85,-0.72,1.58) r=9.18 portalCount=3 visibleCells=6 cellBspRoot=ok worldOrigin=(946.59,707.46,100.02) +[cell-cache] envCellId=0xADB70101 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.01,5.99,1.25) r=2.01 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(946.59,707.46,100.02) +[cell-cache] envCellId=0xADB70102 physicsPolyCount=17 resolvedCount=17 bspTotalLeafPolys=17 bspUnmatchedIds=0 bsphere=(1.28,0.38,6.54) r=8.97 portalCount=3 visibleCells=6 cellBspRoot=ok worldOrigin=(946.59,707.46,100.02) +[cell-cache] envCellId=0xADB70103 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.01,5.98,7.52) r=1.20 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(946.59,707.46,100.02) +[cell-cache] envCellId=0xADB70104 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(0.01,-5.98,7.52) r=1.20 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(946.59,707.46,100.02) +[cell-cache] envCellId=0xADB70105 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.01,-5.99,1.26) r=2.01 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(946.59,707.46,100.02) +[cell-cache] envCellId=0xADB70106 physicsPolyCount=4 resolvedCount=4 bspTotalLeafPolys=4 bspUnmatchedIds=0 bsphere=(-0.93,0.29,3.02) r=4.43 portalCount=2 visibleCells=6 cellBspRoot=ok worldOrigin=(946.59,707.46,100.02) +[cell-cache] envCellId=0xADB80100 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(0.00,-1.50,0.85) r=1.94 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(876.86,852.07,92.02) +[cell-cache] envCellId=0xADB80101 physicsPolyCount=6 resolvedCount=6 bspTotalLeafPolys=6 bspUnmatchedIds=0 bsphere=(-0.02,-2.03,1.24) r=1.63 portalCount=2 visibleCells=4 cellBspRoot=ok worldOrigin=(876.86,852.07,92.02) +[cell-cache] envCellId=0xADB80102 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(0.09,0.74,0.35) r=4.65 portalCount=3 visibleCells=4 cellBspRoot=ok worldOrigin=(876.86,852.07,92.02) +[cell-cache] envCellId=0xADB80103 physicsPolyCount=11 resolvedCount=11 bspTotalLeafPolys=11 bspUnmatchedIds=0 bsphere=(2.46,-1.40,-0.02) r=1.95 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(876.86,852.07,92.02) +[cell-cache] envCellId=0xADB80104 physicsPolyCount=5 resolvedCount=5 bspTotalLeafPolys=5 bspUnmatchedIds=0 bsphere=(-2.46,-1.18,0.65) r=2.39 portalCount=1 visibleCells=4 cellBspRoot=ok worldOrigin=(876.86,852.07,92.02) +lb 0xA5B0FFFF: scenery tried=106 registered=88 noBounds=0 tooThin=0 (outdoorNone=20) +lb 0xA5B1FFFF: scenery tried=87 registered=87 noBounds=0 tooThin=0 (outdoorNone=0) +lb 0xA5B2FFFF: scenery tried=48 registered=48 noBounds=0 tooThin=0 (outdoorNone=0) +lb 0xA5B3FFFF: scenery tried=29 registered=29 noBounds=0 tooThin=0 (outdoorNone=0) +lb 0xA5B4FFFF: scenery tried=86 registered=39 noBounds=0 tooThin=0 (outdoorNone=52) +lb 0xA5B5FFFF: scenery tried=48 registered=48 noBounds=0 tooThin=0 (outdoorNone=0) +lb 0xA5B6FFFF: scenery tried=50 registered=48 noBounds=0 tooThin=0 (outdoorNone=2) +lb 0xA5B7FFFF: scenery tried=67 registered=60 noBounds=0 tooThin=0 (outdoorNone=7) +lb 0xA5B8FFFF: scenery tried=64 registered=64 noBounds=0 tooThin=0 (outdoorNone=0) +lb 0xA6B0FFFF: scenery tried=52 registered=50 noBounds=0 tooThin=0 (outdoorNone=2) +lb 0xA6B1FFFF: scenery tried=79 registered=76 noBounds=0 tooThin=0 (outdoorNone=3) +lb 0xA6B2FFFF: scenery tried=64 registered=64 noBounds=0 tooThin=0 (outdoorNone=0) +lb 0xA6B3FFFF: scenery tried=77 registered=76 noBounds=0 tooThin=0 (outdoorNone=1) +lb 0xA6B4FFFF: scenery tried=76 registered=73 noBounds=0 tooThin=0 (outdoorNone=3) +lb 0xA6B5FFFF: scenery tried=50 registered=44 noBounds=0 tooThin=0 (outdoorNone=6) +lb 0xA6B6FFFF: scenery tried=133 registered=97 noBounds=0 tooThin=0 (outdoorNone=36) +lb 0xA6B7FFFF: scenery tried=159 registered=121 noBounds=0 tooThin=0 (outdoorNone=38) +lb 0xA6B8FFFF: scenery tried=48 registered=48 noBounds=0 tooThin=0 (outdoorNone=0) +lb 0xA7B0FFFF: scenery tried=55 registered=54 noBounds=0 tooThin=0 (outdoorNone=1) +lb 0xA7B1FFFF: scenery tried=44 registered=44 noBounds=0 tooThin=0 (outdoorNone=0) +lb 0xA7B2FFFF: scenery tried=36 registered=36 noBounds=0 tooThin=0 (outdoorNone=0) +lb 0xA7B3FFFF: scenery tried=64 registered=44 noBounds=0 tooThin=0 (outdoorNone=19) +lb 0xA7B4FFFF: scenery tried=71 registered=34 noBounds=0 tooThin=0 (outdoorNone=29) +lb 0xA7B5FFFF: scenery tried=134 registered=61 noBounds=0 tooThin=0 (outdoorNone=73) +lb 0xA7B6FFFF: scenery tried=87 registered=75 noBounds=0 tooThin=0 (outdoorNone=12) +lb 0xA7B7FFFF: scenery tried=88 registered=48 noBounds=0 tooThin=0 (outdoorNone=40) +lb 0xA7B8FFFF: scenery tried=117 registered=28 noBounds=0 tooThin=0 (outdoorNone=89) +lb 0xA8B0FFFF: scenery tried=116 registered=105 noBounds=0 tooThin=0 (outdoorNone=10) +lb 0xA8B1FFFF: scenery tried=133 registered=103 noBounds=0 tooThin=0 (outdoorNone=30) +lb 0xA8B2FFFF: scenery tried=225 registered=139 noBounds=0 tooThin=0 (outdoorNone=88) +lb 0xA8B3FFFF: scenery tried=69 registered=55 noBounds=0 tooThin=0 (outdoorNone=14) +lb 0xA8B4FFFF: scenery tried=34 registered=24 noBounds=0 tooThin=0 (outdoorNone=10) +lb 0xA8B5FFFF: scenery tried=66 registered=43 noBounds=0 tooThin=0 (outdoorNone=23) +lb 0xA8B6FFFF: scenery tried=98 registered=85 noBounds=0 tooThin=0 (outdoorNone=13) +lb 0xA8B7FFFF: scenery tried=31 registered=16 noBounds=0 tooThin=0 (outdoorNone=15) +lb 0xA8B8FFFF: scenery tried=53 registered=14 noBounds=0 tooThin=0 (outdoorNone=39) +lb 0xA9B0FFFF: scenery tried=253 registered=153 noBounds=0 tooThin=0 (outdoorNone=106) +lb 0xA9B1FFFF: scenery tried=184 registered=113 noBounds=0 tooThin=0 (outdoorNone=69) +lb 0xA9B2FFFF: scenery tried=214 registered=136 noBounds=0 tooThin=0 (outdoorNone=68) +lb 0xA9B3FFFF: scenery tried=152 registered=97 noBounds=0 tooThin=0 (outdoorNone=58) +lb 0xA9B4FFFF: scenery tried=126 registered=0 noBounds=0 tooThin=0 (outdoorNone=78) +lb 0xA9B5FFFF: scenery tried=58 registered=8 noBounds=0 tooThin=0 (outdoorNone=48) +lb 0xA9B6FFFF: scenery tried=20 registered=5 noBounds=0 tooThin=0 (outdoorNone=15) +lb 0xA9B7FFFF: scenery tried=130 registered=40 noBounds=0 tooThin=0 (outdoorNone=90) +lb 0xA9B8FFFF: scenery tried=193 registered=57 noBounds=0 tooThin=0 (outdoorNone=136) +lb 0xAAB0FFFF: scenery tried=47 registered=42 noBounds=0 tooThin=0 (outdoorNone=5) +lb 0xAAB1FFFF: scenery tried=46 registered=26 noBounds=0 tooThin=0 (outdoorNone=19) +lb 0xAAB2FFFF: scenery tried=49 registered=37 noBounds=0 tooThin=0 (outdoorNone=12) +lb 0xAAB3FFFF: scenery tried=39 registered=25 noBounds=0 tooThin=0 (outdoorNone=12) +lb 0xAAB4FFFF: scenery tried=30 registered=3 noBounds=0 tooThin=0 (outdoorNone=27) +lb 0xAAB5FFFF: scenery tried=47 registered=5 noBounds=0 tooThin=0 (outdoorNone=30) +lb 0xAAB6FFFF: scenery tried=148 registered=43 noBounds=0 tooThin=0 (outdoorNone=105) +lb 0xAAB7FFFF: scenery tried=182 registered=50 noBounds=0 tooThin=0 (outdoorNone=132) +lb 0xAAB8FFFF: scenery tried=212 registered=49 noBounds=0 tooThin=0 (outdoorNone=163) +lb 0xABB0FFFF: scenery tried=97 registered=31 noBounds=0 tooThin=0 (outdoorNone=74) +lb 0xABB1FFFF: scenery tried=176 registered=46 noBounds=0 tooThin=0 (outdoorNone=130) +lb 0xABB2FFFF: scenery tried=38 registered=9 noBounds=0 tooThin=0 (outdoorNone=29) +lb 0xABB3FFFF: scenery tried=86 registered=27 noBounds=0 tooThin=0 (outdoorNone=41) +lb 0xABB4FFFF: scenery tried=39 registered=9 noBounds=0 tooThin=0 (outdoorNone=30) +lb 0xABB5FFFF: scenery tried=116 registered=22 noBounds=0 tooThin=0 (outdoorNone=48) +lb 0xABB6FFFF: scenery tried=177 registered=55 noBounds=0 tooThin=0 (outdoorNone=122) +lb 0xABB7FFFF: scenery tried=247 registered=76 noBounds=0 tooThin=0 (outdoorNone=171) +lb 0xABB8FFFF: scenery tried=270 registered=83 noBounds=0 tooThin=0 (outdoorNone=187) +lb 0xACB0FFFF: scenery tried=158 registered=40 noBounds=0 tooThin=0 (outdoorNone=118) +lb 0xACB1FFFF: scenery tried=210 registered=49 noBounds=0 tooThin=0 (outdoorNone=161) +lb 0xACB2FFFF: scenery tried=181 registered=48 noBounds=0 tooThin=0 (outdoorNone=129) +lb 0xACB3FFFF: scenery tried=135 registered=31 noBounds=0 tooThin=0 (outdoorNone=104) +lb 0xACB4FFFF: scenery tried=24 registered=3 noBounds=0 tooThin=0 (outdoorNone=21) +lb 0xACB5FFFF: scenery tried=163 registered=50 noBounds=0 tooThin=0 (outdoorNone=160) +lb 0xACB6FFFF: scenery tried=219 registered=50 noBounds=0 tooThin=0 (outdoorNone=169) +lb 0xACB7FFFF: scenery tried=257 registered=76 noBounds=0 tooThin=0 (outdoorNone=182) +lb 0xACB8FFFF: scenery tried=256 registered=76 noBounds=0 tooThin=0 (outdoorNone=180) +lb 0xADB0FFFF: scenery tried=188 registered=45 noBounds=0 tooThin=0 (outdoorNone=143) +lb 0xADB1FFFF: scenery tried=178 registered=44 noBounds=0 tooThin=0 (outdoorNone=134) +lb 0xADB2FFFF: scenery tried=206 registered=36 noBounds=0 tooThin=0 (outdoorNone=138) +lb 0xADB3FFFF: scenery tried=19 registered=4 noBounds=0 tooThin=0 (outdoorNone=15) +lb 0xADB4FFFF: scenery tried=105 registered=39 noBounds=0 tooThin=0 (outdoorNone=60) +lb 0xADB5FFFF: scenery tried=165 registered=60 noBounds=0 tooThin=0 (outdoorNone=105) +lb 0xADB6FFFF: scenery tried=271 registered=90 noBounds=0 tooThin=0 (outdoorNone=172) +lb 0xADB7FFFF: scenery tried=288 registered=82 noBounds=0 tooThin=0 (outdoorNone=194) +lb 0xADB8FFFF: scenery tried=255 registered=65 noBounds=0 tooThin=0 (outdoorNone=180) +[input] MovementTurnLeft Press +[input] MovementStrafeRight Press +[push-back-disp] site=dispatch center=(2.4844,3.3821,3.2242) mvmt=(-0.0212,0.1232,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.016,8.118,97.244) lpos=(2.484,3.382,3.224) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4844,3.3821,3.2242) mvmt=(-0.0212,0.1232,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4844,3.3821,3.2242) mvmt=(-0.0212,0.1232,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0506,3.3821,-1.2608) mvmt=(-0.0212,0.1232,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4364,2.7946,-4.1208) mvmt=(-0.0212,0.1232,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7986,2.7946,-4.1208) mvmt=(-0.0212,0.1232,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7569,1.0854,1.8439) mvmt=(-0.1232,-0.0212,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2181,0.8454,1.7389) mvmt=(-0.1232,-0.0212,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2181,-1.3659,0.3889) mvmt=(-0.1232,-0.0212,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0506,3.3821,1.7442) mvmt=(-0.0212,0.1232,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4844,3.3821,3.2442) mvmt=(-0.0212,0.1232,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4844,3.3821,2.4742) mvmt=(-0.0212,0.1232,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.016,8.118,96.494) lpos=(2.484,3.382,2.474) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4844,3.3821,2.4742) mvmt=(-0.0212,0.1232,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7569,1.0854,1.0939) mvmt=(-0.1232,-0.0212,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2181,0.8454,0.9889) mvmt=(-0.1232,-0.0212,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2181,0.8454,0.9889) out=(0.2181,0.8454,1.7100) delta=(0.0000,0.0000,0.7210) deltaMag=0.7210 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0386 dpPos=-0.0211 dpMove=-0.5213 iDist=0.9614 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.4844,3.3821,3.1953) mvmt=(-0.0212,0.1232,-0.0290) collide=False insertType=0 objState=0x303 winterp=0.0386 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.016,8.118,97.215) lpos=(2.484,3.382,3.195) lprev=(2.506,3.259,3.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4844,3.3821,3.1953) mvmt=(-0.0212,0.1232,-0.0290) collide=False insertType=0 objState=0x303 winterp=0.0386 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4844,3.3821,3.1953) mvmt=(-0.0212,0.1232,-0.0290) collide=False insertType=0 objState=0x303 winterp=0.0386 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0506,3.3821,-1.2897) mvmt=(-0.0212,0.1232,-0.0290) collide=False insertType=0 objState=0x303 winterp=0.0386 return=-1 +[push-back-disp] site=dispatch center=(3.4364,2.7946,-4.1497) mvmt=(-0.0212,0.1232,-0.0290) collide=False insertType=0 objState=0x303 winterp=0.0386 return=-1 +[push-back-disp] site=dispatch center=(-2.7986,2.7946,-4.1497) mvmt=(-0.0212,0.1232,-0.0290) collide=False insertType=0 objState=0x303 winterp=0.0386 return=-1 +[push-back-disp] site=dispatch center=(-0.7569,1.0854,1.8150) mvmt=(-0.1232,-0.0212,-0.0290) collide=False insertType=0 objState=0x303 winterp=0.0386 return=-1 +[push-back-disp] site=dispatch center=(0.2181,0.8454,1.7100) mvmt=(-0.1232,-0.0212,-0.0290) collide=False insertType=0 objState=0x303 winterp=0.0386 return=-1 +[push-back-disp] site=dispatch center=(0.2181,-1.3659,0.3600) mvmt=(-0.1232,-0.0212,-0.0290) collide=False insertType=0 objState=0x303 winterp=0.0386 return=-1 +[push-back-disp] site=dispatch center=(-3.0506,3.3821,1.7153) mvmt=(-0.0212,0.1232,-0.0290) collide=False insertType=0 objState=0x303 winterp=0.0386 return=-1 +[push-back-disp] site=dispatch center=(2.4844,3.3821,3.2153) mvmt=(-0.0212,0.1232,-0.0290) collide=False insertType=0 objState=0x303 winterp=0.0386 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.4734,3.5142,3.1839) mvmt=(-0.0110,0.1321,-0.0114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.027,7.986,97.204) lpos=(2.473,3.514,3.184) lprev=(2.484,3.382,3.195) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4734,3.5142,3.1839) mvmt=(-0.0110,0.1321,-0.0114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4734,3.5142,3.1839) mvmt=(-0.0110,0.1321,-0.0114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0616,3.5142,-1.3011) mvmt=(-0.0110,0.1321,-0.0114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4254,2.9267,-4.1611) mvmt=(-0.0110,0.1321,-0.0114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8096,2.9267,-4.1611) mvmt=(-0.0110,0.1321,-0.0114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8890,1.0744,1.8036) mvmt=(-0.1321,-0.0110,-0.0114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0860,0.8344,1.6986) mvmt=(-0.1321,-0.0110,-0.0114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0860,-1.3769,0.3486) mvmt=(-0.1321,-0.0110,-0.0114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0616,3.5142,1.7039) mvmt=(-0.0110,0.1321,-0.0114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4734,3.5142,3.2039) mvmt=(-0.0110,0.1321,-0.0114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4734,3.5142,2.4339) mvmt=(-0.0110,0.1321,-0.7614) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.027,7.986,96.454) lpos=(2.473,3.514,2.434) lprev=(2.484,3.382,3.195) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4734,3.5142,2.4339) mvmt=(-0.0110,0.1321,-0.7614) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8890,1.0744,1.0536) mvmt=(-0.1321,-0.0110,-0.7614) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0860,0.8344,0.9486) mvmt=(-0.1321,-0.0110,-0.7614) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0860,0.8344,0.9486) out=(0.0860,0.8344,1.6986) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.4734,3.5142,3.1839) mvmt=(-0.0110,0.1321,-0.0114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.027,7.986,97.204) lpos=(2.473,3.514,3.184) lprev=(2.484,3.382,3.195) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4734,3.5142,3.1839) mvmt=(-0.0110,0.1321,-0.0114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4734,3.5142,3.1839) mvmt=(-0.0110,0.1321,-0.0114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0616,3.5142,-1.3011) mvmt=(-0.0110,0.1321,-0.0114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4254,2.9267,-4.1611) mvmt=(-0.0110,0.1321,-0.0114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8096,2.9267,-4.1611) mvmt=(-0.0110,0.1321,-0.0114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8890,1.0744,1.8036) mvmt=(-0.1321,-0.0110,-0.0114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0860,0.8344,1.6986) mvmt=(-0.1321,-0.0110,-0.0114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0860,-1.3769,0.3486) mvmt=(-0.1321,-0.0110,-0.0114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0616,3.5142,1.7039) mvmt=(-0.0110,0.1321,-0.0114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4734,3.5142,3.2039) mvmt=(-0.0110,0.1321,-0.0114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.2723,3.4425,2.9759) mvmt=(-0.2011,-0.0717,-0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.228,8.057,96.996) lpos=(2.272,3.443,2.976) lprev=(2.473,3.514,3.184) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2723,3.4425,2.9759) mvmt=(-0.2011,-0.0717,-0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2723,3.4425,2.9759) mvmt=(-0.2011,-0.0717,-0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8173,0.8733,1.5956) mvmt=(0.0717,-0.2011,-0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1577,0.6333,1.4906) mvmt=(0.0717,-0.2011,-0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1577,-1.5780,0.1406) mvmt=(0.0717,-0.2011,-0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2627,3.4425,1.4959) mvmt=(-0.2011,-0.0717,-0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2627,3.4425,-1.5091) mvmt=(-0.2011,-0.0717,-0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2243,2.8550,-4.3691) mvmt=(-0.2011,-0.0717,-0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0107,2.8550,-4.3691) mvmt=(-0.2011,-0.0717,-0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2223,-0.7775,-0.0241) mvmt=(-0.2011,-0.0717,-0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2723,3.4425,2.9959) mvmt=(-0.2011,-0.0717,-0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2723,3.4425,2.2259) mvmt=(-0.2011,-0.0717,-0.9580) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.228,8.057,96.246) lpos=(2.272,3.443,2.226) lprev=(2.473,3.514,3.184) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8173,0.8733,0.8456) mvmt=(0.0717,-0.2011,-0.9580) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1577,0.6333,0.7406) mvmt=(0.0717,-0.2011,-0.9580) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1577,0.6333,0.7406) out=(0.1577,0.6333,1.4906) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2723,3.4425,2.9759) mvmt=(-0.2011,-0.0717,-0.2080) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.228,8.057,96.996) lpos=(2.272,3.443,2.976) lprev=(2.473,3.514,3.184) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2723,3.4425,2.9759) mvmt=(-0.2011,-0.0717,-0.2080) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2723,3.4425,2.9759) mvmt=(-0.2011,-0.0717,-0.2080) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8173,0.8733,1.5956) mvmt=(0.0717,-0.2011,-0.2080) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1577,0.6333,1.4906) mvmt=(0.0717,-0.2011,-0.2080) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1577,-1.5780,0.1406) mvmt=(0.0717,-0.2011,-0.2080) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2627,3.4425,1.4959) mvmt=(-0.2011,-0.0717,-0.2080) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2627,3.4425,-1.5091) mvmt=(-0.2011,-0.0717,-0.2080) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2243,2.8550,-4.3691) mvmt=(-0.2011,-0.0717,-0.2080) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0107,2.8550,-4.3691) mvmt=(-0.2011,-0.0717,-0.2080) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2223,-0.7775,-0.0241) mvmt=(-0.2011,-0.0717,-0.2080) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2723,3.4425,2.9959) mvmt=(-0.2011,-0.0717,-0.2080) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cell-transit] 0xA9B4014B -> 0xA9B4014A pos=(128.228,8.057,96.516) reason=resolver +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.0770,3.3728,2.7738) mvmt=(-0.1953,-0.0697,-0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.423,8.127,96.794) lpos=(2.077,3.373,2.774) lprev=(2.272,3.443,2.976) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0770,3.3728,2.7738) mvmt=(-0.1953,-0.0697,-0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.0770,3.3728,2.7738) mvmt=(-0.1953,-0.0697,-0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7476,0.6780,1.3935) mvmt=(0.0697,-0.1953,-0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2274,0.4380,1.2885) mvmt=(0.0697,-0.1953,-0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2274,-1.7733,-0.0615) mvmt=(0.0697,-0.1953,-0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.4580,3.3728,1.2938) mvmt=(-0.1953,-0.0697,-0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.4580,3.3728,-1.7112) mvmt=(-0.1953,-0.0697,-0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1070,0.0956,-0.2212) mvmt=(-0.1953,-0.0697,-0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0290,2.7853,-4.5712) mvmt=(-0.1953,-0.0697,-0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2060,2.7853,-4.5712) mvmt=(-0.1953,-0.0697,-0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0270,-0.8472,-0.2262) mvmt=(-0.1953,-0.0697,-0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0770,3.3728,2.7938) mvmt=(-0.1953,-0.0697,-0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0770,3.3728,2.0238) mvmt=(-0.1953,-0.0697,-0.9521) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.423,8.127,96.044) lpos=(2.077,3.373,2.024) lprev=(2.272,3.443,2.976) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7476,0.6780,0.6435) mvmt=(0.0697,-0.1953,-0.9521) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2274,0.4380,0.5385) mvmt=(0.0697,-0.1953,-0.9521) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2274,0.4380,0.5385) out=(0.2274,0.4380,1.2885) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.0770,3.3728,2.7738) mvmt=(-0.1953,-0.0697,-0.2020) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.423,8.127,96.794) lpos=(2.077,3.373,2.774) lprev=(2.272,3.443,2.976) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0770,3.3728,2.7738) mvmt=(-0.1953,-0.0697,-0.2020) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.0770,3.3728,2.7738) mvmt=(-0.1953,-0.0697,-0.2020) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7476,0.6780,1.3935) mvmt=(0.0697,-0.1953,-0.2020) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2274,0.4380,1.2885) mvmt=(0.0697,-0.1953,-0.2020) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2274,-1.7733,-0.0615) mvmt=(0.0697,-0.1953,-0.2020) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.4580,3.3728,1.2938) mvmt=(-0.1953,-0.0697,-0.2020) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.4580,3.3728,-1.7112) mvmt=(-0.1953,-0.0697,-0.2020) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1070,0.0956,-0.2212) mvmt=(-0.1953,-0.0697,-0.2020) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0290,2.7853,-4.5712) mvmt=(-0.1953,-0.0697,-0.2020) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2060,2.7853,-4.5712) mvmt=(-0.1953,-0.0697,-0.2020) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0270,-0.8472,-0.2262) mvmt=(-0.1953,-0.0697,-0.2020) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0770,3.3728,2.7938) mvmt=(-0.1953,-0.0697,-0.2020) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cell-transit] 0xA9B4014A -> 0xA9B4013F pos=(128.423,8.127,96.314) reason=resolver +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.8851,3.3044,2.5754) mvmt=(-0.1918,-0.0684,-0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.615,8.196,96.595) lpos=(1.885,3.304,2.575) lprev=(2.077,3.373,2.774) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.8851,3.3044,2.5754) mvmt=(-0.1918,-0.0684,-0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.8851,3.3044,2.5754) mvmt=(-0.1918,-0.0684,-0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6791,0.4861,1.1951) mvmt=(0.0684,-0.1918,-0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2959,0.2461,1.0901) mvmt=(0.0684,-0.1918,-0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2959,-1.9651,-0.2599) mvmt=(0.0684,-0.1918,-0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6499,3.3044,1.0954) mvmt=(-0.1918,-0.0684,-0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6499,3.3044,-1.9096) mvmt=(-0.1918,-0.0684,-0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9151,0.0272,-0.4196) mvmt=(-0.1918,-0.0684,-0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8371,2.7169,-4.7696) mvmt=(-0.1918,-0.0684,-0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3979,2.7169,-4.7696) mvmt=(-0.1918,-0.0684,-0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8351,-0.9156,-0.4246) mvmt=(-0.1918,-0.0684,-0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8851,3.3044,2.5954) mvmt=(-0.1918,-0.0684,-0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8851,3.3044,1.8254) mvmt=(-0.1918,-0.0684,-0.9484) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.615,8.196,95.845) lpos=(1.885,3.304,1.825) lprev=(2.077,3.373,2.774) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6791,0.4861,0.4451) mvmt=(0.0684,-0.1918,-0.9484) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2959,0.2461,0.3401) mvmt=(0.0684,-0.1918,-0.9484) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2959,0.2461,0.3401) out=(0.2959,0.2461,1.0901) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.8851,3.3044,2.5754) mvmt=(-0.1918,-0.0684,-0.1984) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.615,8.196,96.595) lpos=(1.885,3.304,2.575) lprev=(2.077,3.373,2.774) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.8851,3.3044,2.5754) mvmt=(-0.1918,-0.0684,-0.1984) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.8851,3.3044,2.5754) mvmt=(-0.1918,-0.0684,-0.1984) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6791,0.4861,1.1951) mvmt=(0.0684,-0.1918,-0.1984) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2959,0.2461,1.0901) mvmt=(0.0684,-0.1918,-0.1984) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2959,-1.9651,-0.2599) mvmt=(0.0684,-0.1918,-0.1984) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6499,3.3044,1.0954) mvmt=(-0.1918,-0.0684,-0.1984) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6499,3.3044,-1.9096) mvmt=(-0.1918,-0.0684,-0.1984) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9151,0.0272,-0.4196) mvmt=(-0.1918,-0.0684,-0.1984) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8371,2.7169,-4.7696) mvmt=(-0.1918,-0.0684,-0.1984) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3979,2.7169,-4.7696) mvmt=(-0.1918,-0.0684,-0.1984) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8351,-0.9156,-0.4246) mvmt=(-0.1918,-0.0684,-0.1984) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8851,3.3044,2.5954) mvmt=(-0.1918,-0.0684,-0.1984) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.6965,3.2371,2.3802) mvmt=(-0.1886,-0.0673,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.803,8.263,96.400) lpos=(1.697,3.237,2.380) lprev=(1.885,3.304,2.575) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6965,3.2371,2.3802) mvmt=(-0.1886,-0.0673,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6965,3.2371,2.3802) mvmt=(-0.1886,-0.0673,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.803,8.263,96.400) lpos=(1.697,3.237,2.380) lprev=(1.885,3.304,2.575) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6965,3.2371,2.3802) mvmt=(-0.1886,-0.0673,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6118,0.2975,0.9999) mvmt=(0.0673,-0.1886,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3632,0.0575,0.8949) mvmt=(0.0673,-0.1886,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3632,-2.1538,-0.4551) mvmt=(0.0673,-0.1886,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8385,3.2371,0.9002) mvmt=(-0.1886,-0.0673,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8385,3.2371,-2.1048) mvmt=(-0.1886,-0.0673,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7265,-0.0401,-0.6148) mvmt=(-0.1886,-0.0673,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6485,2.6496,-4.9648) mvmt=(-0.1886,-0.0673,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6465,-0.9829,-0.6198) mvmt=(-0.1886,-0.0673,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6965,3.2371,2.4002) mvmt=(-0.1886,-0.0673,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=Slid +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=4 halted=False +[push-back-disp] site=dispatch center=(1.6965,3.3044,2.3802) mvmt=(-0.1886,0.0000,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.803,8.196,96.400) lpos=(1.697,3.304,2.380) lprev=(1.885,3.304,2.575) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6965,3.3044,2.3802) mvmt=(-0.1886,0.0000,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6791,0.2975,0.9999) mvmt=(-0.0000,-0.1886,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2959,0.0575,0.8949) mvmt=(-0.0000,-0.1886,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2959,-2.1538,-0.4551) mvmt=(0.0000,-0.1886,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8385,3.3044,0.9002) mvmt=(-0.1886,0.0000,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8385,3.3044,-2.1048) mvmt=(-0.1886,0.0000,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7265,0.0272,-0.6148) mvmt=(-0.1886,-0.0000,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6485,2.7169,-4.9648) mvmt=(-0.1886,-0.0000,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6465,-0.9156,-0.6198) mvmt=(-0.1886,0.0000,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6965,3.3044,2.4002) mvmt=(-0.1886,0.0000,-0.1951) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6965,3.3044,1.6302) mvmt=(-0.1886,0.0000,-0.9451) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.803,8.196,95.650) lpos=(1.697,3.304,1.630) lprev=(1.885,3.304,2.575) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6791,0.2975,0.2499) mvmt=(-0.0000,-0.1886,-0.9451) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2959,0.0575,0.1449) mvmt=(-0.0000,-0.1886,-0.9451) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2959,0.0575,0.1449) out=(0.2959,0.0575,0.8949) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.6965,3.3044,2.3802) mvmt=(-0.1886,0.0000,-0.1952) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.803,8.196,96.400) lpos=(1.697,3.304,2.380) lprev=(1.885,3.304,2.575) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6965,3.3044,2.3802) mvmt=(-0.1886,0.0000,-0.1952) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6791,0.2975,0.9999) mvmt=(-0.0000,-0.1886,-0.1952) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2959,0.0575,0.8949) mvmt=(-0.0000,-0.1886,-0.1952) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2959,-2.1538,-0.4551) mvmt=(0.0000,-0.1886,-0.1952) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8385,3.3044,0.9002) mvmt=(-0.1886,0.0000,-0.1952) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8385,3.3044,-2.1048) mvmt=(-0.1886,0.0000,-0.1952) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7265,0.0272,-0.6148) mvmt=(-0.1886,-0.0000,-0.1952) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6485,2.7169,-4.9648) mvmt=(-0.1886,-0.0000,-0.1952) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6465,-0.9156,-0.6198) mvmt=(-0.1886,0.0000,-0.1952) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6965,3.3044,2.4002) mvmt=(-0.1886,0.0000,-0.1952) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.4995,3.3044,2.1765) mvmt=(-0.1970,0.0000,-0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.000,8.196,96.196) lpos=(1.500,3.304,2.176) lprev=(1.697,3.304,2.380) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6791,0.1005,0.7962) mvmt=(-0.0000,-0.1970,-0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2959,-0.1395,0.6912) mvmt=(-0.0000,-0.1970,-0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2959,-2.3507,-0.6588) mvmt=(-0.0000,-0.1970,-0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.0355,3.3044,0.6965) mvmt=(-0.1970,0.0000,-0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4995,3.3044,2.1965) mvmt=(-0.1970,0.0000,-0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4995,3.3044,1.4265) mvmt=(-0.1970,0.0000,-0.9538) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.000,8.196,95.446) lpos=(1.500,3.304,1.426) lprev=(1.697,3.304,2.380) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6791,0.1005,0.0462) mvmt=(-0.0000,-0.1970,-0.9538) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2959,-0.1395,-0.0588) mvmt=(-0.0000,-0.1970,-0.9538) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2959,-0.1395,-0.0588) out=(0.2959,-0.1395,0.6912) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.4995,3.3044,2.1765) mvmt=(-0.1970,0.0000,-0.2038) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.000,8.196,96.196) lpos=(1.500,3.304,2.176) lprev=(1.697,3.304,2.380) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6791,0.1005,0.7962) mvmt=(-0.0000,-0.1970,-0.2038) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2959,-0.1395,0.6912) mvmt=(-0.0000,-0.1970,-0.2038) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2959,-2.3507,-0.6588) mvmt=(-0.0000,-0.1970,-0.2038) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.0355,3.3044,0.6965) mvmt=(-0.1970,0.0000,-0.2038) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4995,3.3044,2.1965) mvmt=(-0.1970,0.0000,-0.2038) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.3049,3.2350,1.9751) mvmt=(-0.1946,-0.0694,-0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.195,8.265,95.995) lpos=(1.305,3.235,1.975) lprev=(1.500,3.304,2.176) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6097,-0.0941,0.5948) mvmt=(0.0694,-0.1946,-0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-0.3341,0.4898) mvmt=(0.0694,-0.1946,-0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-2.5453,-0.8602) mvmt=(0.0694,-0.1946,-0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.2301,3.2350,0.4951) mvmt=(-0.1946,-0.0694,-0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3049,3.2350,1.9951) mvmt=(-0.1946,-0.0694,-0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3049,3.2350,1.2251) mvmt=(-0.1946,-0.0694,-0.9513) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.195,8.265,95.245) lpos=(1.305,3.235,1.225) lprev=(1.500,3.304,2.176) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6097,-0.0941,-0.1552) mvmt=(0.0694,-0.1946,-0.9513) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-0.3341,-0.2602) mvmt=(0.0694,-0.1946,-0.9513) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3653,-0.3341,-0.2602) out=(0.3653,-0.3341,0.4898) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.3049,3.2350,1.9751) mvmt=(-0.1946,-0.0694,-0.2013) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.195,8.265,95.995) lpos=(1.305,3.235,1.975) lprev=(1.500,3.304,2.176) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6097,-0.0941,0.5948) mvmt=(0.0694,-0.1946,-0.2013) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-0.3341,0.4898) mvmt=(0.0694,-0.1946,-0.2013) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-2.5453,-0.8602) mvmt=(0.0694,-0.1946,-0.2013) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.2301,3.2350,0.4951) mvmt=(-0.1946,-0.0694,-0.2013) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3049,3.2350,1.9951) mvmt=(-0.1946,-0.0694,-0.2013) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.1062,3.1640,1.7695) mvmt=(-0.1988,-0.0709,-0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.394,8.336,95.790) lpos=(1.106,3.164,1.770) lprev=(1.305,3.235,1.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5388,-0.2928,0.3892) mvmt=(0.0709,-0.1988,-0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1062,3.1640,1.7695) mvmt=(-0.1988,-0.0709,-0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.394,8.336,95.790) lpos=(1.106,3.164,1.770) lprev=(1.305,3.235,1.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5388,-0.2928,0.3892) mvmt=(0.0709,-0.1988,-0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5388,-0.2928,0.3892) out=(-0.5388,-0.2928,0.7360) delta=(0.0000,0.0000,0.3468) deltaMag=0.3468 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4221 dpPos=0.2348 dpMove=-0.4243 iDist=0.5779 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.1062,3.1640,2.1163) mvmt=(-0.1988,-0.0709,0.1411) collide=False insertType=0 objState=0x303 winterp=0.4221 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.394,8.336,96.136) lpos=(1.106,3.164,2.116) lprev=(1.305,3.235,1.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5388,-0.2928,0.7360) mvmt=(0.0709,-0.1988,0.1411) collide=False insertType=0 objState=0x303 winterp=0.4221 return=-1 +[push-back-disp] site=dispatch center=(0.4362,-0.5329,0.6310) mvmt=(0.0709,-0.1988,0.1411) collide=False insertType=0 objState=0x303 winterp=0.4221 return=-1 +[push-back-disp] site=dispatch center=(0.4362,-2.7441,-0.7190) mvmt=(0.0709,-0.1988,0.1411) collide=False insertType=0 objState=0x303 winterp=0.4221 return=-1 +[push-back-disp] site=dispatch center=(-4.4288,3.1640,0.6363) mvmt=(-0.1988,-0.0709,0.1411) collide=False insertType=0 objState=0x303 winterp=0.4221 return=-1 +[push-back-disp] site=dispatch center=(1.1062,3.1640,2.1363) mvmt=(-0.1988,-0.0709,0.1411) collide=False insertType=0 objState=0x303 winterp=0.4221 return=-1 +[push-back-disp] site=dispatch center=(1.1062,3.1640,2.1163) mvmt=(-0.1988,-0.0709,0.1411) collide=False insertType=1 objState=0x303 winterp=0.4221 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.394,8.336,96.136) lpos=(1.106,3.164,2.116) lprev=(1.305,3.235,1.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5388,-0.2928,0.7360) mvmt=(0.0709,-0.1988,0.1411) collide=False insertType=1 objState=0x303 winterp=0.4221 return=-1 +[push-back-disp] site=dispatch center=(0.4362,-0.5329,0.6310) mvmt=(0.0709,-0.1988,0.1411) collide=False insertType=1 objState=0x303 winterp=0.4221 return=-1 +[push-back-disp] site=dispatch center=(0.4362,-2.7441,-0.7190) mvmt=(0.0709,-0.1988,0.1411) collide=False insertType=1 objState=0x303 winterp=0.4221 return=-1 +[push-back-disp] site=dispatch center=(-4.4288,3.1640,0.6363) mvmt=(-0.1988,-0.0709,0.1411) collide=False insertType=1 objState=0x303 winterp=0.4221 return=-1 +[push-back-disp] site=dispatch center=(1.1062,3.1640,2.1363) mvmt=(-0.1988,-0.0709,0.1411) collide=False insertType=1 objState=0x303 winterp=0.4221 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(1.1027,3.2350,1.7729) mvmt=(-0.2022,0.0000,-0.2022) collide=False insertType=0 objState=0x303 winterp=0.4221 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.397,8.265,95.793) lpos=(1.103,3.235,1.773) lprev=(1.305,3.235,1.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6097,-0.2963,0.3926) mvmt=(-0.0000,-0.2022,-0.2022) collide=False insertType=0 objState=0x303 winterp=0.4221 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-0.5363,0.2877) mvmt=(-0.0000,-0.2022,-0.2022) collide=False insertType=0 objState=0x303 winterp=0.4221 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-2.7475,-1.0624) mvmt=(-0.0000,-0.2022,-0.2022) collide=False insertType=0 objState=0x303 winterp=0.4221 return=-1 +[push-back-disp] site=dispatch center=(-4.4323,3.2350,0.2929) mvmt=(-0.2022,0.0000,-0.2022) collide=False insertType=0 objState=0x303 winterp=0.4221 return=-1 +[push-back-disp] site=dispatch center=(1.1027,3.2350,1.7929) mvmt=(-0.2022,0.0000,-0.2022) collide=False insertType=0 objState=0x303 winterp=0.4221 return=-1 +[push-back-disp] site=dispatch center=(1.1027,3.2350,1.0229) mvmt=(-0.2022,0.0000,-0.9522) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.397,8.265,95.043) lpos=(1.103,3.235,1.023) lprev=(1.305,3.235,1.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6097,-0.2963,-0.3574) mvmt=(-0.0000,-0.2022,-0.9522) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-0.5363,-0.4623) mvmt=(-0.0000,-0.2022,-0.9522) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3653,-0.5363,-0.4623) out=(0.3653,-0.5363,0.2807) delta=(0.0000,0.0000,0.7430) deltaMag=0.7430 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0093 dpPos=-0.0364 dpMove=-0.5213 iDist=0.9907 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.1027,3.2350,1.7660) mvmt=(-0.2022,0.0000,-0.2092) collide=False insertType=0 objState=0x303 winterp=0.0093 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.397,8.265,95.786) lpos=(1.103,3.235,1.766) lprev=(1.305,3.235,1.975) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6097,-0.2963,0.3857) mvmt=(-0.0000,-0.2022,-0.2092) collide=False insertType=0 objState=0x303 winterp=0.0093 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-0.5363,0.2807) mvmt=(-0.0000,-0.2022,-0.2092) collide=False insertType=0 objState=0x303 winterp=0.0093 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-2.7475,-1.0693) mvmt=(-0.0000,-0.2022,-0.2092) collide=False insertType=0 objState=0x303 winterp=0.0093 return=-1 +[push-back-disp] site=dispatch center=(-4.4323,3.2350,0.2860) mvmt=(-0.2022,0.0000,-0.2092) collide=False insertType=0 objState=0x303 winterp=0.0093 return=-1 +[push-back-disp] site=dispatch center=(1.1027,3.2350,1.7860) mvmt=(-0.2022,0.0000,-0.2092) collide=False insertType=0 objState=0x303 winterp=0.0093 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.9054,3.2350,1.5618) mvmt=(-0.1973,0.0000,-0.2041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.595,8.265,95.582) lpos=(0.905,3.235,1.562) lprev=(1.103,3.235,1.766) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6097,-0.4936,0.1815) mvmt=(-0.0000,-0.1973,-0.2041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-0.7336,0.0765) mvmt=(-0.0000,-0.1973,-0.2041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-2.9449,-1.2735) mvmt=(-0.0000,-0.1973,-0.2041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.6296,3.2350,0.0818) mvmt=(-0.1973,0.0000,-0.2041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5537,2.3659,1.5743) mvmt=(0.1972,-0.0060,-0.2041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9054,3.2350,1.5818) mvmt=(-0.1973,0.0000,-0.2041) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9054,3.2350,0.8118) mvmt=(-0.1973,0.0000,-0.9541) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.595,8.265,94.832) lpos=(0.905,3.235,0.812) lprev=(1.103,3.235,1.766) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6097,-0.4936,-0.5685) mvmt=(-0.0000,-0.1973,-0.9541) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-0.7336,-0.6735) mvmt=(-0.0000,-0.1973,-0.9541) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3653,-0.7336,-0.6735) out=(0.3653,-0.7336,0.0765) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.9054,3.2350,1.5618) mvmt=(-0.1973,0.0000,-0.2041) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.595,8.265,95.582) lpos=(0.905,3.235,1.562) lprev=(1.103,3.235,1.766) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6097,-0.4936,0.1815) mvmt=(-0.0000,-0.1973,-0.2041) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-0.7336,0.0765) mvmt=(-0.0000,-0.1973,-0.2041) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-2.9449,-1.2735) mvmt=(-0.0000,-0.1973,-0.2041) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.6296,3.2350,0.0818) mvmt=(-0.1973,0.0000,-0.2041) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5537,2.3659,1.5743) mvmt=(0.1972,-0.0060,-0.2041) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9054,3.2350,1.5818) mvmt=(-0.1973,0.0000,-0.2041) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.7164,3.1675,1.3663) mvmt=(-0.1890,-0.0674,-0.1955) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.784,8.332,95.386) lpos=(0.716,3.168,1.366) lprev=(0.905,3.235,1.562) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5423,-0.6826,-0.0140) mvmt=(0.0674,-0.1890,-0.1955) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7164,3.1675,1.3663) mvmt=(-0.1890,-0.0674,-0.1955) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.784,8.332,95.386) lpos=(0.716,3.168,1.366) lprev=(0.905,3.235,1.562) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5423,-0.6826,-0.0140) mvmt=(0.0674,-0.1890,-0.1955) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5423,-0.6826,-0.0140) out=(-0.5423,-0.6826,0.3462) delta=(0.0000,0.0000,0.3602) deltaMag=0.3602 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.3997 dpPos=0.2253 dpMove=-0.4243 iDist=0.6003 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.7164,3.1675,1.7265) mvmt=(-0.1890,-0.0674,0.1647) collide=False insertType=0 objState=0x303 winterp=0.3997 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.784,8.332,95.747) lpos=(0.716,3.168,1.727) lprev=(0.905,3.235,1.562) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5423,-0.6826,0.3462) mvmt=(0.0674,-0.1890,0.1647) collide=False insertType=0 objState=0x303 winterp=0.3997 return=-1 +[push-back-disp] site=dispatch center=(0.4327,-0.9226,0.2412) mvmt=(0.0674,-0.1890,0.1647) collide=False insertType=0 objState=0x303 winterp=0.3997 return=-1 +[push-back-disp] site=dispatch center=(0.4327,-3.1339,-1.1088) mvmt=(0.0674,-0.1890,0.1647) collide=False insertType=0 objState=0x303 winterp=0.3997 return=-1 +[push-back-disp] site=dispatch center=(1.7447,2.4276,1.7390) mvmt=(0.1910,0.0617,0.1647) collide=False insertType=0 objState=0x303 winterp=0.3997 return=-1 +[push-back-disp] site=dispatch center=(0.7164,3.1675,1.7465) mvmt=(-0.1890,-0.0674,0.1647) collide=False insertType=0 objState=0x303 winterp=0.3997 return=-1 +[push-back-disp] site=dispatch center=(0.7164,3.1675,1.7265) mvmt=(-0.1890,-0.0674,0.1647) collide=False insertType=1 objState=0x303 winterp=0.3997 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.784,8.332,95.747) lpos=(0.716,3.168,1.727) lprev=(0.905,3.235,1.562) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5423,-0.6826,0.3462) mvmt=(0.0674,-0.1890,0.1647) collide=False insertType=1 objState=0x303 winterp=0.3997 return=-1 +[push-back-disp] site=dispatch center=(0.4327,-0.9226,0.2412) mvmt=(0.0674,-0.1890,0.1647) collide=False insertType=1 objState=0x303 winterp=0.3997 return=-1 +[push-back-disp] site=dispatch center=(0.4327,-3.1339,-1.1088) mvmt=(0.0674,-0.1890,0.1647) collide=False insertType=1 objState=0x303 winterp=0.3997 return=-1 +[push-back-disp] site=dispatch center=(1.7447,2.4276,1.7390) mvmt=(0.1910,0.0617,0.1647) collide=False insertType=1 objState=0x303 winterp=0.3997 return=-1 +[push-back-disp] site=dispatch center=(0.7164,3.1675,1.7465) mvmt=(-0.1890,-0.0674,0.1647) collide=False insertType=1 objState=0x303 winterp=0.3997 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(0.7131,3.2350,1.3696) mvmt=(-0.1923,0.0000,-0.1923) collide=False insertType=0 objState=0x303 winterp=0.3997 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.787,8.265,95.390) lpos=(0.713,3.235,1.370) lprev=(0.905,3.235,1.562) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6097,-0.6859,-0.0107) mvmt=(-0.0000,-0.1923,-0.1923) collide=False insertType=0 objState=0x303 winterp=0.3997 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-0.9259,-0.1157) mvmt=(-0.0000,-0.1923,-0.1923) collide=False insertType=0 objState=0x303 winterp=0.3997 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-3.1371,-1.4657) mvmt=(0.0000,-0.1923,-0.1923) collide=False insertType=0 objState=0x303 winterp=0.3997 return=-1 +[push-back-disp] site=dispatch center=(1.7459,2.3601,1.3820) mvmt=(0.1922,-0.0058,-0.1923) collide=False insertType=0 objState=0x303 winterp=0.3997 return=-1 +[push-back-disp] site=dispatch center=(0.7131,3.2350,1.3896) mvmt=(-0.1923,0.0000,-0.1923) collide=False insertType=0 objState=0x303 winterp=0.3997 return=-1 +[push-back-disp] site=dispatch center=(0.7131,3.2350,0.6196) mvmt=(-0.1923,0.0000,-0.9423) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.787,8.265,94.640) lpos=(0.713,3.235,0.620) lprev=(0.905,3.235,1.562) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6097,-0.6859,-0.7607) mvmt=(-0.0000,-0.1923,-0.9423) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-0.9259,-0.8657) mvmt=(-0.0000,-0.1923,-0.9423) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3653,-0.9259,-0.8657) out=(0.3653,-0.9259,-0.1224) delta=(0.0000,0.0000,0.7434) deltaMag=0.7434 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0088 dpPos=-0.0367 dpMove=-0.5213 iDist=0.9912 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.7131,3.2350,1.3629) mvmt=(-0.1923,0.0000,-0.1989) collide=False insertType=0 objState=0x303 winterp=0.0088 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.787,8.265,95.383) lpos=(0.713,3.235,1.363) lprev=(0.905,3.235,1.562) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6097,-0.6859,-0.0174) mvmt=(-0.0000,-0.1923,-0.1989) collide=False insertType=0 objState=0x303 winterp=0.0088 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-0.9259,-0.1224) mvmt=(-0.0000,-0.1923,-0.1989) collide=False insertType=0 objState=0x303 winterp=0.0088 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-3.1371,-1.4724) mvmt=(0.0000,-0.1923,-0.1989) collide=False insertType=0 objState=0x303 winterp=0.0088 return=-1 +[push-back-disp] site=dispatch center=(1.7459,2.3601,1.3754) mvmt=(0.1922,-0.0058,-0.1989) collide=False insertType=0 objState=0x303 winterp=0.0088 return=-1 +[push-back-disp] site=dispatch center=(0.7131,3.2350,1.3829) mvmt=(-0.1923,0.0000,-0.1989) collide=False insertType=0 objState=0x303 winterp=0.0088 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.5187,3.2350,1.1618) mvmt=(-0.1944,0.0000,-0.2011) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.981,8.265,95.182) lpos=(0.519,3.235,1.162) lprev=(0.713,3.235,1.363) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6097,-0.8803,-0.2185) mvmt=(-0.0000,-0.1944,-0.2011) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-1.1203,-0.3235) mvmt=(-0.0000,-0.1944,-0.2011) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-3.3315,-1.6735) mvmt=(-0.0000,-0.1944,-0.2011) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9402,2.3542,1.1743) mvmt=(0.1943,-0.0059,-0.2011) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5187,3.2350,1.1818) mvmt=(-0.1944,0.0000,-0.2011) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5187,3.2350,0.4118) mvmt=(-0.1944,0.0000,-0.9511) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.5187,3.2350,0.4118) out=(0.5187,3.2350,0.4800) delta=(0.0000,0.0000,0.0682) deltaMag=0.0682 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.9091 dpPos=0.4118 dpMove=-0.7500 iDist=0.0909 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(129.981,8.265,94.432) lpos=(0.519,3.235,0.412) lprev=(0.713,3.235,1.363) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(0.5187,3.2350,0.4800) mvmt=(-0.1944,0.0000,-0.8829) collide=False insertType=0 objState=0x303 winterp=0.9091 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.981,8.265,94.500) lpos=(0.519,3.235,0.480) lprev=(0.713,3.235,1.363) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6097,-0.8803,-0.9003) mvmt=(-0.0000,-0.1944,-0.8829) collide=False insertType=0 objState=0x303 winterp=0.9091 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-1.1203,-1.0053) mvmt=(-0.0000,-0.1944,-0.8829) collide=False insertType=0 objState=0x303 winterp=0.9091 return=-1 +[push-back] site=adjust_sphere in=(0.3653,-1.1203,-1.0053) out=(0.3653,-1.1203,-0.3235) delta=(0.0000,0.0000,0.6818) deltaMag=0.6818 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.9091->0.0000 dpPos=0.0061 dpMove=-0.4739 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.5187,3.2350,1.1618) mvmt=(-0.1944,0.0000,-0.2011) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.981,8.265,95.182) lpos=(0.519,3.235,1.162) lprev=(0.713,3.235,1.363) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6097,-0.8803,-0.2185) mvmt=(-0.0000,-0.1944,-0.2011) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-1.1203,-0.3235) mvmt=(-0.0000,-0.1944,-0.2011) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-3.3315,-1.6735) mvmt=(-0.0000,-0.1944,-0.2011) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9402,2.3542,1.1743) mvmt=(0.1943,-0.0059,-0.2011) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5187,3.2350,1.1818) mvmt=(-0.1944,0.0000,-0.2011) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.3305,3.1678,0.9672) mvmt=(-0.1882,-0.0671,-0.1947) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.169,8.332,94.987) lpos=(0.331,3.168,0.967) lprev=(0.519,3.235,1.162) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5426,-1.0685,-0.4131) mvmt=(0.0671,-0.1882,-0.1947) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3305,3.1678,0.9672) mvmt=(-0.1882,-0.0671,-0.1947) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.169,8.332,94.987) lpos=(0.331,3.168,0.967) lprev=(0.519,3.235,1.162) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5426,-1.0685,-0.4131) mvmt=(0.0671,-0.1882,-0.1947) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5426,-1.0685,-0.4131) out=(-0.5426,-1.0685,-0.0396) delta=(0.0000,0.0000,0.3735) deltaMag=0.3735 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.3775 dpPos=0.2159 dpMove=-0.4243 iDist=0.6225 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.3305,3.1678,1.3407) mvmt=(-0.1882,-0.0671,0.1788) collide=False insertType=0 objState=0x303 winterp=0.3775 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.169,8.332,95.361) lpos=(0.331,3.168,1.341) lprev=(0.519,3.235,1.162) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5426,-1.0685,-0.0396) mvmt=(0.0671,-0.1882,0.1788) collide=False insertType=0 objState=0x303 winterp=0.3775 return=-1 +[push-back-disp] site=dispatch center=(0.4324,-1.3085,-0.1446) mvmt=(0.0671,-0.1882,0.1788) collide=False insertType=0 objState=0x303 winterp=0.3775 return=-1 +[push-back-disp] site=dispatch center=(0.4324,-3.5197,-1.4946) mvmt=(0.0671,-0.1882,0.1788) collide=False insertType=0 objState=0x303 winterp=0.3775 return=-1 +[push-back-disp] site=dispatch center=(2.1304,2.4157,1.3531) mvmt=(0.1901,0.0614,0.1788) collide=False insertType=0 objState=0x303 winterp=0.3775 return=-1 +[push-back-disp] site=dispatch center=(0.3305,3.1678,1.3607) mvmt=(-0.1882,-0.0671,0.1788) collide=False insertType=0 objState=0x303 winterp=0.3775 return=-1 +[push-back-disp] site=dispatch center=(0.3305,3.1678,1.3407) mvmt=(-0.1882,-0.0671,0.1788) collide=False insertType=1 objState=0x303 winterp=0.3775 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.169,8.332,95.361) lpos=(0.331,3.168,1.341) lprev=(0.519,3.235,1.162) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5426,-1.0685,-0.0396) mvmt=(0.0671,-0.1882,0.1788) collide=False insertType=1 objState=0x303 winterp=0.3775 return=-1 +[push-back-disp] site=dispatch center=(0.4324,-1.3085,-0.1446) mvmt=(0.0671,-0.1882,0.1788) collide=False insertType=1 objState=0x303 winterp=0.3775 return=-1 +[push-back-disp] site=dispatch center=(0.4324,-3.5197,-1.4946) mvmt=(0.0671,-0.1882,0.1788) collide=False insertType=1 objState=0x303 winterp=0.3775 return=-1 +[push-back-disp] site=dispatch center=(2.1304,2.4157,1.3531) mvmt=(0.1901,0.0614,0.1788) collide=False insertType=1 objState=0x303 winterp=0.3775 return=-1 +[push-back-disp] site=dispatch center=(0.3305,3.1678,1.3607) mvmt=(-0.1882,-0.0671,0.1788) collide=False insertType=1 objState=0x303 winterp=0.3775 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(0.3273,3.2350,0.9704) mvmt=(-0.1914,0.0000,-0.1914) collide=False insertType=0 objState=0x303 winterp=0.3775 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.173,8.265,94.990) lpos=(0.327,3.235,0.970) lprev=(0.519,3.235,1.162) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6097,-1.0717,-0.4099) mvmt=(-0.0000,-0.1914,-0.1914) collide=False insertType=0 objState=0x303 winterp=0.3775 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-1.3117,-0.5149) mvmt=(-0.0000,-0.1914,-0.1914) collide=False insertType=0 objState=0x303 winterp=0.3775 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-3.5230,-1.8649) mvmt=(0.0000,-0.1914,-0.1914) collide=False insertType=0 objState=0x303 winterp=0.3775 return=-1 +[push-back-disp] site=dispatch center=(2.1316,2.3485,0.9829) mvmt=(0.1913,-0.0058,-0.1914) collide=False insertType=0 objState=0x303 winterp=0.3775 return=-1 +[push-back-disp] site=dispatch center=(0.3273,3.2350,0.9904) mvmt=(-0.1914,0.0000,-0.1914) collide=False insertType=0 objState=0x303 winterp=0.3775 return=-1 +[push-back-disp] site=dispatch center=(0.3273,3.2350,0.2204) mvmt=(-0.1914,0.0000,-0.9414) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3273,3.2350,0.2204) out=(0.3273,3.2350,0.4800) delta=(0.0000,0.0000,0.2596) deltaMag=0.2596 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.6539 dpPos=0.2204 dpMove=-0.7500 iDist=0.3461 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.173,8.265,94.240) lpos=(0.327,3.235,0.220) lprev=(0.519,3.235,1.162) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(0.3273,3.2350,0.4800) mvmt=(-0.1914,0.0000,-0.6818) collide=False insertType=0 objState=0x303 winterp=0.6539 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.173,8.265,94.500) lpos=(0.327,3.235,0.480) lprev=(0.519,3.235,1.162) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6097,-1.0717,-0.9003) mvmt=(-0.0000,-0.1914,-0.6818) collide=False insertType=0 objState=0x303 winterp=0.6539 return=-1 +[push-back] site=adjust_sphere in=(-0.6097,-1.0717,-0.9003) out=(-0.6097,-1.0717,-0.0429) delta=(0.0000,0.0000,0.8574) deltaMag=0.8574 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.6539->-0.4893 dpPos=-0.1263 dpMove=-0.3468 iDist=1.7484 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.3273,3.2350,1.3374) mvmt=(-0.1914,0.0000,0.1756) collide=False insertType=0 objState=0x303 winterp=-0.4893 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.173,8.265,95.357) lpos=(0.327,3.235,1.337) lprev=(0.519,3.235,1.162) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6097,-1.0717,-0.0429) mvmt=(-0.0000,-0.1914,0.1756) collide=False insertType=0 objState=0x303 winterp=-0.4893 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-1.3117,-0.1479) mvmt=(-0.0000,-0.1914,0.1756) collide=False insertType=0 objState=0x303 winterp=-0.4893 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-3.5230,-1.4979) mvmt=(0.0000,-0.1914,0.1756) collide=False insertType=0 objState=0x303 winterp=-0.4893 return=-1 +[push-back-disp] site=dispatch center=(2.1316,2.3485,1.3499) mvmt=(0.1913,-0.0058,0.1756) collide=False insertType=0 objState=0x303 winterp=-0.4893 return=-1 +[push-back-disp] site=dispatch center=(0.3273,3.2350,1.3574) mvmt=(-0.1914,0.0000,0.1756) collide=False insertType=0 objState=0x303 winterp=-0.4893 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.1299,3.2350,1.1401) mvmt=(-0.1974,0.0000,-0.1974) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.370,8.265,95.160) lpos=(0.130,3.235,1.140) lprev=(0.327,3.235,1.337) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6097,-1.2691,-0.2402) mvmt=(-0.0000,-0.1974,-0.1974) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-1.5091,-0.3452) mvmt=(-0.0000,-0.1974,-0.1974) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-3.7203,-1.6953) mvmt=(0.0000,-0.1974,-0.1974) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1299,3.2350,1.1600) mvmt=(-0.1974,0.0000,-0.1974) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1299,3.2350,0.3901) mvmt=(-0.1974,0.0000,-0.9474) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1299,3.2350,0.3901) out=(0.1299,3.2350,0.4800) delta=(0.0000,0.0000,0.0899) deltaMag=0.0899 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.8801 dpPos=0.3901 dpMove=-0.7500 iDist=0.1199 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.370,8.265,94.410) lpos=(0.130,3.235,0.390) lprev=(0.327,3.235,1.337) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(0.1299,3.2350,0.4800) mvmt=(-0.1974,0.0000,-0.8574) collide=False insertType=0 objState=0x303 winterp=0.8801 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.370,8.265,94.500) lpos=(0.130,3.235,0.480) lprev=(0.327,3.235,1.337) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6097,-1.2691,-0.9003) mvmt=(-0.0000,-0.1974,-0.8574) collide=False insertType=0 objState=0x303 winterp=0.8801 return=-1 +[push-back] site=adjust_sphere in=(-0.6097,-1.2691,-0.9003) out=(-0.6097,-1.2691,-0.2403) delta=(0.0000,0.0000,0.6600) deltaMag=0.6600 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.8801->0.0000 dpPos=0.0133 dpMove=-0.4667 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.1299,3.2350,1.1401) mvmt=(-0.1974,0.0000,-0.1974) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.370,8.265,95.160) lpos=(0.130,3.235,1.140) lprev=(0.327,3.235,1.337) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6097,-1.2691,-0.2402) mvmt=(-0.0000,-0.1974,-0.1974) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-1.5091,-0.3452) mvmt=(-0.0000,-0.1974,-0.1974) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3653,-3.7203,-1.6953) mvmt=(0.0000,-0.1974,-0.1974) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1299,3.2350,1.1600) mvmt=(-0.1974,0.0000,-0.1974) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-0.0657,3.1675,0.9445) mvmt=(-0.1956,-0.0674,-0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.566,8.332,94.964) lpos=(-0.066,3.168,0.944) lprev=(0.130,3.235,1.140) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5423,-1.4647,-0.4359) mvmt=(0.0674,-0.1956,-0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4327,-1.7047,-0.5408) mvmt=(0.0674,-0.1956,-0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4327,-3.9159,-1.8909) mvmt=(0.0674,-0.1956,-0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0657,3.1675,0.9644) mvmt=(-0.1956,-0.0674,-0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0657,3.1675,0.1945) mvmt=(-0.1956,-0.0674,-0.9456) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0657,3.1675,0.1945) out=(-0.0657,3.1675,0.4800) delta=(0.0000,0.0000,0.2855) deltaMag=0.2855 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.6193 dpPos=0.1945 dpMove=-0.7500 iDist=0.3807 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.566,8.332,94.214) lpos=(-0.066,3.168,0.194) lprev=(0.130,3.235,1.140) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-0.0657,3.1675,0.4800) mvmt=(-0.1956,-0.0674,-0.6600) collide=False insertType=0 objState=0x303 winterp=0.6193 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.566,8.332,94.500) lpos=(-0.066,3.168,0.480) lprev=(0.130,3.235,1.140) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5423,-1.4647,-0.9003) mvmt=(0.0674,-0.1956,-0.6600) collide=False insertType=0 objState=0x303 winterp=0.6193 return=-1 +[push-back] site=adjust_sphere in=(-0.5423,-1.4647,-0.9003) out=(-0.5423,-1.4647,-0.4359) delta=(0.0000,0.0000,0.4644) deltaMag=0.4644 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.6193->0.0000 dpPos=0.1516 dpMove=-0.3284 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-0.0657,3.1675,0.9445) mvmt=(-0.1956,-0.0674,-0.1956) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.566,8.332,94.964) lpos=(-0.066,3.168,0.944) lprev=(0.130,3.235,1.140) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5423,-1.4647,-0.4359) mvmt=(0.0674,-0.1956,-0.1956) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4327,-1.7047,-0.5408) mvmt=(0.0674,-0.1956,-0.1956) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4327,-3.9159,-1.8909) mvmt=(0.0674,-0.1956,-0.1956) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0657,3.1675,0.9644) mvmt=(-0.1956,-0.0674,-0.1956) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-0.2612,3.1001,0.7489) mvmt=(-0.1956,-0.0674,-0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.761,8.400,94.769) lpos=(-0.261,3.100,0.749) lprev=(-0.066,3.168,0.944) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4749,-1.6602,-0.6314) mvmt=(0.0674,-0.1956,-0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5001,-1.9003,-0.7364) mvmt=(0.0674,-0.1956,-0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2612,3.1001,0.7689) mvmt=(-0.1956,-0.0674,-0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2612,3.1001,-0.0011) mvmt=(-0.1956,-0.0674,-0.9456) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2612,3.1001,-0.0011) out=(-0.2612,3.1001,0.4800) delta=(0.0000,0.0000,0.4811) deltaMag=0.4811 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.3585 dpPos=-0.0011 dpMove=-0.7500 iDist=0.6415 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.761,8.400,94.019) lpos=(-0.261,3.100,-0.001) lprev=(-0.066,3.168,0.944) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-0.2612,3.1001,0.4800) mvmt=(-0.1956,-0.0674,-0.4644) collide=False insertType=0 objState=0x303 winterp=0.3585 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.761,8.400,94.500) lpos=(-0.261,3.100,0.480) lprev=(-0.066,3.168,0.944) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4749,-1.6602,-0.9003) mvmt=(0.0674,-0.1956,-0.4644) collide=False insertType=0 objState=0x303 winterp=0.3585 return=-1 +[push-back] site=adjust_sphere in=(-0.4749,-1.6602,-0.9003) out=(-0.4749,-1.6602,-0.6314) delta=(0.0000,0.0000,0.2689) deltaMag=0.2689 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.3585->-0.0000 dpPos=0.2899 dpMove=-0.1901 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-0.2612,3.1001,0.7489) mvmt=(-0.1956,-0.0674,-0.1956) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.761,8.400,94.769) lpos=(-0.261,3.100,0.749) lprev=(-0.066,3.168,0.944) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4749,-1.6602,-0.6314) mvmt=(0.0674,-0.1956,-0.1956) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5001,-1.9003,-0.7364) mvmt=(0.0674,-0.1956,-0.1956) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2612,3.1001,0.7689) mvmt=(-0.1956,-0.0674,-0.1956) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-0.4592,3.0319,0.5509) mvmt=(-0.1980,-0.0682,-0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.959,8.468,94.571) lpos=(-0.459,3.032,0.551) lprev=(-0.261,3.100,0.749) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4066,-1.8582,-0.8294) mvmt=(0.0682,-0.1980,-0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5684,-2.0982,-0.9344) mvmt=(0.0682,-0.1980,-0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4592,3.0319,0.5709) mvmt=(-0.1980,-0.0682,-0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4592,3.0319,-0.1991) mvmt=(-0.1980,-0.0682,-0.9480) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4592,3.0319,-0.1991) out=(-0.4592,3.0319,0.4800) delta=(0.0000,0.0000,0.6791) deltaMag=0.6791 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0946 dpPos=-0.1991 dpMove=-0.7500 iDist=0.9054 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.959,8.468,93.821) lpos=(-0.459,3.032,-0.199) lprev=(-0.261,3.100,0.749) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-0.4592,3.0319,0.4800) mvmt=(-0.1980,-0.0682,-0.2689) collide=False insertType=0 objState=0x303 winterp=0.0946 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.959,8.468,94.500) lpos=(-0.459,3.032,0.480) lprev=(-0.261,3.100,0.749) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4066,-1.8582,-0.9003) mvmt=(0.0682,-0.1980,-0.2689) collide=False insertType=0 objState=0x303 winterp=0.0946 return=-1 +[push-back-disp] site=dispatch center=(0.5684,-2.0982,-1.0053) mvmt=(0.0682,-0.1980,-0.2689) collide=False insertType=0 objState=0x303 winterp=0.0946 return=-1 +[push-back-disp] site=dispatch center=(-0.4592,3.0319,0.5000) mvmt=(-0.1980,-0.0682,-0.2689) collide=False insertType=0 objState=0x303 winterp=0.0946 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-0.8797,2.9594,0.4800) mvmt=(-0.4205,-0.0725,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.380,8.541,94.500) lpos=(-0.880,2.959,0.480) lprev=(-0.459,3.032,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3342,-2.2787,-0.9003) mvmt=(0.0725,-0.4205,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6408,-2.5187,-1.0053) mvmt=(0.0725,-0.4205,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8797,2.9594,0.5000) mvmt=(-0.4205,-0.0725,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8797,2.9594,-0.2700) mvmt=(-0.4205,-0.0725,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.8797,2.9594,-0.2700) out=(-0.8797,2.9594,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(131.380,8.541,93.750) lpos=(-0.880,2.959,-0.270) lprev=(-0.459,3.032,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-0.8797,2.9594,0.4800) mvmt=(-0.4205,-0.0725,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.380,8.541,94.500) lpos=(-0.880,2.959,0.480) lprev=(-0.459,3.032,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3342,-2.2787,-0.9003) mvmt=(0.0725,-0.4205,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6408,-2.5187,-1.0053) mvmt=(0.0725,-0.4205,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8797,2.9594,0.5000) mvmt=(-0.4205,-0.0725,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.2776,2.8909,0.4800) mvmt=(-0.3979,-0.0686,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.778,8.609,94.500) lpos=(-1.278,2.891,0.480) lprev=(-0.880,2.959,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2656,-2.6766,-0.9003) mvmt=(0.0686,-0.3979,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7094,-2.9166,-1.0053) mvmt=(0.0686,-0.3979,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2776,2.8909,0.5000) mvmt=(-0.3979,-0.0686,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2776,2.8909,-0.2700) mvmt=(-0.3979,-0.0686,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.2776,2.8909,-0.2700) out=(-1.2776,2.8909,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(131.778,8.609,93.750) lpos=(-1.278,2.891,-0.270) lprev=(-0.880,2.959,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.2776,2.8909,0.4800) mvmt=(-0.3979,-0.0686,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.778,8.609,94.500) lpos=(-1.278,2.891,0.480) lprev=(-0.880,2.959,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2656,-2.6766,-0.9003) mvmt=(0.0686,-0.3979,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7094,-2.9166,-1.0053) mvmt=(0.0686,-0.3979,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2776,2.8909,0.5000) mvmt=(-0.3979,-0.0686,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.6801,2.8215,0.4800) mvmt=(-0.4025,-0.0694,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.180,8.679,94.500) lpos=(-1.680,2.821,0.480) lprev=(-1.278,2.891,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1962,-3.0791,-0.9003) mvmt=(0.0694,-0.4025,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7788,-3.3191,-1.0053) mvmt=(0.0694,-0.4025,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6801,2.8215,0.5000) mvmt=(-0.4025,-0.0694,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6801,2.8215,-0.2700) mvmt=(-0.4025,-0.0694,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.6801,2.8215,-0.2700) out=(-1.6801,2.8215,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(132.180,8.679,93.750) lpos=(-1.680,2.821,-0.270) lprev=(-1.278,2.891,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.6801,2.8215,0.4800) mvmt=(-0.4025,-0.0694,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.180,8.679,94.500) lpos=(-1.680,2.821,0.480) lprev=(-1.278,2.891,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1962,-3.0791,-0.9003) mvmt=(0.0694,-0.4025,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7788,-3.3191,-1.0053) mvmt=(0.0694,-0.4025,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6801,2.8215,0.5000) mvmt=(-0.4025,-0.0694,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementStrafeLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.6520,2.9417,0.4800) mvmt=(0.0281,0.1202,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.152,8.558,94.500) lpos=(-1.652,2.942,0.480) lprev=(-1.680,2.821,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3164,-3.0510,-0.9003) mvmt=(-0.1202,0.0281,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6586,-3.2910,-1.0053) mvmt=(-0.1202,0.0281,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6520,2.9417,0.5000) mvmt=(0.0281,0.1202,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6520,2.9417,-0.2700) mvmt=(0.0281,0.1202,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.6520,2.9417,-0.2700) out=(-1.6520,2.9417,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(132.152,8.558,93.750) lpos=(-1.652,2.942,-0.270) lprev=(-1.680,2.821,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.6520,2.9417,0.4800) mvmt=(0.0281,0.1202,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.152,8.558,94.500) lpos=(-1.652,2.942,0.480) lprev=(-1.680,2.821,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3164,-3.0510,-0.9003) mvmt=(-0.1202,0.0281,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6586,-3.2910,-1.0053) mvmt=(-0.1202,0.0281,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6520,2.9417,0.5000) mvmt=(0.0281,0.1202,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.6215,3.0726,0.4800) mvmt=(0.0306,0.1310,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.121,8.427,94.500) lpos=(-1.621,3.073,0.480) lprev=(-1.652,2.942,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4474,-3.0205,-0.9003) mvmt=(-0.1310,0.0306,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5276,-3.2605,-1.0053) mvmt=(-0.1310,0.0306,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6215,3.0726,0.5000) mvmt=(0.0306,0.1310,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6215,3.0726,-0.2700) mvmt=(0.0306,0.1310,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.6215,3.0726,-0.2700) out=(-1.6215,3.0726,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(132.121,8.427,93.750) lpos=(-1.621,3.073,-0.270) lprev=(-1.652,2.942,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.6215,3.0726,0.4800) mvmt=(0.0306,0.1310,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.121,8.427,94.500) lpos=(-1.621,3.073,0.480) lprev=(-1.652,2.942,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4474,-3.0205,-0.9003) mvmt=(-0.1310,0.0306,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5276,-3.2605,-1.0053) mvmt=(-0.1310,0.0306,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6215,3.0726,0.5000) mvmt=(0.0306,0.1310,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.5914,3.2013,0.4800) mvmt=(0.0300,0.1286,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.091,8.299,94.500) lpos=(-1.591,3.201,0.480) lprev=(-1.621,3.073,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5760,-2.9904,-0.9003) mvmt=(-0.1286,0.0300,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3990,-3.2304,-1.0053) mvmt=(-0.1286,0.0300,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5914,3.2013,0.5000) mvmt=(0.0300,0.1286,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5914,3.2013,-0.2700) mvmt=(0.0300,0.1286,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.5914,3.2013,-0.2700) out=(-1.5914,3.2013,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(132.091,8.299,93.750) lpos=(-1.591,3.201,-0.270) lprev=(-1.621,3.073,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.5914,3.2013,0.4800) mvmt=(0.0300,0.1286,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.091,8.299,94.500) lpos=(-1.591,3.201,0.480) lprev=(-1.621,3.073,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5760,-2.9904,-0.9003) mvmt=(-0.1286,0.0300,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3990,-3.2304,-1.0053) mvmt=(-0.1286,0.0300,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5914,3.2013,0.5000) mvmt=(0.0300,0.1286,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.5605,3.3335,0.4800) mvmt=(0.0309,0.1323,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.061,8.166,94.500) lpos=(-1.561,3.334,0.480) lprev=(-1.591,3.201,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7083,-2.9595,-0.9003) mvmt=(-0.1323,0.0309,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2667,-3.1996,-1.0053) mvmt=(-0.1323,0.0309,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5605,3.3335,0.5000) mvmt=(0.0309,0.1323,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5605,3.3335,-0.2700) mvmt=(0.0309,0.1323,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.5605,3.3335,-0.2700) out=(-1.5605,3.3335,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(132.061,8.166,93.750) lpos=(-1.561,3.334,-0.270) lprev=(-1.591,3.201,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.5605,3.3335,0.4800) mvmt=(0.0309,0.1323,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.061,8.166,94.500) lpos=(-1.561,3.334,0.480) lprev=(-1.591,3.201,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7083,-2.9595,-0.9003) mvmt=(-0.1323,0.0309,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2667,-3.1996,-1.0053) mvmt=(-0.1323,0.0309,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5605,3.3335,0.5000) mvmt=(0.0309,0.1323,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.5305,3.4621,0.4800) mvmt=(0.0300,0.1286,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.031,8.038,94.500) lpos=(-1.531,3.462,0.480) lprev=(-1.561,3.334,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8369,-2.9295,-0.9003) mvmt=(-0.1286,0.0300,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1381,-3.1695,-1.0053) mvmt=(-0.1286,0.0300,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5305,3.4621,0.5000) mvmt=(0.0300,0.1286,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5305,3.4621,-0.2700) mvmt=(0.0300,0.1286,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.5305,3.4621,-0.2700) out=(-1.5305,3.4621,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(132.031,8.038,93.750) lpos=(-1.531,3.462,-0.270) lprev=(-1.561,3.334,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.5305,3.4621,0.4800) mvmt=(0.0300,0.1286,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.031,8.038,94.500) lpos=(-1.531,3.462,0.480) lprev=(-1.561,3.334,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8369,-2.9295,-0.9003) mvmt=(-0.1286,0.0300,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1381,-3.1695,-1.0053) mvmt=(-0.1286,0.0300,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5305,3.4621,0.5000) mvmt=(0.0300,0.1286,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.5004,3.5913,0.4800) mvmt=(0.0302,0.1291,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.000,7.909,94.500) lpos=(-1.500,3.591,0.480) lprev=(-1.531,3.462,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9660,-2.8994,-0.9003) mvmt=(-0.1291,0.0302,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0090,-3.1394,-1.0053) mvmt=(-0.1291,0.0302,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5004,3.5913,0.5000) mvmt=(0.0302,0.1291,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5004,3.5913,-0.2700) mvmt=(0.0302,0.1291,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.5004,3.5913,-0.2700) out=(-1.5004,3.5913,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(132.000,7.909,93.750) lpos=(-1.500,3.591,-0.270) lprev=(-1.531,3.462,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.5004,3.5913,0.4800) mvmt=(0.0302,0.1291,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.000,7.909,94.500) lpos=(-1.500,3.591,0.480) lprev=(-1.531,3.462,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9660,-2.8994,-0.9003) mvmt=(-0.1291,0.0302,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0090,-3.1394,-1.0053) mvmt=(-0.1291,0.0302,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5004,3.5913,0.5000) mvmt=(0.0302,0.1291,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.0605,3.6041,0.4800) mvmt=(0.4399,0.0129,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.561,7.896,94.500) lpos=(-1.061,3.604,0.480) lprev=(-1.500,3.591,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9789,-2.4595,-0.9003) mvmt=(-0.0129,0.4399,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0039,-2.6995,-1.0053) mvmt=(-0.0129,0.4399,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0605,3.6041,0.5000) mvmt=(0.4399,0.0129,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0605,3.6041,-0.2700) mvmt=(0.4399,0.0129,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.0605,3.6041,-0.2700) out=(-1.0605,3.6041,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(131.561,7.896,93.750) lpos=(-1.061,3.604,-0.270) lprev=(-1.500,3.591,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.0605,3.6041,0.4800) mvmt=(0.4399,0.0129,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.561,7.896,94.500) lpos=(-1.061,3.604,0.480) lprev=(-1.500,3.591,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9789,-2.4595,-0.9003) mvmt=(-0.0129,0.4399,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0039,-2.6995,-1.0053) mvmt=(-0.0129,0.4399,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0605,3.6041,0.5000) mvmt=(0.4399,0.0129,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-0.6383,3.6164,0.4800) mvmt=(0.4222,0.0123,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.138,7.884,94.500) lpos=(-0.638,3.616,0.480) lprev=(-1.061,3.604,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9912,-2.0373,-0.9003) mvmt=(-0.0123,0.4222,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0162,-2.2773,-1.0053) mvmt=(-0.0123,0.4222,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6383,3.6164,0.5000) mvmt=(0.4222,0.0123,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6383,3.6164,-0.2700) mvmt=(0.4222,0.0123,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.6383,3.6164,-0.2700) out=(-0.6383,3.6164,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(131.138,7.884,93.750) lpos=(-0.638,3.616,-0.270) lprev=(-1.061,3.604,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-0.6383,3.6164,0.4800) mvmt=(0.4222,0.0123,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.138,7.884,94.500) lpos=(-0.638,3.616,0.480) lprev=(-1.061,3.604,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9912,-2.0373,-0.9003) mvmt=(-0.0123,0.4222,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0162,-2.2773,-1.0053) mvmt=(-0.0123,0.4222,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6383,3.6164,0.5000) mvmt=(0.4222,0.0123,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-0.2136,3.6289,0.4800) mvmt=(0.4247,0.0124,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.714,7.871,94.500) lpos=(-0.214,3.629,0.480) lprev=(-0.638,3.616,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0036,-1.6126,-0.9003) mvmt=(-0.0124,0.4247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0286,-1.8526,-1.0053) mvmt=(-0.0124,0.4247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2136,3.6289,0.5000) mvmt=(0.4247,0.0124,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2136,3.6289,-0.2700) mvmt=(0.4247,0.0124,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2136,3.6289,-0.2700) out=(-0.2136,3.6289,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.714,7.871,93.750) lpos=(-0.214,3.629,-0.270) lprev=(-0.638,3.616,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-0.2136,3.6289,0.4800) mvmt=(0.4247,0.0124,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.714,7.871,94.500) lpos=(-0.214,3.629,0.480) lprev=(-0.638,3.616,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0036,-1.6126,-0.9003) mvmt=(-0.0124,0.4247,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0286,-1.8526,-1.0053) mvmt=(-0.0124,0.4247,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2136,3.6289,0.5000) mvmt=(0.4247,0.0124,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.2165,3.6414,0.4800) mvmt=(0.4301,0.0126,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.284,7.859,94.500) lpos=(0.216,3.641,0.480) lprev=(-0.214,3.629,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0162,-1.1825,-0.9003) mvmt=(-0.0126,0.4301,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0412,-1.4225,-1.0053) mvmt=(-0.0126,0.4301,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2165,3.6414,0.4800) mvmt=(0.4301,0.0126,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.284,7.859,94.500) lpos=(0.216,3.641,0.480) lprev=(-0.214,3.629,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0162,-1.1825,-0.9003) mvmt=(-0.0126,0.4301,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0412,-1.4225,-1.0053) mvmt=(-0.0126,0.4301,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0412,-1.4225,-1.0053) out=(-0.0412,-1.4225,-0.6361) delta=(0.0000,0.0000,0.3692) deltaMag=0.3692 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3847 dpPos=0.2234 dpMove=-0.4170 iDist=0.6153 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.2165,3.6414,0.8492) mvmt=(0.4301,0.0126,0.3692) collide=False insertType=0 objState=0x303 winterp=0.3847 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.284,7.859,94.869) lpos=(0.216,3.641,0.849) lprev=(-0.214,3.629,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0162,-1.1825,-0.5311) mvmt=(-0.0126,0.4301,0.3692) collide=False insertType=0 objState=0x303 winterp=0.3847 return=-1 +[push-back-disp] site=dispatch center=(-0.0412,-1.4225,-0.6361) mvmt=(-0.0126,0.4301,0.3692) collide=False insertType=0 objState=0x303 winterp=0.3847 return=-1 +[push-back-disp] site=dispatch center=(2.2301,1.9388,0.8616) mvmt=(-0.4303,0.0004,0.3692) collide=False insertType=0 objState=0x303 winterp=0.3847 return=-1 +[push-back-disp] site=dispatch center=(0.2165,3.6414,0.8692) mvmt=(0.4301,0.0126,0.3692) collide=False insertType=0 objState=0x303 winterp=0.3847 return=-1 +[push-back-disp] site=dispatch center=(0.2165,3.6414,0.8492) mvmt=(0.4301,0.0126,0.3692) collide=False insertType=1 objState=0x303 winterp=0.3847 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.284,7.859,94.869) lpos=(0.216,3.641,0.849) lprev=(-0.214,3.629,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0162,-1.1825,-0.5311) mvmt=(-0.0126,0.4301,0.3692) collide=False insertType=1 objState=0x303 winterp=0.3847 return=-1 +[push-back-disp] site=dispatch center=(-0.0412,-1.4225,-0.6361) mvmt=(-0.0126,0.4301,0.3692) collide=False insertType=1 objState=0x303 winterp=0.3847 return=-1 +[push-back-disp] site=dispatch center=(2.2301,1.9388,0.8616) mvmt=(-0.4303,0.0004,0.3692) collide=False insertType=1 objState=0x303 winterp=0.3847 return=-1 +[push-back-disp] site=dispatch center=(0.2165,3.6414,0.8692) mvmt=(0.4301,0.0126,0.3692) collide=False insertType=1 objState=0x303 winterp=0.3847 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(-0.0058,3.6414,0.6949) mvmt=(0.2077,0.0126,0.2149) collide=False insertType=0 objState=0x303 winterp=0.3847 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.506,7.859,94.715) lpos=(-0.006,3.641,0.695) lprev=(-0.214,3.629,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0162,-1.4048,-0.6854) mvmt=(-0.0126,0.2077,0.2149) collide=False insertType=0 objState=0x303 winterp=0.3847 return=-1 +[push-back-disp] site=dispatch center=(-0.0412,-1.6449,-0.7904) mvmt=(-0.0126,0.2077,0.2149) collide=False insertType=0 objState=0x303 winterp=0.3847 return=-1 +[push-back-disp] site=dispatch center=(-0.0058,3.6414,0.7149) mvmt=(0.2077,0.0126,0.2149) collide=False insertType=0 objState=0x303 winterp=0.3847 return=-1 +[push-back-disp] site=dispatch center=(-0.0058,3.6414,-0.0551) mvmt=(0.2077,0.0126,-0.5351) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0058,3.6414,-0.0551) out=(-0.0058,3.6414,0.4800) delta=(0.0000,0.0000,0.5351) deltaMag=0.5351 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.2866 dpPos=-0.0551 dpMove=-0.7500 iDist=0.7134 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.506,7.859,93.965) lpos=(-0.006,3.641,-0.055) lprev=(-0.214,3.629,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-0.0058,3.6414,0.4800) mvmt=(0.2077,0.0126,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2866 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.506,7.859,94.500) lpos=(-0.006,3.641,0.480) lprev=(-0.214,3.629,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0162,-1.4048,-0.9003) mvmt=(-0.0126,0.2077,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2866 return=-1 +[push-back-disp] site=dispatch center=(-0.0412,-1.6449,-1.0053) mvmt=(-0.0126,0.2077,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2866 return=-1 +[push-back] site=adjust_sphere in=(-0.0412,-1.6449,-1.0053) out=(-0.0412,-1.6449,-0.8661) delta=(0.0000,0.0000,0.1392) deltaMag=0.1392 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.2866->0.1010 dpPos=0.3833 dpMove=-0.1494 iDist=0.6476 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-0.0058,3.6414,0.6192) mvmt=(0.2077,0.0126,0.1392) collide=False insertType=0 objState=0x303 winterp=0.1010 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.506,7.859,94.639) lpos=(-0.006,3.641,0.619) lprev=(-0.214,3.629,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0162,-1.4048,-0.7611) mvmt=(-0.0126,0.2077,0.1392) collide=False insertType=0 objState=0x303 winterp=0.1010 return=-1 +[push-back-disp] site=dispatch center=(-0.0412,-1.6449,-0.8661) mvmt=(-0.0126,0.2077,0.1392) collide=False insertType=0 objState=0x303 winterp=0.1010 return=-1 +[push-back-disp] site=dispatch center=(-0.0058,3.6414,0.6392) mvmt=(0.2077,0.0126,0.1392) collide=False insertType=0 objState=0x303 winterp=0.1010 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-0.0058,3.6540,0.6192) mvmt=(0.0000,0.0125,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.506,7.846,94.639) lpos=(-0.006,3.654,0.619) lprev=(-0.006,3.641,0.619) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0287,-1.4048,-0.7611) mvmt=(-0.0125,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0537,-1.6449,-0.8661) mvmt=(-0.0125,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0058,3.6540,0.6392) mvmt=(-0.0000,0.0125,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0058,3.6540,-0.1308) mvmt=(0.0000,0.0125,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0058,3.6540,-0.1308) out=(-0.0058,3.6540,0.4800) delta=(0.0000,0.0000,0.6108) deltaMag=0.6108 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.1856 dpPos=-0.1308 dpMove=-0.7500 iDist=0.8144 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.506,7.846,93.889) lpos=(-0.006,3.654,-0.131) lprev=(-0.006,3.641,0.619) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-0.0058,3.6540,0.4800) mvmt=(0.0000,0.0125,-0.1392) collide=False insertType=0 objState=0x303 winterp=0.1856 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.506,7.846,94.500) lpos=(-0.006,3.654,0.480) lprev=(-0.006,3.641,0.619) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0287,-1.4048,-0.9003) mvmt=(-0.0125,0.0000,-0.1392) collide=False insertType=0 objState=0x303 winterp=0.1856 return=-1 +[push-back-disp] site=dispatch center=(-0.0537,-1.6449,-1.0053) mvmt=(-0.0125,0.0000,-0.1392) collide=False insertType=0 objState=0x303 winterp=0.1856 return=-1 +[push-back] site=adjust_sphere in=(-0.0537,-1.6449,-1.0053) out=(-0.0537,-1.6449,-0.8661) delta=(0.0000,0.0000,0.1392) deltaMag=0.1392 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.1856->0.0000 dpPos=0.3833 dpMove=-0.0967 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-0.0058,3.6540,0.6192) mvmt=(0.0000,0.0125,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.506,7.846,94.639) lpos=(-0.006,3.654,0.619) lprev=(-0.006,3.641,0.619) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0287,-1.4048,-0.7611) mvmt=(-0.0125,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0537,-1.6449,-0.8661) mvmt=(-0.0125,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0058,3.6540,0.6392) mvmt=(-0.0000,0.0125,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.2000,3.6664,0.8321) mvmt=(0.2059,0.0125,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.300,7.834,94.852) lpos=(0.200,3.666,0.832) lprev=(-0.006,3.654,0.619) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0412,-1.1990,-0.5482) mvmt=(-0.0125,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0662,-1.4390,-0.6532) mvmt=(-0.0125,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2458,1.9134,0.8446) mvmt=(-0.2061,-0.0062,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2000,3.6664,0.8521) mvmt=(0.2059,0.0125,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2000,3.6664,0.0821) mvmt=(0.2059,0.0125,-0.5370) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2000,3.6664,0.0821) out=(0.2000,3.6664,0.4800) delta=(0.0000,0.0000,0.3979) deltaMag=0.3979 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.4695 dpPos=0.0821 dpMove=-0.7500 iDist=0.5305 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.300,7.834,94.102) lpos=(0.200,3.666,0.082) lprev=(-0.006,3.654,0.619) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(0.2000,3.6664,0.4800) mvmt=(0.2059,0.0125,-0.1392) collide=False insertType=0 objState=0x303 winterp=0.4695 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.300,7.834,94.500) lpos=(0.200,3.666,0.480) lprev=(-0.006,3.654,0.619) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0412,-1.1990,-0.9003) mvmt=(-0.0125,0.2059,-0.1392) collide=False insertType=0 objState=0x303 winterp=0.4695 return=-1 +[push-back-disp] site=dispatch center=(-0.0662,-1.4390,-1.0053) mvmt=(-0.0125,0.2059,-0.1392) collide=False insertType=0 objState=0x303 winterp=0.4695 return=-1 +[push-back] site=adjust_sphere in=(-0.0662,-1.4390,-1.0053) out=(-0.0662,-1.4390,-0.6532) delta=(0.0000,0.0000,0.3521) deltaMag=0.3521 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.4695->0.0000 dpPos=0.2353 dpMove=-0.2447 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.2000,3.6664,0.8321) mvmt=(0.2059,0.0125,0.2130) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.300,7.834,94.852) lpos=(0.200,3.666,0.832) lprev=(-0.006,3.654,0.619) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0412,-1.1990,-0.5482) mvmt=(-0.0125,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0662,-1.4390,-0.6532) mvmt=(-0.0125,0.2059,0.2130) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2458,1.9134,0.8446) mvmt=(-0.2061,-0.0062,0.2130) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2000,3.6664,0.8521) mvmt=(0.2059,0.0125,0.2130) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.4095,3.6791,1.0489) mvmt=(0.2095,0.0127,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.090,7.821,95.069) lpos=(0.410,3.679,1.049) lprev=(0.200,3.666,0.832) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0538,-0.9895,-0.3314) mvmt=(-0.0127,0.2095,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0788,-1.2295,-0.4364) mvmt=(-0.0127,0.2095,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0788,-3.4407,-1.7864) mvmt=(-0.0127,0.2095,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0360,1.9070,1.0613) mvmt=(-0.2098,-0.0063,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4095,3.6791,1.0689) mvmt=(0.2095,0.0127,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4095,3.6791,0.2989) mvmt=(0.2095,0.0127,-0.5333) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.4095,3.6791,0.2989) out=(0.4095,3.6791,0.4800) delta=(0.0000,0.0000,0.1811) deltaMag=0.1811 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.7585 dpPos=0.2989 dpMove=-0.7500 iDist=0.2415 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.090,7.821,94.319) lpos=(0.410,3.679,0.299) lprev=(0.200,3.666,0.832) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(0.4095,3.6791,0.4800) mvmt=(0.2095,0.0127,-0.3521) collide=False insertType=0 objState=0x303 winterp=0.7585 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.090,7.821,94.500) lpos=(0.410,3.679,0.480) lprev=(0.200,3.666,0.832) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0538,-0.9895,-0.9003) mvmt=(-0.0127,0.2095,-0.3521) collide=False insertType=0 objState=0x303 winterp=0.7585 return=-1 +[push-back-disp] site=dispatch center=(-0.0788,-1.2295,-1.0053) mvmt=(-0.0127,0.2095,-0.3521) collide=False insertType=0 objState=0x303 winterp=0.7585 return=-1 +[push-back] site=adjust_sphere in=(-0.0788,-1.2295,-1.0053) out=(-0.0788,-1.2295,-0.4364) delta=(0.0000,0.0000,0.5689) deltaMag=0.5689 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.7585->0.0000 dpPos=0.0846 dpMove=-0.3954 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.4095,3.6791,1.0489) mvmt=(0.2095,0.0127,0.2167) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.090,7.821,95.069) lpos=(0.410,3.679,1.049) lprev=(0.200,3.666,0.832) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0538,-0.9895,-0.3314) mvmt=(-0.0127,0.2095,0.2167) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0788,-1.2295,-0.4364) mvmt=(-0.0127,0.2095,0.2167) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0788,-3.4407,-1.7864) mvmt=(-0.0127,0.2095,0.2167) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0360,1.9070,1.0613) mvmt=(-0.2098,-0.0063,0.2167) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4095,3.6791,1.0689) mvmt=(0.2095,0.0127,0.2167) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.6239,3.6921,1.2707) mvmt=(0.2144,0.0130,0.2218) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.876,7.808,95.291) lpos=(0.624,3.692,1.271) lprev=(0.410,3.679,1.049) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0668,-0.7751,-0.1096) mvmt=(-0.0130,0.2144,0.2218) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0918,-1.0151,-0.2146) mvmt=(-0.0130,0.2144,0.2218) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0918,-3.2263,-1.5647) mvmt=(-0.0130,0.2144,0.2218) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8213,1.9005,1.2831) mvmt=(-0.2147,-0.0065,0.2218) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6239,3.6921,1.2906) mvmt=(0.2144,0.0130,0.2218) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6239,3.6921,0.5207) mvmt=(0.2144,0.0130,-0.5282) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.876,7.808,94.541) lpos=(0.624,3.692,0.521) lprev=(0.410,3.679,1.049) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0668,-0.7751,-0.8596) mvmt=(-0.0130,0.2144,-0.5282) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0918,-1.0151,-0.9646) mvmt=(-0.0130,0.2144,-0.5282) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0918,-1.0151,-0.9646) out=(-0.0918,-1.0151,-0.2146) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.6239,3.6921,1.2707) mvmt=(0.2144,0.0130,0.2218) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.876,7.808,95.291) lpos=(0.624,3.692,1.271) lprev=(0.410,3.679,1.049) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0668,-0.7751,-0.1096) mvmt=(-0.0130,0.2144,0.2218) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0918,-1.0151,-0.2146) mvmt=(-0.0130,0.2144,0.2218) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0918,-3.2263,-1.5646) mvmt=(-0.0130,0.2144,0.2218) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8213,1.9005,1.2831) mvmt=(-0.2147,-0.0065,0.2218) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6239,3.6921,1.2907) mvmt=(0.2144,0.0130,0.2218) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.8324,3.7047,1.4863) mvmt=(0.2084,0.0126,0.2156) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.668,7.795,95.506) lpos=(0.832,3.705,1.486) lprev=(0.624,3.692,1.271) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0794,-0.5666,0.1060) mvmt=(-0.0126,0.2084,0.2156) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1044,-0.8067,0.0010) mvmt=(-0.0126,0.2084,0.2156) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1044,-3.0179,-1.3490) mvmt=(-0.0126,0.2084,0.2156) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6126,1.8942,1.4988) mvmt=(-0.2087,-0.0063,0.2156) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8324,3.7047,1.5063) mvmt=(0.2084,0.0126,0.2156) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8324,3.7047,0.7363) mvmt=(0.2084,0.0126,-0.5344) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.668,7.795,94.756) lpos=(0.832,3.705,0.736) lprev=(0.624,3.692,1.271) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0794,-0.5666,-0.6440) mvmt=(-0.0126,0.2084,-0.5344) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1044,-0.8067,-0.7490) mvmt=(-0.0126,0.2084,-0.5344) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1044,-0.8067,-0.7490) out=(-0.1044,-0.8067,0.0010) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.8324,3.7047,1.4863) mvmt=(0.2084,0.0126,0.2156) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.668,7.795,95.506) lpos=(0.832,3.705,1.486) lprev=(0.624,3.692,1.271) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0794,-0.5666,0.1060) mvmt=(-0.0126,0.2084,0.2156) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1044,-0.8067,0.0010) mvmt=(-0.0126,0.2084,0.2156) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1044,-3.0179,-1.3490) mvmt=(-0.0126,0.2084,0.2156) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6126,1.8942,1.4987) mvmt=(-0.2087,-0.0063,0.2156) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8324,3.7047,1.5063) mvmt=(0.2084,0.0126,0.2156) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.0355,3.7169,1.6964) mvmt=(0.2031,0.0123,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.465,7.783,95.716) lpos=(1.035,3.717,1.696) lprev=(0.832,3.705,1.486) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0917,-0.3635,0.3161) mvmt=(-0.0123,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1167,-0.6035,0.2111) mvmt=(-0.0123,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1167,-2.8148,-1.1389) mvmt=(-0.0123,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4091,1.8881,1.7089) mvmt=(-0.2034,-0.0061,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0355,3.7169,1.7164) mvmt=(0.2031,0.0123,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0355,3.7169,0.9464) mvmt=(0.2031,0.0123,-0.5399) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.465,7.783,94.966) lpos=(1.035,3.717,0.946) lprev=(0.832,3.705,1.486) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0917,-0.3635,-0.4339) mvmt=(-0.0123,0.2031,-0.5399) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1167,-0.6035,-0.5389) mvmt=(-0.0123,0.2031,-0.5399) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1167,-0.6035,-0.5389) out=(-0.1167,-0.6035,0.2111) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.0355,3.7169,1.6964) mvmt=(0.2031,0.0123,0.2101) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.465,7.783,95.716) lpos=(1.035,3.717,1.696) lprev=(0.832,3.705,1.486) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0917,-0.3635,0.3161) mvmt=(-0.0123,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1167,-0.6035,0.2111) mvmt=(-0.0123,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1167,-2.8148,-1.1389) mvmt=(-0.0123,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4091,1.8881,1.7089) mvmt=(-0.2034,-0.0061,0.2101) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0355,3.7169,1.7164) mvmt=(0.2031,0.0123,0.2101) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.2431,3.7295,1.9112) mvmt=(0.2076,0.0126,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.257,7.770,95.931) lpos=(1.243,3.730,1.911) lprev=(1.035,3.717,1.696) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1043,-0.1559,0.5309) mvmt=(-0.0126,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1293,-0.3959,0.4259) mvmt=(-0.0126,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1293,-2.6072,-0.9241) mvmt=(-0.0126,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2013,1.8818,1.9236) mvmt=(-0.2079,-0.0063,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2431,3.7295,1.9312) mvmt=(0.2076,0.0126,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2431,3.7295,1.1612) mvmt=(0.2076,0.0126,-0.5352) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.257,7.770,95.181) lpos=(1.243,3.730,1.161) lprev=(1.035,3.717,1.696) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1043,-0.1559,-0.2191) mvmt=(-0.0126,0.2076,-0.5352) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1293,-0.3959,-0.3241) mvmt=(-0.0126,0.2076,-0.5352) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1293,-0.3959,-0.3241) out=(-0.1293,-0.3959,0.4259) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.2431,3.7295,1.9112) mvmt=(0.2076,0.0126,0.2148) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.257,7.770,95.931) lpos=(1.243,3.730,1.911) lprev=(1.035,3.717,1.696) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1043,-0.1559,0.5309) mvmt=(-0.0126,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1293,-0.3959,0.4259) mvmt=(-0.0126,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1293,-2.6072,-0.9241) mvmt=(-0.0126,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2013,1.8818,1.9236) mvmt=(-0.2079,-0.0063,0.2148) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2431,3.7295,1.9312) mvmt=(0.2076,0.0126,0.2148) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.4361,3.7412,2.1109) mvmt=(0.1930,0.0117,0.1997) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.064,7.759,96.131) lpos=(1.436,3.741,2.111) lprev=(1.243,3.730,1.911) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1159,0.0371,0.7306) mvmt=(-0.0117,0.1930,0.1997) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1409,-0.2029,0.6256) mvmt=(-0.0117,0.1930,0.1997) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1409,-2.4141,-0.7244) mvmt=(-0.0117,0.1930,0.1997) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0080,1.8760,2.1233) mvmt=(-0.1933,-0.0058,0.1997) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4361,3.7412,2.1309) mvmt=(0.1930,0.0117,0.1997) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4361,3.7412,1.3609) mvmt=(0.1930,0.0117,-0.5503) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.064,7.759,95.381) lpos=(1.436,3.741,1.361) lprev=(1.243,3.730,1.911) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1159,0.0371,-0.0194) mvmt=(-0.0117,0.1930,-0.5503) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1409,-0.2029,-0.1244) mvmt=(-0.0117,0.1930,-0.5503) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1409,-0.2029,-0.1244) out=(-0.1409,-0.2029,0.6256) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.4361,3.7412,2.1109) mvmt=(0.1930,0.0117,0.1997) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.064,7.759,96.131) lpos=(1.436,3.741,2.111) lprev=(1.243,3.730,1.911) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1159,0.0371,0.7306) mvmt=(-0.0117,0.1930,0.1997) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1409,-0.2029,0.6256) mvmt=(-0.0117,0.1930,0.1997) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1409,-2.4141,-0.7244) mvmt=(-0.0117,0.1930,0.1997) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0080,1.8760,2.1233) mvmt=(-0.1933,-0.0058,0.1997) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4361,3.7412,2.1309) mvmt=(0.1930,0.0117,0.1997) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.6380,3.7534,2.3197) mvmt=(0.2018,0.0122,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.862,7.747,96.340) lpos=(1.638,3.753,2.320) lprev=(1.436,3.741,2.111) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6380,3.7534,2.3197) mvmt=(0.2018,0.0122,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1281,0.2390,0.9394) mvmt=(-0.0122,0.2018,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1531,-0.0011,0.8344) mvmt=(-0.0122,0.2018,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1531,-2.2123,-0.5156) mvmt=(-0.0122,0.2018,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8059,1.8699,2.3321) mvmt=(-0.2021,-0.0061,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6380,3.7534,2.3397) mvmt=(0.2018,0.0122,0.2088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6380,3.7534,1.5697) mvmt=(0.2018,0.0122,-0.5412) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.862,7.747,95.590) lpos=(1.638,3.753,1.570) lprev=(1.436,3.741,2.111) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1281,0.2390,0.1894) mvmt=(-0.0122,0.2018,-0.5412) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1531,-0.0011,0.0844) mvmt=(-0.0122,0.2018,-0.5412) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1531,-0.0011,0.0844) out=(-0.1531,-0.0011,0.8344) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.6380,3.7534,2.3197) mvmt=(0.2018,0.0122,0.2088) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.862,7.747,96.340) lpos=(1.638,3.753,2.320) lprev=(1.436,3.741,2.111) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6380,3.7534,2.3197) mvmt=(0.2018,0.0122,0.2088) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1281,0.2390,0.9394) mvmt=(-0.0122,0.2018,0.2088) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1531,-0.0011,0.8344) mvmt=(-0.0122,0.2018,0.2088) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1531,-2.2123,-0.5156) mvmt=(-0.0122,0.2018,0.2088) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8059,1.8699,2.3321) mvmt=(-0.2021,-0.0061,0.2088) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6380,3.7534,2.3397) mvmt=(0.2018,0.0122,0.2088) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.8373,3.7654,2.5259) mvmt=(0.1993,0.0121,0.2062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.663,7.735,96.546) lpos=(1.837,3.765,2.526) lprev=(1.638,3.753,2.320) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.8373,3.7654,2.5259) mvmt=(0.1993,0.0121,0.2062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.8373,3.7654,2.5259) mvmt=(0.1993,0.0121,0.2062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1402,0.4383,1.1456) mvmt=(-0.0121,0.1993,0.2062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1652,0.1983,1.0406) mvmt=(-0.0121,0.1993,0.2062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1652,-2.0130,-0.3094) mvmt=(-0.0121,0.1993,0.2062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6977,3.7654,1.0459) mvmt=(0.1993,0.0121,0.2062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6062,1.8638,2.5383) mvmt=(-0.1996,-0.0060,0.2062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8373,3.7654,2.5459) mvmt=(0.1993,0.0121,0.2062) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8373,3.7654,1.7759) mvmt=(0.1993,0.0121,-0.5438) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.663,7.735,95.796) lpos=(1.837,3.765,1.776) lprev=(1.638,3.753,2.320) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1402,0.4383,0.3956) mvmt=(-0.0121,0.1993,-0.5438) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1652,0.1983,0.2906) mvmt=(-0.0121,0.1993,-0.5438) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1652,0.1983,0.2906) out=(-0.1652,0.1983,1.0406) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.8373,3.7654,2.5259) mvmt=(0.1993,0.0121,0.2062) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.663,7.735,96.546) lpos=(1.837,3.765,2.526) lprev=(1.638,3.753,2.320) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.8373,3.7654,2.5259) mvmt=(0.1993,0.0121,0.2062) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.8373,3.7654,2.5259) mvmt=(0.1993,0.0121,0.2062) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1402,0.4383,1.1456) mvmt=(-0.0121,0.1993,0.2062) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1652,0.1983,1.0406) mvmt=(-0.0121,0.1993,0.2062) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1652,-2.0130,-0.3094) mvmt=(-0.0121,0.1993,0.2062) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6977,3.7654,1.0459) mvmt=(0.1993,0.0121,0.2062) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6062,1.8638,2.5383) mvmt=(-0.1996,-0.0060,0.2062) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8373,3.7654,2.5459) mvmt=(0.1993,0.0121,0.2062) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.0365,3.7775,2.7319) mvmt=(0.1992,0.0120,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.464,7.723,96.752) lpos=(2.036,3.777,2.732) lprev=(1.837,3.765,2.526) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0365,3.7775,2.7319) mvmt=(0.1992,0.0120,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.0365,3.7775,2.7319) mvmt=(0.1992,0.0120,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1522,0.6375,1.3516) mvmt=(-0.0120,0.1992,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1772,0.3975,1.2466) mvmt=(-0.0120,0.1992,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1772,-1.8138,-0.1034) mvmt=(-0.0120,0.1992,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.4985,3.7775,1.2519) mvmt=(0.1992,0.0120,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0665,0.5003,-0.2631) mvmt=(0.1992,0.0120,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9865,-0.4425,-0.2681) mvmt=(0.1992,0.0120,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4068,1.8578,2.7444) mvmt=(-0.1995,-0.0060,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0365,3.7775,2.7519) mvmt=(0.1992,0.0120,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0365,3.7775,1.9819) mvmt=(0.1992,0.0120,-0.5440) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.464,7.723,96.002) lpos=(2.036,3.777,1.982) lprev=(1.837,3.765,2.526) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1522,0.6375,0.6016) mvmt=(-0.0120,0.1992,-0.5440) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1772,0.3975,0.4966) mvmt=(-0.0120,0.1992,-0.5440) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1772,0.3975,0.4966) out=(-0.1772,0.3975,1.2466) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.0365,3.7775,2.7319) mvmt=(0.1992,0.0120,0.2061) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.464,7.723,96.752) lpos=(2.036,3.777,2.732) lprev=(1.837,3.765,2.526) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0365,3.7775,2.7319) mvmt=(0.1992,0.0120,0.2061) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.0365,3.7775,2.7319) mvmt=(0.1992,0.0120,0.2061) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1522,0.6375,1.3516) mvmt=(-0.0120,0.1992,0.2061) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1772,0.3975,1.2466) mvmt=(-0.0120,0.1992,0.2061) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1772,-1.8138,-0.1034) mvmt=(-0.0120,0.1992,0.2061) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.4985,3.7775,1.2519) mvmt=(0.1992,0.0120,0.2061) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0665,0.5003,-0.2631) mvmt=(0.1992,0.0120,0.2061) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9865,-0.4425,-0.2681) mvmt=(0.1992,0.0120,0.2061) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4068,1.8578,2.7444) mvmt=(-0.1995,-0.0060,0.2061) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0365,3.7775,2.7519) mvmt=(0.1992,0.0120,0.2061) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.2305,3.7892,2.9326) mvmt=(0.1940,0.0117,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.270,7.711,96.953) lpos=(2.230,3.789,2.933) lprev=(2.036,3.777,2.732) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2305,3.7892,2.9326) mvmt=(0.1940,0.0117,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2305,3.7892,2.9326) mvmt=(0.1940,0.0117,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1640,0.8315,1.5523) mvmt=(-0.0117,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1890,0.5915,1.4473) mvmt=(-0.0117,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1890,-1.6198,0.0973) mvmt=(-0.0117,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3045,3.7892,1.4526) mvmt=(0.1940,0.0117,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3045,3.7892,-1.5524) mvmt=(0.1940,0.0117,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.2605,0.5120,-0.0624) mvmt=(0.1940,0.0117,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1805,-0.4308,-0.0674) mvmt=(0.1940,0.0117,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2305,3.7892,2.9526) mvmt=(0.1940,0.0117,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2305,3.7892,2.1826) mvmt=(0.1940,0.0117,-0.5493) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.270,7.711,96.203) lpos=(2.230,3.789,2.183) lprev=(2.036,3.777,2.732) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1640,0.8315,0.8023) mvmt=(-0.0117,0.1940,-0.5493) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1890,0.5915,0.6973) mvmt=(-0.0117,0.1940,-0.5493) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1890,0.5915,0.6973) out=(-0.1890,0.5915,1.4473) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2305,3.7892,2.9326) mvmt=(0.1940,0.0117,0.2007) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.270,7.711,96.953) lpos=(2.230,3.789,2.933) lprev=(2.036,3.777,2.732) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2305,3.7892,2.9326) mvmt=(0.1940,0.0117,0.2007) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2305,3.7892,2.9326) mvmt=(0.1940,0.0117,0.2007) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1640,0.8315,1.5523) mvmt=(-0.0117,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1890,0.5915,1.4473) mvmt=(-0.0117,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1890,-1.6198,0.0973) mvmt=(-0.0117,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3045,3.7892,1.4526) mvmt=(0.1940,0.0117,0.2007) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3045,3.7892,-1.5524) mvmt=(0.1940,0.0117,0.2007) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.2605,0.5120,-0.0624) mvmt=(0.1940,0.0117,0.2007) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1805,-0.4308,-0.0674) mvmt=(0.1940,0.0117,0.2007) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2305,3.7892,2.9526) mvmt=(0.1940,0.0117,0.2007) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cell-transit] 0xA9B4013F -> 0xA9B4014A pos=(128.270,7.711,96.473) reason=resolver +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.4229,3.8009,3.1317) mvmt=(0.1924,0.0116,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.077,7.699,97.152) lpos=(2.423,3.801,3.132) lprev=(2.230,3.789,2.933) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4229,3.8009,3.1317) mvmt=(0.1924,0.0116,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4229,3.8009,3.1317) mvmt=(0.1924,0.0116,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.1121,3.8009,-1.3533) mvmt=(0.1924,0.0116,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4529,0.5237,0.1367) mvmt=(0.1924,0.0116,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8601,3.2134,-4.2133) mvmt=(0.1924,0.0116,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3729,-0.4191,0.1317) mvmt=(0.1924,0.0116,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1756,1.0239,1.7514) mvmt=(-0.0116,0.1924,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2006,0.7839,1.6464) mvmt=(-0.0116,0.1924,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2006,-1.4274,0.2964) mvmt=(-0.0116,0.1924,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1121,3.8009,1.6517) mvmt=(0.1924,0.0116,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4229,3.8009,3.1517) mvmt=(0.1924,0.0116,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4229,3.8009,2.3817) mvmt=(0.1924,0.0116,-0.5509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.077,7.699,96.402) lpos=(2.423,3.801,2.382) lprev=(2.230,3.789,2.933) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4229,3.8009,2.3817) mvmt=(0.1924,0.0116,-0.5509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1756,1.0239,1.0014) mvmt=(-0.0116,0.1924,-0.5509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2006,0.7839,0.8964) mvmt=(-0.0116,0.1924,-0.5509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2006,0.7839,0.8964) out=(-0.2006,0.7839,1.6464) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.4229,3.8009,3.1317) mvmt=(0.1924,0.0116,0.1990) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.077,7.699,97.152) lpos=(2.423,3.801,3.132) lprev=(2.230,3.789,2.933) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4229,3.8009,3.1317) mvmt=(0.1924,0.0116,0.1990) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4229,3.8009,3.1317) mvmt=(0.1924,0.0116,0.1990) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.1121,3.8009,-1.3533) mvmt=(0.1924,0.0116,0.1990) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4529,0.5237,0.1367) mvmt=(0.1924,0.0116,0.1990) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8601,3.2134,-4.2133) mvmt=(0.1924,0.0116,0.1990) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3729,-0.4191,0.1317) mvmt=(0.1924,0.0116,0.1990) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1756,1.0239,1.7514) mvmt=(-0.0116,0.1924,0.1990) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2006,0.7839,1.6464) mvmt=(-0.0116,0.1924,0.1990) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2006,-1.4274,0.2964) mvmt=(-0.0116,0.1924,0.1990) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1121,3.8009,1.6517) mvmt=(0.1924,0.0116,0.1990) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4229,3.8009,3.1517) mvmt=(0.1924,0.0116,0.1990) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cell-transit] 0xA9B4014A -> 0xA9B4014B pos=(128.077,7.699,96.672) reason=resolver +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.6327,3.8136,3.3487) mvmt=(0.2098,0.0127,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.867,7.686,97.369) lpos=(2.633,3.814,3.349) lprev=(2.423,3.801,3.132) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6327,3.8136,3.3487) mvmt=(0.2098,0.0127,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.9023,3.8136,-1.1363) mvmt=(0.2098,0.0127,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5847,3.2261,-3.9963) mvmt=(0.2098,0.0127,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6503,3.2261,-3.9963) mvmt=(0.2098,0.0127,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5827,-0.4064,0.3487) mvmt=(0.2098,0.0127,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1883,1.2337,1.9684) mvmt=(-0.0127,0.2098,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2133,0.9937,1.8634) mvmt=(-0.0127,0.2098,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2133,-1.2175,0.5134) mvmt=(-0.0127,0.2098,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9023,3.8136,1.8687) mvmt=(0.2098,0.0127,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6327,3.8136,3.3687) mvmt=(0.2098,0.0127,0.2171) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6327,3.8136,2.5987) mvmt=(0.2098,0.0127,-0.5329) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.867,7.686,96.619) lpos=(2.633,3.814,2.599) lprev=(2.423,3.801,3.132) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6327,3.8136,2.5987) mvmt=(0.2098,0.0127,-0.5329) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.6327,3.8136,2.5987) mvmt=(0.2098,0.0127,-0.5329) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1883,1.2337,1.2184) mvmt=(-0.0127,0.2098,-0.5329) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2133,0.9937,1.1134) mvmt=(-0.0127,0.2098,-0.5329) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2133,0.9937,1.1134) out=(-0.2133,0.9937,1.8634) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.6327,3.8136,3.3487) mvmt=(0.2098,0.0127,0.2171) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.867,7.686,97.369) lpos=(2.633,3.814,3.349) lprev=(2.423,3.801,3.132) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6327,3.8136,3.3487) mvmt=(0.2098,0.0127,0.2171) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.9023,3.8136,-1.1363) mvmt=(0.2098,0.0127,0.2171) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5847,3.2261,-3.9963) mvmt=(0.2098,0.0127,0.2171) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6503,3.2261,-3.9963) mvmt=(0.2098,0.0127,0.2171) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5827,-0.4064,0.3487) mvmt=(0.2098,0.0127,0.2171) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1883,1.2337,1.9684) mvmt=(-0.0127,0.2098,0.2171) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2133,0.9937,1.8634) mvmt=(-0.0127,0.2098,0.2171) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2133,-1.2175,0.5134) mvmt=(-0.0127,0.2098,0.2171) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9023,3.8136,1.8687) mvmt=(0.2098,0.0127,0.2171) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6327,3.8136,3.3687) mvmt=(0.2098,0.0127,0.2171) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.8437,3.8263,3.5670) mvmt=(0.2110,0.0128,0.2182) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.656,7.674,97.587) lpos=(2.844,3.826,3.567) lprev=(2.633,3.814,3.349) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-2.6913,3.8263,-0.9180) mvmt=(0.2110,0.0128,0.2182) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7957,3.2388,-3.7780) mvmt=(0.2110,0.0128,0.2182) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4393,3.2388,-3.7780) mvmt=(0.2110,0.0128,0.2182) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8437,3.8263,3.5870) mvmt=(0.2110,0.0128,0.2182) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8437,3.8263,2.8170) mvmt=(0.2110,0.0128,-0.5318) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(127.656,7.674,96.837) lpos=(2.844,3.826,2.817) lprev=(2.633,3.814,3.349) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8437,3.8263,2.8170) mvmt=(0.2110,0.0128,-0.5318) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8437,3.8263,2.8170) mvmt=(0.2110,0.0128,-0.5318) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6913,3.8263,-1.6680) mvmt=(0.2110,0.0128,-0.5318) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8737,0.5491,-0.1780) mvmt=(0.2110,0.0128,-0.5318) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7957,3.2388,-4.5280) mvmt=(0.2110,0.0128,-0.5318) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4393,3.2388,-4.5280) mvmt=(0.2110,0.0128,-0.5318) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7937,-0.3937,-0.1830) mvmt=(0.2110,0.0128,-0.5318) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8437,3.8263,2.8370) mvmt=(0.2110,0.0128,-0.5318) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8437,3.8263,2.0670) mvmt=(0.2110,0.0128,-1.2818) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.656,7.674,96.087) lpos=(2.844,3.826,2.067) lprev=(2.633,3.814,3.349) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2011,1.4447,0.6867) mvmt=(-0.0128,0.2110,-1.2818) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2261,1.2047,0.5817) mvmt=(-0.0128,0.2110,-1.2818) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2261,-1.0066,-0.7683) mvmt=(-0.0128,0.2110,-1.2818) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6913,3.8263,0.5870) mvmt=(0.2110,0.0128,-1.2818) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6913,3.8263,-2.4180) mvmt=(0.2110,0.0128,-1.2818) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8737,0.5491,-0.9280) mvmt=(0.2110,0.0128,-1.2818) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7957,3.2388,-5.2780) mvmt=(0.2110,0.0128,-1.2818) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4393,3.2388,-5.2780) mvmt=(0.2110,0.0128,-1.2818) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7937,-0.3937,-0.9330) mvmt=(0.2110,0.0128,-1.2818) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4015,1.8334,2.0795) mvmt=(-0.2113,-0.0064,-1.2818) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8437,3.8263,2.0870) mvmt=(0.2110,0.0128,-1.2818) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.8269,3.8253,3.5496) mvmt=(0.1942,0.0117,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.673,7.675,97.570) lpos=(2.827,3.825,3.550) lprev=(2.633,3.814,3.349) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-2.7081,3.8253,-0.9354) mvmt=(0.1942,0.0117,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7789,3.2378,-3.7954) mvmt=(0.1942,0.0117,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4561,3.2378,-3.7954) mvmt=(0.1942,0.0117,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8269,3.8253,3.5696) mvmt=(0.1942,0.0117,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8269,3.8253,2.7996) mvmt=(0.1942,0.0117,-0.5491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.673,7.675,96.820) lpos=(2.827,3.825,2.800) lprev=(2.633,3.814,3.349) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8269,3.8253,2.7996) mvmt=(0.1942,0.0117,-0.5491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8269,3.8253,2.7996) mvmt=(0.1942,0.0117,-0.5491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2001,1.4279,1.4193) mvmt=(-0.0117,0.1942,-0.5491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2251,1.1879,1.3143) mvmt=(-0.0117,0.1942,-0.5491) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2251,1.1879,1.3143) out=(-0.2251,1.1879,1.9800) delta=(0.0000,0.0000,0.6657) deltaMag=0.6657 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.1124 dpPos=-0.1857 dpMove=-0.7500 iDist=0.8876 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.8269,3.8253,3.4653) mvmt=(0.1942,0.0117,0.1166) collide=False insertType=0 objState=0x303 winterp=0.1124 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.673,7.675,97.485) lpos=(2.827,3.825,3.465) lprev=(2.633,3.814,3.349) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8269,3.8253,3.4653) mvmt=(0.1942,0.0117,0.1166) collide=False insertType=0 objState=0x303 winterp=0.1124 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7081,3.8253,-1.0197) mvmt=(0.1942,0.0117,0.1166) collide=False insertType=0 objState=0x303 winterp=0.1124 return=-1 +[push-back-disp] site=dispatch center=(-2.4561,3.2378,-3.8797) mvmt=(0.1942,0.0117,0.1166) collide=False insertType=0 objState=0x303 winterp=0.1124 return=-1 +[push-back-disp] site=dispatch center=(2.8269,3.8253,3.4853) mvmt=(0.1942,0.0117,0.1166) collide=False insertType=0 objState=0x303 winterp=0.1124 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.2313,3.8371,3.4653) mvmt=(0.4044,0.0118,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.269,7.663,97.485) lpos=(3.231,3.837,3.465) lprev=(2.827,3.825,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.2313,3.8371,3.4653) mvmt=(0.4044,0.0118,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.3037,3.8371,-1.0197) mvmt=(0.4044,0.0118,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1833,3.2496,-3.8797) mvmt=(0.4044,0.0118,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0517,3.2496,-3.8797) mvmt=(0.4044,0.0118,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2313,3.8371,3.4853) mvmt=(0.4044,0.0118,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2313,3.8371,2.7153) mvmt=(0.4044,0.0118,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.269,7.663,96.735) lpos=(3.231,3.837,2.715) lprev=(2.827,3.825,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.2313,3.8371,2.7153) mvmt=(0.4044,0.0118,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.2313,3.8371,2.7153) mvmt=(0.4044,0.0118,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2119,1.8323,1.3350) mvmt=(-0.0118,0.4044,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2369,1.5923,1.2300) mvmt=(-0.0118,0.4044,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2369,1.5923,1.2300) out=(-0.2369,1.5923,1.9800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(3.2313,3.8371,3.4653) mvmt=(0.4044,0.0118,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.269,7.663,97.485) lpos=(3.231,3.837,3.465) lprev=(2.827,3.825,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.2313,3.8371,3.4653) mvmt=(0.4044,0.0118,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.3037,3.8371,-1.0197) mvmt=(0.4044,0.0118,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1833,3.2496,-3.8797) mvmt=(0.4044,0.0118,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0517,3.2496,-3.8797) mvmt=(0.4044,0.0118,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2313,3.8371,3.4853) mvmt=(0.4044,0.0118,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.6853,3.8504,3.4653) mvmt=(0.4540,0.0133,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.815,7.650,97.485) lpos=(3.685,3.850,3.465) lprev=(3.231,3.837,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.6853,3.8504,3.4653) mvmt=(0.4540,0.0133,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.8497,3.8504,-1.0197) mvmt=(0.4540,0.0133,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5977,3.2629,-3.8797) mvmt=(0.4540,0.0133,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6853,3.8504,3.4853) mvmt=(0.4540,0.0133,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6853,3.8504,2.7153) mvmt=(0.4540,0.0133,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.815,7.650,96.735) lpos=(3.685,3.850,2.715) lprev=(3.231,3.837,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.6853,3.8504,2.7153) mvmt=(0.4540,0.0133,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.6853,3.8504,2.7153) mvmt=(0.4540,0.0133,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2251,2.2863,1.3350) mvmt=(-0.0133,0.4540,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2501,2.0463,1.2300) mvmt=(-0.0133,0.4540,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2501,-0.1650,-0.1200) mvmt=(-0.0133,0.4540,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2501,-0.1650,-0.1200) out=(-0.2501,-0.1650,0.6300) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.1500 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(3.6853,3.8504,3.4653) mvmt=(0.4540,0.0133,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.815,7.650,97.485) lpos=(3.685,3.850,3.465) lprev=(3.231,3.837,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.6853,3.8504,3.4653) mvmt=(0.4540,0.0133,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.8497,3.8504,-1.0197) mvmt=(0.4540,0.0133,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5977,3.2629,-3.8797) mvmt=(0.4540,0.0133,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6853,3.8504,3.4853) mvmt=(0.4540,0.0133,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.0648,3.7340,3.4653) mvmt=(0.3796,-0.1164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.435,7.766,97.485) lpos=(4.065,3.734,3.465) lprev=(3.685,3.850,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.0648,3.7340,3.4653) mvmt=(0.3796,-0.1164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4702,3.7340,-1.0197) mvmt=(0.3796,-0.1164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2182,3.1465,-3.8797) mvmt=(0.3796,-0.1164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0648,3.7340,3.4853) mvmt=(0.3796,-0.1164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0648,3.7340,2.7153) mvmt=(0.3796,-0.1164,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.435,7.766,96.735) lpos=(4.065,3.734,2.715) lprev=(3.685,3.850,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.0648,3.7340,2.7153) mvmt=(0.3796,-0.1164,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.0648,3.7340,2.7153) mvmt=(0.3796,-0.1164,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1088,2.6658,1.3350) mvmt=(0.1164,0.3796,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1338,2.4258,1.2300) mvmt=(0.1164,0.3796,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1338,0.2146,-0.1200) mvmt=(0.1164,0.3796,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1338,0.2146,-0.1200) out=(-0.1338,0.2146,0.6300) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.1500 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(4.0648,3.7340,3.4653) mvmt=(0.3796,-0.1164,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.435,7.766,97.485) lpos=(4.065,3.734,3.465) lprev=(3.685,3.850,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.0648,3.7340,3.4653) mvmt=(0.3796,-0.1164,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4702,3.7340,-1.0197) mvmt=(0.3796,-0.1164,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2182,3.1465,-3.8797) mvmt=(0.3796,-0.1164,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0648,3.7340,3.4853) mvmt=(0.3796,-0.1164,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.4688,3.6102,3.4653) mvmt=(0.4039,-0.1238,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.031,7.890,97.485) lpos=(4.469,3.610,3.465) lprev=(4.065,3.734,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.4688,3.6102,3.4653) mvmt=(0.4039,-0.1238,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0662,3.6102,-1.0197) mvmt=(0.4039,-0.1238,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8142,3.0227,-3.8797) mvmt=(0.4039,-0.1238,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4688,3.6102,3.4853) mvmt=(0.4039,-0.1238,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4688,3.6102,2.7153) mvmt=(0.4039,-0.1238,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.031,7.890,96.735) lpos=(4.469,3.610,2.715) lprev=(4.065,3.734,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.4688,3.6102,2.7153) mvmt=(0.4039,-0.1238,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.4688,3.6102,2.7153) mvmt=(0.4039,-0.1238,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.4688,3.6102,2.7153) out=(4.4688,3.6102,3.4800) delta=(0.0000,0.0000,0.7647) deltaMag=0.7647 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->-0.0196 dpPos=-0.2847 dpMove=-0.7500 iDist=1.0196 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(4.4688,3.6102,3.4800) mvmt=(0.4039,-0.1238,0.0147) collide=False insertType=0 objState=0x303 winterp=-0.0196 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.031,7.890,97.500) lpos=(4.469,3.610,3.480) lprev=(4.065,3.734,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.4688,3.6102,3.4800) mvmt=(0.4039,-0.1238,0.0147) collide=False insertType=0 objState=0x303 winterp=-0.0196 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0662,3.6102,-1.0050) mvmt=(0.4039,-0.1238,0.0147) collide=False insertType=0 objState=0x303 winterp=-0.0196 return=-1 +[push-back-disp] site=dispatch center=(-0.8142,3.0227,-3.8650) mvmt=(0.4039,-0.1238,0.0147) collide=False insertType=0 objState=0x303 winterp=-0.0196 return=-1 +[push-back-disp] site=dispatch center=(4.4688,3.6102,3.5000) mvmt=(0.4039,-0.1238,0.0147) collide=False insertType=0 objState=0x303 winterp=-0.0196 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.8752,3.4856,3.4800) mvmt=(0.4065,-0.1246,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.625,8.014,97.500) lpos=(4.875,3.486,3.480) lprev=(4.469,3.610,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.8752,3.4856,3.4800) mvmt=(0.4065,-0.1246,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6598,3.4856,-1.0050) mvmt=(0.4065,-0.1246,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4078,2.8981,-3.8650) mvmt=(0.4065,-0.1246,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8752,3.4856,3.5000) mvmt=(0.4065,-0.1246,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8752,3.4856,2.7300) mvmt=(0.4065,-0.1246,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.625,8.014,96.750) lpos=(4.875,3.486,2.730) lprev=(4.469,3.610,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.8752,3.4856,2.7300) mvmt=(0.4065,-0.1246,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.8752,3.4856,2.7300) mvmt=(0.4065,-0.1246,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.8752,3.4856,2.7300) out=(4.8752,3.4856,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(4.8752,3.4856,3.4800) mvmt=(0.4065,-0.1246,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.625,8.014,97.500) lpos=(4.875,3.486,3.480) lprev=(4.469,3.610,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.8752,3.4856,3.4800) mvmt=(0.4065,-0.1246,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6598,3.4856,-1.0050) mvmt=(0.4065,-0.1246,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4078,2.8981,-3.8650) mvmt=(0.4065,-0.1246,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8752,3.4856,3.5000) mvmt=(0.4065,-0.1246,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.2541,3.3694,3.4800) mvmt=(0.3789,-0.1161,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.246,8.131,97.500) lpos=(5.254,3.369,3.480) lprev=(4.875,3.486,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(5.2541,3.3694,3.4800) mvmt=(0.3789,-0.1161,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.2809,3.3694,-1.0050) mvmt=(0.3789,-0.1161,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0289,2.7819,-3.8650) mvmt=(0.3789,-0.1161,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2541,3.3694,3.5000) mvmt=(0.3789,-0.1161,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2541,3.3694,2.7300) mvmt=(0.3789,-0.1161,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.246,8.131,96.750) lpos=(5.254,3.369,2.730) lprev=(4.875,3.486,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(5.2541,3.3694,2.7300) mvmt=(0.3789,-0.1161,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(5.2541,3.3694,2.7300) mvmt=(0.3789,-0.1161,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(5.2541,3.3694,2.7300) out=(5.2541,3.3694,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(5.2541,3.3694,3.4800) mvmt=(0.3789,-0.1161,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.246,8.131,97.500) lpos=(5.254,3.369,3.480) lprev=(4.875,3.486,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(5.2541,3.3694,3.4800) mvmt=(0.3789,-0.1161,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.2809,3.3694,-1.0050) mvmt=(0.3789,-0.1161,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0289,2.7819,-3.8650) mvmt=(0.3789,-0.1161,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2541,3.3694,3.5000) mvmt=(0.3789,-0.1161,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.6621,3.2444,3.4800) mvmt=(0.4080,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.6621,3.2444,3.4800) mvmt=(0.4080,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(124.838,8.256,97.500) lpos=(5.662,3.244,3.480) lprev=(5.254,3.369,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(5.6621,3.2444,3.4800) mvmt=(0.4080,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.1271,3.2444,-1.0050) mvmt=(0.4080,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3791,2.6569,-3.8650) mvmt=(0.4080,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.6621,3.2444,3.5000) mvmt=(0.4080,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9279,1.3327,3.4950) mvmt=(-0.1584,-0.3963,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(124.838,8.256,97.500) lpos=(5.662,3.244,3.480) lprev=(5.254,3.369,3.480) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(5.2541,3.2444,3.4800) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.246,8.256,97.500) lpos=(5.254,3.244,3.480) lprev=(5.254,3.369,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(5.2541,3.2444,3.4800) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.2809,3.2444,-1.0050) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0289,2.6569,-3.8650) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2541,3.2444,3.5000) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2541,3.2444,2.7300) mvmt=(0.0000,-0.1251,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.246,8.256,96.750) lpos=(5.254,3.244,2.730) lprev=(5.254,3.369,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(5.2541,3.2444,2.7300) mvmt=(0.0000,-0.1251,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(5.2541,3.2444,2.7300) mvmt=(0.0000,-0.1251,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(5.2541,3.2444,2.7300) out=(5.2541,3.2444,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(5.2541,3.2444,3.4800) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.246,8.256,97.500) lpos=(5.254,3.244,3.480) lprev=(5.254,3.369,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(5.2541,3.2444,3.4800) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.2809,3.2444,-1.0050) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0289,2.6569,-3.8650) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2541,3.2444,3.5000) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.2541,3.1192,3.4800) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.246,8.381,97.500) lpos=(5.254,3.119,3.480) lprev=(5.254,3.244,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(5.2541,3.1192,3.4800) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.2809,3.1192,-1.0050) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0289,2.5317,-3.8650) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2541,3.1192,3.5000) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2541,3.1192,2.7300) mvmt=(0.0000,-0.1251,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.246,8.381,96.750) lpos=(5.254,3.119,2.730) lprev=(5.254,3.244,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(5.2541,3.1192,2.7300) mvmt=(0.0000,-0.1251,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(5.2541,3.1192,2.7300) mvmt=(0.0000,-0.1251,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(5.2541,3.1192,2.7300) out=(5.2541,3.1192,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(5.2541,3.1192,3.4800) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.246,8.381,97.500) lpos=(5.254,3.119,3.480) lprev=(5.254,3.244,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(5.2541,3.1192,3.4800) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.2809,3.1192,-1.0050) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0289,2.5317,-3.8650) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2541,3.1192,3.5000) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.6621,2.9942,3.4800) mvmt=(0.4080,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.6621,2.9942,3.4800) mvmt=(0.4080,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(124.838,8.506,97.500) lpos=(5.662,2.994,3.480) lprev=(5.254,3.119,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(5.6621,2.9942,3.4800) mvmt=(0.4080,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.1271,2.9942,-1.0050) mvmt=(0.4080,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3791,2.4067,-3.8650) mvmt=(0.4080,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.6621,2.9942,3.5000) mvmt=(0.4080,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6786,1.3534,3.4950) mvmt=(-0.1584,-0.3963,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(124.838,8.506,97.500) lpos=(5.662,2.994,3.480) lprev=(5.254,3.119,3.480) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(5.2541,2.9942,3.4800) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.246,8.506,97.500) lpos=(5.254,2.994,3.480) lprev=(5.254,3.119,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(5.2541,2.9942,3.4800) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.2809,2.9942,-1.0050) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0289,2.4067,-3.8650) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2541,2.9942,3.5000) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2541,2.9942,2.7300) mvmt=(0.0000,-0.1251,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.246,8.506,96.750) lpos=(5.254,2.994,2.730) lprev=(5.254,3.119,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(5.2541,2.9942,2.7300) mvmt=(0.0000,-0.1251,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(5.2541,2.9942,2.7300) mvmt=(0.0000,-0.1251,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(5.2541,2.9942,2.7300) out=(5.2541,2.9942,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(5.2541,2.9942,3.4800) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.246,8.506,97.500) lpos=(5.254,2.994,3.480) lprev=(5.254,3.119,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(5.2541,2.9942,3.4800) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.2809,2.9942,-1.0050) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0289,2.4067,-3.8650) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2541,2.9942,3.5000) mvmt=(0.0000,-0.1251,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.8306,3.0987,3.4800) mvmt=(-0.4235,0.1045,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.669,8.401,97.500) lpos=(4.831,3.099,3.480) lprev=(5.254,2.994,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.8306,3.0987,3.4800) mvmt=(-0.4235,0.1045,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7044,3.0987,-1.0050) mvmt=(-0.4235,0.1045,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4524,2.5112,-3.8650) mvmt=(-0.4235,0.1045,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8306,3.0987,3.5000) mvmt=(-0.4235,0.1045,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8515,2.1734,3.4950) mvmt=(0.1392,0.4134,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8306,3.0987,2.7300) mvmt=(-0.4235,0.1045,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.669,8.401,96.750) lpos=(4.831,3.099,2.730) lprev=(5.254,2.994,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.8306,3.0987,2.7300) mvmt=(-0.4235,0.1045,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.8306,3.0987,2.7300) mvmt=(-0.4235,0.1045,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.8306,3.0987,2.7300) out=(4.8306,3.0987,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(4.8306,3.0987,3.4800) mvmt=(-0.4235,0.1045,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.669,8.401,97.500) lpos=(4.831,3.099,3.480) lprev=(5.254,2.994,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.8306,3.0987,3.4800) mvmt=(-0.4235,0.1045,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7044,3.0987,-1.0050) mvmt=(-0.4235,0.1045,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4524,2.5112,-3.8650) mvmt=(-0.4235,0.1045,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8306,3.0987,3.5000) mvmt=(-0.4235,0.1045,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8515,2.1734,3.4950) mvmt=(0.1392,0.4134,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.4042,3.2040,3.4800) mvmt=(-0.4264,0.1053,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.096,8.296,97.500) lpos=(4.404,3.204,3.480) lprev=(4.831,3.099,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.4042,3.2040,3.4800) mvmt=(-0.4264,0.1053,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1308,3.2040,-1.0050) mvmt=(-0.4264,0.1053,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8788,2.6165,-3.8650) mvmt=(-0.4264,0.1053,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4042,3.2040,3.5000) mvmt=(-0.4264,0.1053,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9917,2.5896,3.4950) mvmt=(0.1402,0.4162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4042,3.2040,2.7300) mvmt=(-0.4264,0.1053,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.096,8.296,96.750) lpos=(4.404,3.204,2.730) lprev=(4.831,3.099,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.4042,3.2040,2.7300) mvmt=(-0.4264,0.1053,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.4042,3.2040,2.7300) mvmt=(-0.4264,0.1053,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.4042,3.2040,2.7300) out=(4.4042,3.2040,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(4.4042,3.2040,3.4800) mvmt=(-0.4264,0.1053,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.096,8.296,97.500) lpos=(4.404,3.204,3.480) lprev=(4.831,3.099,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.4042,3.2040,3.4800) mvmt=(-0.4264,0.1053,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1308,3.2040,-1.0050) mvmt=(-0.4264,0.1053,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8788,2.6165,-3.8650) mvmt=(-0.4264,0.1053,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4042,3.2040,3.5000) mvmt=(-0.4264,0.1053,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9917,2.5896,3.4950) mvmt=(0.1402,0.4162,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.9900,3.3062,3.4800) mvmt=(-0.4143,0.1023,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.510,8.194,97.500) lpos=(3.990,3.306,3.480) lprev=(4.404,3.204,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9900,3.3062,3.4800) mvmt=(-0.4143,0.1023,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5450,3.3062,-1.0050) mvmt=(-0.4143,0.1023,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2930,2.7187,-3.8650) mvmt=(-0.4143,0.1023,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9900,3.3062,3.5000) mvmt=(-0.4143,0.1023,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9900,3.3062,2.7300) mvmt=(-0.4143,0.1023,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.510,8.194,96.750) lpos=(3.990,3.306,2.730) lprev=(4.404,3.204,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9900,3.3062,2.7300) mvmt=(-0.4143,0.1023,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.9900,3.3062,2.7300) mvmt=(-0.4143,0.1023,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6810,2.5910,1.3497) mvmt=(-0.1023,-0.4143,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2940,2.3510,1.2447) mvmt=(-0.1023,-0.4143,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2940,0.1397,-0.1053) mvmt=(-0.1023,-0.4143,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2940,0.1397,-0.1053) out=(0.2940,0.1397,0.6300) delta=(0.0000,0.0000,0.7353) deltaMag=0.7353 n=(0.0000,0.0000,1.0000) d=-0.1500 r=0.4800 winterp=1.0000->0.0196 dpPos=-0.2553 dpMove=-0.7500 iDist=0.9804 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(3.9900,3.3062,3.4653) mvmt=(-0.4143,0.1023,-0.0147) collide=False insertType=0 objState=0x303 winterp=0.0196 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.510,8.194,97.485) lpos=(3.990,3.306,3.465) lprev=(4.404,3.204,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9900,3.3062,3.4653) mvmt=(-0.4143,0.1023,-0.0147) collide=False insertType=0 objState=0x303 winterp=0.0196 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5450,3.3062,-1.0197) mvmt=(-0.4143,0.1023,-0.0147) collide=False insertType=0 objState=0x303 winterp=0.0196 return=-1 +[push-back-disp] site=dispatch center=(-1.2930,2.7187,-3.8797) mvmt=(-0.4143,0.1023,-0.0147) collide=False insertType=0 objState=0x303 winterp=0.0196 return=-1 +[push-back-disp] site=dispatch center=(3.9900,3.3062,3.4853) mvmt=(-0.4143,0.1023,-0.0147) collide=False insertType=0 objState=0x303 winterp=0.0196 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.5753,3.4086,3.4653) mvmt=(-0.4147,0.1024,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.925,8.091,97.485) lpos=(3.575,3.409,3.465) lprev=(3.990,3.306,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.5753,3.4086,3.4653) mvmt=(-0.4147,0.1024,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.9597,3.4086,-1.0197) mvmt=(-0.4147,0.1024,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7077,2.8211,-3.8797) mvmt=(-0.4147,0.1024,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5753,3.4086,3.4853) mvmt=(-0.4147,0.1024,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5753,3.4086,2.7153) mvmt=(-0.4147,0.1024,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.925,8.091,96.735) lpos=(3.575,3.409,2.715) lprev=(3.990,3.306,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.5753,3.4086,2.7153) mvmt=(-0.4147,0.1024,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.5753,3.4086,2.7153) mvmt=(-0.4147,0.1024,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7833,2.1763,1.3350) mvmt=(-0.1024,-0.4147,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1917,1.9363,1.2300) mvmt=(-0.1024,-0.4147,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1917,1.9363,1.2300) out=(0.1917,1.9363,1.9800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(3.5753,3.4086,3.4653) mvmt=(-0.4147,0.1024,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.925,8.091,97.485) lpos=(3.575,3.409,3.465) lprev=(3.990,3.306,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.5753,3.4086,3.4653) mvmt=(-0.4147,0.1024,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.9597,3.4086,-1.0197) mvmt=(-0.4147,0.1024,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7077,2.8211,-3.8797) mvmt=(-0.4147,0.1024,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5753,3.4086,3.4853) mvmt=(-0.4147,0.1024,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.1596,3.5112,3.4653) mvmt=(-0.4157,0.1026,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.340,7.989,97.485) lpos=(3.160,3.511,3.465) lprev=(3.575,3.409,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1596,3.5112,3.4653) mvmt=(-0.4157,0.1026,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.3754,3.5112,-1.0197) mvmt=(-0.4157,0.1026,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1234,2.9237,-3.8797) mvmt=(-0.4157,0.1026,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1596,3.5112,3.4853) mvmt=(-0.4157,0.1026,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1596,3.5112,2.7153) mvmt=(-0.4157,0.1026,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.340,7.989,96.735) lpos=(3.160,3.511,2.715) lprev=(3.575,3.409,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1596,3.5112,2.7153) mvmt=(-0.4157,0.1026,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.1596,3.5112,2.7153) mvmt=(-0.4157,0.1026,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8859,1.7606,1.3350) mvmt=(-0.1026,-0.4157,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0891,1.5206,1.2300) mvmt=(-0.1026,-0.4157,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0891,1.5206,1.2300) out=(0.0891,1.5206,1.9800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(3.1596,3.5112,3.4653) mvmt=(-0.4157,0.1026,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.340,7.989,97.485) lpos=(3.160,3.511,3.465) lprev=(3.575,3.409,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1596,3.5112,3.4653) mvmt=(-0.4157,0.1026,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.3754,3.5112,-1.0197) mvmt=(-0.4157,0.1026,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1234,2.9237,-3.8797) mvmt=(-0.4157,0.1026,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1596,3.5112,3.4853) mvmt=(-0.4157,0.1026,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.7411,3.6145,3.4653) mvmt=(-0.4185,0.1033,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.759,7.885,97.485) lpos=(2.741,3.615,3.465) lprev=(3.160,3.511,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7411,3.6145,3.4653) mvmt=(-0.4185,0.1033,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7939,3.6145,-1.0197) mvmt=(-0.4185,0.1033,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6931,3.0270,-3.8797) mvmt=(-0.4185,0.1033,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5419,3.0270,-3.8797) mvmt=(-0.4185,0.1033,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7411,3.6145,3.4853) mvmt=(-0.4185,0.1033,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7411,3.6145,2.7153) mvmt=(-0.4185,0.1033,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.759,7.885,96.735) lpos=(2.741,3.615,2.715) lprev=(3.160,3.511,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7411,3.6145,2.7153) mvmt=(-0.4185,0.1033,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7411,3.6145,2.7153) mvmt=(-0.4185,0.1033,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9893,1.3421,1.3350) mvmt=(-0.1033,-0.4185,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0143,1.1021,1.2300) mvmt=(-0.1033,-0.4185,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0143,1.1021,1.2300) out=(-0.0143,1.1021,1.9800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.7411,3.6145,3.4653) mvmt=(-0.4185,0.1033,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.759,7.885,97.485) lpos=(2.741,3.615,3.465) lprev=(3.160,3.511,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7411,3.6145,3.4653) mvmt=(-0.4185,0.1033,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7939,3.6145,-1.0197) mvmt=(-0.4185,0.1033,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6931,3.0270,-3.8797) mvmt=(-0.4185,0.1033,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5419,3.0270,-3.8797) mvmt=(-0.4185,0.1033,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7411,3.6145,3.4853) mvmt=(-0.4185,0.1033,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.3353,3.7147,3.4653) mvmt=(-0.4059,0.1002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,7.785,97.485) lpos=(2.335,3.715,3.465) lprev=(2.741,3.615,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3353,3.7147,3.4653) mvmt=(-0.4059,0.1002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.1998,3.7147,-1.0197) mvmt=(-0.4059,0.1002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2872,3.1272,-3.8797) mvmt=(-0.4059,0.1002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9477,3.1272,-3.8797) mvmt=(-0.4059,0.1002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3353,3.7147,3.4853) mvmt=(-0.4059,0.1002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3353,3.7147,2.7153) mvmt=(-0.4059,0.1002,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.165,7.785,96.735) lpos=(2.335,3.715,2.715) lprev=(2.741,3.615,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3353,3.7147,2.7153) mvmt=(-0.4059,0.1002,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3353,3.7147,2.7153) mvmt=(-0.4059,0.1002,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0895,0.9362,1.3350) mvmt=(-0.1002,-0.4059,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1145,0.6962,1.2300) mvmt=(-0.1002,-0.4059,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1145,0.6962,1.2300) out=(-0.1145,0.6962,1.5557) delta=(0.0000,0.0000,0.3257) deltaMag=0.3257 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.5657 dpPos=0.2536 dpMove=-0.5213 iDist=0.4343 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.3353,3.7147,3.0410) mvmt=(-0.4059,0.1002,-0.4243) collide=False insertType=0 objState=0x303 winterp=0.5657 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.165,7.785,97.061) lpos=(2.335,3.715,3.041) lprev=(2.741,3.615,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3353,3.7147,3.0410) mvmt=(-0.4059,0.1002,-0.4243) collide=False insertType=0 objState=0x303 winterp=0.5657 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3353,3.7147,3.0410) mvmt=(-0.4059,0.1002,-0.4243) collide=False insertType=0 objState=0x303 winterp=0.5657 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.1998,3.7147,-1.4440) mvmt=(-0.4059,0.1002,-0.4243) collide=False insertType=0 objState=0x303 winterp=0.5657 return=-1 +[push-back-disp] site=dispatch center=(3.2872,3.1272,-4.3040) mvmt=(-0.4059,0.1002,-0.4243) collide=False insertType=0 objState=0x303 winterp=0.5657 return=-1 +[push-back-disp] site=dispatch center=(-2.9477,3.1272,-4.3040) mvmt=(-0.4059,0.1002,-0.4243) collide=False insertType=0 objState=0x303 winterp=0.5657 return=-1 +[push-back-disp] site=dispatch center=(3.2852,-0.5053,0.0410) mvmt=(-0.4059,0.1002,-0.4243) collide=False insertType=0 objState=0x303 winterp=0.5657 return=-1 +[push-back-disp] site=dispatch center=(2.3353,3.7147,3.0610) mvmt=(-0.4059,0.1002,-0.4243) collide=False insertType=0 objState=0x303 winterp=0.5657 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.1373,3.8159,2.8362) mvmt=(-0.1980,0.1012,-0.2048) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.363,7.684,96.856) lpos=(2.137,3.816,2.836) lprev=(2.335,3.715,3.041) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1373,3.8159,2.8362) mvmt=(-0.1980,0.1012,-0.2048) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.1373,3.8159,2.8362) mvmt=(-0.1980,0.1012,-0.2048) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1906,0.7383,1.4559) mvmt=(-0.1012,-0.1980,-0.2048) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2156,0.4983,1.3509) mvmt=(-0.1012,-0.1980,-0.2048) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2156,-1.7130,0.0009) mvmt=(-0.1012,-0.1980,-0.2048) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3977,3.8159,1.3562) mvmt=(-0.1980,0.1012,-0.2048) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3977,3.8159,-1.6488) mvmt=(-0.1980,0.1012,-0.2048) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1673,0.5387,-0.1588) mvmt=(-0.1980,0.1012,-0.2048) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0893,3.2284,-4.5088) mvmt=(-0.1980,0.1012,-0.2048) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1457,3.2284,-4.5088) mvmt=(-0.1980,0.1012,-0.2048) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0873,-0.4041,-0.1638) mvmt=(-0.1980,0.1012,-0.2048) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1373,3.8159,2.8562) mvmt=(-0.1980,0.1012,-0.2048) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1373,3.8159,2.0862) mvmt=(-0.1980,0.1012,-0.9548) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.363,7.684,96.106) lpos=(2.137,3.816,2.086) lprev=(2.335,3.715,3.041) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1906,0.7383,0.7059) mvmt=(-0.1012,-0.1980,-0.9548) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2156,0.4983,0.6009) mvmt=(-0.1012,-0.1980,-0.9548) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2156,0.4983,0.6009) out=(-0.2156,0.4983,1.3509) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.1373,3.8159,2.8362) mvmt=(-0.1980,0.1012,-0.2048) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.363,7.684,96.856) lpos=(2.137,3.816,2.836) lprev=(2.335,3.715,3.041) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1373,3.8159,2.8362) mvmt=(-0.1980,0.1012,-0.2048) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.1373,3.8159,2.8362) mvmt=(-0.1980,0.1012,-0.2048) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1906,0.7383,1.4559) mvmt=(-0.1012,-0.1980,-0.2048) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2156,0.4983,1.3509) mvmt=(-0.1012,-0.1980,-0.2048) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2156,-1.7130,0.0009) mvmt=(-0.1012,-0.1980,-0.2048) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3977,3.8159,1.3562) mvmt=(-0.1980,0.1012,-0.2048) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3977,3.8159,-1.6488) mvmt=(-0.1980,0.1012,-0.2048) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1673,0.5387,-0.1588) mvmt=(-0.1980,0.1012,-0.2048) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0893,3.2284,-4.5088) mvmt=(-0.1980,0.1012,-0.2048) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1457,3.2284,-4.5088) mvmt=(-0.1980,0.1012,-0.2048) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0873,-0.4041,-0.1638) mvmt=(-0.1980,0.1012,-0.2048) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1373,3.8159,2.8562) mvmt=(-0.1980,0.1012,-0.2048) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cell-transit] 0xA9B4014B -> 0xA9B4014A pos=(128.363,7.684,96.376) reason=resolver +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.9529,3.6816,2.6455) mvmt=(-0.1844,-0.1343,-0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.547,7.818,96.666) lpos=(1.953,3.682,2.646) lprev=(2.137,3.816,2.836) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9529,3.6816,2.6455) mvmt=(-0.1844,-0.1343,-0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.9529,3.6816,2.6455) mvmt=(-0.1844,-0.1343,-0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0563,0.5539,1.2652) mvmt=(0.1343,-0.1844,-0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0813,0.3139,1.1602) mvmt=(0.1343,-0.1844,-0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0813,-1.8973,-0.1898) mvmt=(0.1343,-0.1844,-0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5821,3.6816,1.1655) mvmt=(-0.1844,-0.1343,-0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5821,3.6816,-1.8395) mvmt=(-0.1844,-0.1343,-0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9829,0.4044,-0.3495) mvmt=(-0.1844,-0.1343,-0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9029,-0.5384,-0.3545) mvmt=(-0.1844,-0.1343,-0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9529,3.6816,2.6655) mvmt=(-0.1844,-0.1343,-0.1907) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9529,3.6816,1.8955) mvmt=(-0.1844,-0.1343,-0.9407) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.547,7.818,95.916) lpos=(1.953,3.682,1.896) lprev=(2.137,3.816,2.836) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0563,0.5539,0.5152) mvmt=(0.1343,-0.1844,-0.9407) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0813,0.3139,0.4102) mvmt=(0.1343,-0.1844,-0.9407) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0813,0.3139,0.4102) out=(-0.0813,0.3139,1.1602) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.9529,3.6816,2.6455) mvmt=(-0.1844,-0.1343,-0.1907) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.547,7.818,96.666) lpos=(1.953,3.682,2.646) lprev=(2.137,3.816,2.836) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9529,3.6816,2.6455) mvmt=(-0.1844,-0.1343,-0.1907) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.9529,3.6816,2.6455) mvmt=(-0.1844,-0.1343,-0.1907) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0563,0.5539,1.2652) mvmt=(0.1343,-0.1844,-0.1907) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0813,0.3139,1.1602) mvmt=(0.1343,-0.1844,-0.1907) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0813,-1.8973,-0.1898) mvmt=(0.1343,-0.1844,-0.1907) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5821,3.6816,1.1655) mvmt=(-0.1844,-0.1343,-0.1907) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5821,3.6816,-1.8395) mvmt=(-0.1844,-0.1343,-0.1907) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9829,0.4044,-0.3495) mvmt=(-0.1844,-0.1343,-0.1907) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9029,-0.5384,-0.3545) mvmt=(-0.1844,-0.1343,-0.1907) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9529,3.6816,2.6655) mvmt=(-0.1844,-0.1343,-0.1907) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cell-transit] 0xA9B4014A -> 0xA9B4013F pos=(128.547,7.818,96.186) reason=resolver +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7757,3.5288,2.4622) mvmt=(-0.1772,-0.1527,-0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.724,7.971,96.482) lpos=(1.776,3.529,2.462) lprev=(1.953,3.682,2.646) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7757,3.5288,2.4622) mvmt=(-0.1772,-0.1527,-0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9036,0.3767,1.0819) mvmt=(0.1527,-0.1772,-0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0714,0.1367,0.9769) mvmt=(0.1527,-0.1772,-0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0714,-2.0746,-0.3731) mvmt=(0.1527,-0.1772,-0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.7593,3.5288,0.9822) mvmt=(-0.1772,-0.1527,-0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.7593,3.5288,-2.0228) mvmt=(-0.1772,-0.1527,-0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8057,0.2516,-0.5328) mvmt=(-0.1772,-0.1527,-0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7257,-0.6912,-0.5378) mvmt=(-0.1772,-0.1527,-0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7757,3.5288,2.4822) mvmt=(-0.1772,-0.1527,-0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7757,3.5288,1.7122) mvmt=(-0.1772,-0.1527,-0.9333) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.724,7.971,95.732) lpos=(1.776,3.529,1.712) lprev=(1.953,3.682,2.646) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9036,0.3767,0.3319) mvmt=(0.1527,-0.1772,-0.9333) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0714,0.1367,0.2269) mvmt=(0.1527,-0.1772,-0.9333) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0714,0.1367,0.2269) out=(0.0714,0.1367,0.9769) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.7757,3.5288,2.4622) mvmt=(-0.1772,-0.1527,-0.1834) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.724,7.971,96.482) lpos=(1.776,3.529,2.462) lprev=(1.953,3.682,2.646) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7757,3.5288,2.4622) mvmt=(-0.1772,-0.1527,-0.1834) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9036,0.3767,1.0818) mvmt=(0.1527,-0.1772,-0.1834) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0714,0.1367,0.9769) mvmt=(0.1527,-0.1772,-0.1834) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0714,-2.0746,-0.3732) mvmt=(0.1527,-0.1772,-0.1834) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.7593,3.5288,0.9821) mvmt=(-0.1772,-0.1527,-0.1834) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.7593,3.5288,-2.0229) mvmt=(-0.1772,-0.1527,-0.1834) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8057,0.2516,-0.5329) mvmt=(-0.1772,-0.1527,-0.1834) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7257,-0.6912,-0.5378) mvmt=(-0.1772,-0.1527,-0.1834) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7757,3.5288,2.4821) mvmt=(-0.1772,-0.1527,-0.1834) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.5969,3.3748,2.2772) mvmt=(-0.1788,-0.1541,-0.1849) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.903,8.125,96.297) lpos=(1.597,3.375,2.277) lprev=(1.776,3.529,2.462) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7495,0.1979,0.8969) mvmt=(0.1541,-0.1788,-0.1849) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2255,-0.0421,0.7919) mvmt=(0.1541,-0.1788,-0.1849) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2255,-2.2534,-0.5581) mvmt=(0.1541,-0.1788,-0.1849) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9381,3.3748,0.7972) mvmt=(-0.1788,-0.1541,-0.1849) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8583,2.2471,2.2897) mvmt=(0.1834,0.1486,-0.1849) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5969,3.3748,2.2972) mvmt=(-0.1788,-0.1541,-0.1849) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5969,3.3748,1.5272) mvmt=(-0.1788,-0.1541,-0.9349) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.903,8.125,95.547) lpos=(1.597,3.375,1.527) lprev=(1.776,3.529,2.462) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7495,0.1979,0.1469) mvmt=(0.1541,-0.1788,-0.9349) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2255,-0.0421,0.0419) mvmt=(0.1541,-0.1788,-0.9349) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2255,-0.0421,0.0419) out=(0.2255,-0.0421,0.7919) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5969,3.3748,2.2772) mvmt=(-0.1788,-0.1541,-0.1850) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.903,8.125,96.297) lpos=(1.597,3.375,2.277) lprev=(1.776,3.529,2.462) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7495,0.1979,0.8969) mvmt=(0.1541,-0.1788,-0.1850) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2255,-0.0421,0.7919) mvmt=(0.1541,-0.1788,-0.1850) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2255,-2.2534,-0.5581) mvmt=(0.1541,-0.1788,-0.1850) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9381,3.3748,0.7972) mvmt=(-0.1788,-0.1541,-0.1850) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8583,2.2471,2.2897) mvmt=(0.1834,0.1486,-0.1850) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5969,3.3748,2.2972) mvmt=(-0.1788,-0.1541,-0.1850) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.4162,3.2190,2.0903) mvmt=(-0.1807,-0.1557,-0.1869) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.084,8.281,96.110) lpos=(1.416,3.219,2.090) lprev=(1.597,3.375,2.277) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5938,0.0172,0.7100) mvmt=(0.1557,-0.1807,-0.1869) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3812,-0.2228,0.6050) mvmt=(0.1557,-0.1807,-0.1869) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3812,-2.4341,-0.7450) mvmt=(0.1557,-0.1807,-0.1869) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.1188,3.2190,0.6103) mvmt=(-0.1807,-0.1557,-0.1869) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4162,3.2190,2.1103) mvmt=(-0.1807,-0.1557,-0.1869) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4162,3.2190,1.3403) mvmt=(-0.1807,-0.1557,-0.9369) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.084,8.281,95.360) lpos=(1.416,3.219,1.340) lprev=(1.597,3.375,2.277) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5938,0.0172,-0.0400) mvmt=(0.1557,-0.1807,-0.9369) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3812,-0.2228,-0.1450) mvmt=(0.1557,-0.1807,-0.9369) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3812,-0.2228,-0.1450) out=(0.3812,-0.2228,0.6050) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.4162,3.2190,2.0903) mvmt=(-0.1807,-0.1557,-0.1869) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.084,8.281,96.110) lpos=(1.416,3.219,2.090) lprev=(1.597,3.375,2.277) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5938,0.0172,0.7100) mvmt=(0.1557,-0.1807,-0.1869) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3812,-0.2228,0.6050) mvmt=(0.1557,-0.1807,-0.1869) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3812,-2.4341,-0.7450) mvmt=(0.1557,-0.1807,-0.1869) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.1188,3.2190,0.6103) mvmt=(-0.1807,-0.1557,-0.1869) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4162,3.2190,2.1103) mvmt=(-0.1807,-0.1557,-0.1869) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.2317,3.0600,1.8994) mvmt=(-0.1845,-0.1590,-0.1909) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.268,8.440,95.919) lpos=(1.232,3.060,1.899) lprev=(1.416,3.219,2.090) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4348,-0.1673,0.5191) mvmt=(0.1590,-0.1845,-0.1909) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2317,3.0600,1.8994) mvmt=(-0.1845,-0.1590,-0.1909) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.268,8.440,95.919) lpos=(1.232,3.060,1.899) lprev=(1.416,3.219,2.090) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4348,-0.1673,0.5191) mvmt=(0.1590,-0.1845,-0.1909) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4348,-0.1673,0.5191) out=(-0.4348,-0.1673,0.8615) delta=(0.0000,0.0000,0.3424) deltaMag=0.3424 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4293 dpPos=0.2379 dpMove=-0.4243 iDist=0.5707 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.2317,3.0600,2.2418) mvmt=(-0.1845,-0.1590,0.1515) collide=False insertType=0 objState=0x303 winterp=0.4293 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.268,8.440,96.262) lpos=(1.232,3.060,2.242) lprev=(1.416,3.219,2.090) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4348,-0.1673,0.8615) mvmt=(0.1590,-0.1845,0.1515) collide=False insertType=0 objState=0x303 winterp=0.4293 return=-1 +[push-back-disp] site=dispatch center=(0.5402,-0.4073,0.7565) mvmt=(0.1590,-0.1845,0.1515) collide=False insertType=0 objState=0x303 winterp=0.4293 return=-1 +[push-back-disp] site=dispatch center=(0.5402,-2.6186,-0.5935) mvmt=(0.1590,-0.1845,0.1515) collide=False insertType=0 objState=0x303 winterp=0.4293 return=-1 +[push-back-disp] site=dispatch center=(-4.3033,3.0600,0.7618) mvmt=(-0.1845,-0.1590,0.1515) collide=False insertType=0 objState=0x303 winterp=0.4293 return=-1 +[push-back-disp] site=dispatch center=(1.2317,3.0600,2.2618) mvmt=(-0.1845,-0.1590,0.1515) collide=False insertType=0 objState=0x303 winterp=0.4293 return=-1 +[push-back-disp] site=dispatch center=(1.2317,3.0600,2.2418) mvmt=(-0.1845,-0.1590,0.1515) collide=False insertType=1 objState=0x303 winterp=0.4293 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.268,8.440,96.262) lpos=(1.232,3.060,2.242) lprev=(1.416,3.219,2.090) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(1.2285,3.2190,1.9026) mvmt=(-0.1877,0.0000,-0.1877) collide=False insertType=0 objState=0x303 winterp=0.4293 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.271,8.281,95.923) lpos=(1.229,3.219,1.903) lprev=(1.416,3.219,2.090) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5938,-0.1705,0.5223) mvmt=(-0.0000,-0.1877,-0.1877) collide=False insertType=0 objState=0x303 winterp=0.4293 return=-1 +[push-back-disp] site=dispatch center=(0.3812,-0.4105,0.4173) mvmt=(-0.0000,-0.1877,-0.1877) collide=False insertType=0 objState=0x303 winterp=0.4293 return=-1 +[push-back-disp] site=dispatch center=(0.3812,-2.6218,-0.9327) mvmt=(0.0000,-0.1877,-0.1877) collide=False insertType=0 objState=0x303 winterp=0.4293 return=-1 +[push-back-disp] site=dispatch center=(-4.3065,3.2190,0.4226) mvmt=(-0.1877,0.0000,-0.1877) collide=False insertType=0 objState=0x303 winterp=0.4293 return=-1 +[push-back-disp] site=dispatch center=(1.2285,3.2190,1.9226) mvmt=(-0.1877,0.0000,-0.1877) collide=False insertType=0 objState=0x303 winterp=0.4293 return=-1 +[push-back-disp] site=dispatch center=(1.2285,3.2190,1.1526) mvmt=(-0.1877,0.0000,-0.9377) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.271,8.281,95.173) lpos=(1.229,3.219,1.153) lprev=(1.416,3.219,2.090) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5938,-0.1705,-0.2277) mvmt=(-0.0000,-0.1877,-0.9377) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3812,-0.4105,-0.3327) mvmt=(-0.0000,-0.1877,-0.9377) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3812,-0.4105,-0.3327) out=(0.3812,-0.4105,0.4108) delta=(0.0000,0.0000,0.7435) deltaMag=0.7435 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0086 dpPos=-0.0368 dpMove=-0.5213 iDist=0.9914 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.2285,3.2190,1.8961) mvmt=(-0.1877,0.0000,-0.1942) collide=False insertType=0 objState=0x303 winterp=0.0086 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.271,8.281,95.916) lpos=(1.229,3.219,1.896) lprev=(1.416,3.219,2.090) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5938,-0.1705,0.5158) mvmt=(-0.0000,-0.1877,-0.1942) collide=False insertType=0 objState=0x303 winterp=0.0086 return=-1 +[push-back-disp] site=dispatch center=(0.3812,-0.4105,0.4108) mvmt=(-0.0000,-0.1877,-0.1942) collide=False insertType=0 objState=0x303 winterp=0.0086 return=-1 +[push-back-disp] site=dispatch center=(0.3812,-2.6218,-0.9392) mvmt=(0.0000,-0.1877,-0.1942) collide=False insertType=0 objState=0x303 winterp=0.0086 return=-1 +[push-back-disp] site=dispatch center=(-4.3065,3.2190,0.4161) mvmt=(-0.1877,0.0000,-0.1942) collide=False insertType=0 objState=0x303 winterp=0.0086 return=-1 +[push-back-disp] site=dispatch center=(1.2285,3.2190,1.9161) mvmt=(-0.1877,0.0000,-0.1942) collide=False insertType=0 objState=0x303 winterp=0.0086 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.0463,3.2190,1.7076) mvmt=(-0.1822,0.0000,-0.1884) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.454,8.281,95.728) lpos=(1.046,3.219,1.708) lprev=(1.229,3.219,1.896) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5938,-0.3527,0.3273) mvmt=(-0.0000,-0.1822,-0.1884) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0463,3.2190,1.7076) mvmt=(-0.1822,0.0000,-0.1884) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.454,8.281,95.728) lpos=(1.046,3.219,1.708) lprev=(1.229,3.219,1.896) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5938,-0.3527,0.3273) mvmt=(-0.0000,-0.1822,-0.1884) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5938,-0.3527,0.3273) out=(-0.5938,-0.3527,0.6762) delta=(0.0000,0.0000,0.3488) deltaMag=0.3488 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4186 dpPos=0.2333 dpMove=-0.4243 iDist=0.5814 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.0463,3.2190,2.0565) mvmt=(-0.1822,0.0000,0.1604) collide=False insertType=0 objState=0x303 winterp=0.4186 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.454,8.281,96.076) lpos=(1.046,3.219,2.056) lprev=(1.229,3.219,1.896) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5938,-0.3527,0.6762) mvmt=(-0.0000,-0.1822,0.1604) collide=False insertType=0 objState=0x303 winterp=0.4186 return=-1 +[push-back-disp] site=dispatch center=(0.3812,-0.5927,0.5712) mvmt=(-0.0000,-0.1822,0.1604) collide=False insertType=0 objState=0x303 winterp=0.4186 return=-1 +[push-back-disp] site=dispatch center=(0.3812,-2.8039,-0.7788) mvmt=(-0.0000,-0.1822,0.1604) collide=False insertType=0 objState=0x303 winterp=0.4186 return=-1 +[push-back-disp] site=dispatch center=(-4.4887,3.2190,0.5765) mvmt=(-0.1822,0.0000,0.1604) collide=False insertType=0 objState=0x303 winterp=0.4186 return=-1 +[push-back-disp] site=dispatch center=(1.0463,3.2190,2.0765) mvmt=(-0.1822,0.0000,0.1604) collide=False insertType=0 objState=0x303 winterp=0.4186 return=-1 +[push-back-disp] site=dispatch center=(1.0463,3.2190,2.0565) mvmt=(-0.1822,0.0000,0.1604) collide=False insertType=1 objState=0x303 winterp=0.4186 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.454,8.281,96.076) lpos=(1.046,3.219,2.056) lprev=(1.229,3.219,1.896) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5938,-0.3527,0.6762) mvmt=(-0.0000,-0.1822,0.1604) collide=False insertType=1 objState=0x303 winterp=0.4186 return=-1 +[push-back-disp] site=dispatch center=(0.3812,-0.5927,0.5712) mvmt=(-0.0000,-0.1822,0.1604) collide=False insertType=1 objState=0x303 winterp=0.4186 return=-1 +[push-back-disp] site=dispatch center=(0.3812,-2.8039,-0.7788) mvmt=(-0.0000,-0.1822,0.1604) collide=False insertType=1 objState=0x303 winterp=0.4186 return=-1 +[push-back-disp] site=dispatch center=(-4.4887,3.2190,0.5765) mvmt=(-0.1822,0.0000,0.1604) collide=False insertType=1 objState=0x303 winterp=0.4186 return=-1 +[push-back-disp] site=dispatch center=(1.0463,3.2190,2.0765) mvmt=(-0.1822,0.0000,0.1604) collide=False insertType=1 objState=0x303 winterp=0.4186 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(1.0432,3.2190,1.7108) mvmt=(-0.1853,0.0000,-0.1853) collide=False insertType=0 objState=0x303 winterp=0.4186 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.457,8.281,95.731) lpos=(1.043,3.219,1.711) lprev=(1.229,3.219,1.896) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5938,-0.3558,0.3305) mvmt=(-0.0000,-0.1853,-0.1853) collide=False insertType=0 objState=0x303 winterp=0.4186 return=-1 +[push-back-disp] site=dispatch center=(0.3812,-0.5958,0.2255) mvmt=(-0.0000,-0.1853,-0.1853) collide=False insertType=0 objState=0x303 winterp=0.4186 return=-1 +[push-back-disp] site=dispatch center=(0.3812,-2.8071,-1.1245) mvmt=(0.0000,-0.1853,-0.1853) collide=False insertType=0 objState=0x303 winterp=0.4186 return=-1 +[push-back-disp] site=dispatch center=(-4.4918,3.2190,0.2308) mvmt=(-0.1853,0.0000,-0.1853) collide=False insertType=0 objState=0x303 winterp=0.4186 return=-1 +[push-back-disp] site=dispatch center=(1.0432,3.2190,1.7308) mvmt=(-0.1853,0.0000,-0.1853) collide=False insertType=0 objState=0x303 winterp=0.4186 return=-1 +[push-back-disp] site=dispatch center=(1.0432,3.2190,0.9608) mvmt=(-0.1853,0.0000,-0.9353) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.457,8.281,94.981) lpos=(1.043,3.219,0.961) lprev=(1.229,3.219,1.896) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5938,-0.3558,-0.4195) mvmt=(-0.0000,-0.1853,-0.9353) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3812,-0.5958,-0.5245) mvmt=(-0.0000,-0.1853,-0.9353) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3812,-0.5958,-0.5245) out=(0.3812,-0.5958,0.2191) delta=(0.0000,0.0000,0.7436) deltaMag=0.7436 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0085 dpPos=-0.0368 dpMove=-0.5213 iDist=0.9915 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.0432,3.2190,1.7044) mvmt=(-0.1853,0.0000,-0.1917) collide=False insertType=0 objState=0x303 winterp=0.0085 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.457,8.281,95.724) lpos=(1.043,3.219,1.704) lprev=(1.229,3.219,1.896) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5938,-0.3558,0.3241) mvmt=(-0.0000,-0.1853,-0.1917) collide=False insertType=0 objState=0x303 winterp=0.0085 return=-1 +[push-back] site=adjust_sphere in=(-0.5938,-0.3558,0.3241) out=(-0.5938,-0.3558,0.6730) delta=(0.0000,0.0000,0.3489) deltaMag=0.3489 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.0085->-0.4567 dpPos=0.2333 dpMove=-0.0045 iDist=54.6139 applied=True +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.0432,3.2190,2.0533) mvmt=(-0.1853,0.0000,0.1572) collide=False insertType=0 objState=0x303 winterp=-0.4567 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.457,8.281,96.073) lpos=(1.043,3.219,2.053) lprev=(1.229,3.219,1.896) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5938,-0.3558,0.6730) mvmt=(-0.0000,-0.1853,0.1572) collide=False insertType=0 objState=0x303 winterp=-0.4567 return=-1 +[push-back-disp] site=dispatch center=(0.3812,-0.5958,0.5680) mvmt=(-0.0000,-0.1853,0.1572) collide=False insertType=0 objState=0x303 winterp=-0.4567 return=-1 +[push-back-disp] site=dispatch center=(0.3812,-2.8071,-0.7820) mvmt=(0.0000,-0.1853,0.1572) collide=False insertType=0 objState=0x303 winterp=-0.4567 return=-1 +[push-back-disp] site=dispatch center=(-4.4918,3.2190,0.5733) mvmt=(-0.1853,0.0000,0.1572) collide=False insertType=0 objState=0x303 winterp=-0.4567 return=-1 +[push-back-disp] site=dispatch center=(1.0432,3.2190,2.0733) mvmt=(-0.1853,0.0000,0.1572) collide=False insertType=0 objState=0x303 winterp=-0.4567 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.8462,3.0550,1.8563) mvmt=(-0.1970,-0.1640,-0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.654,8.445,95.876) lpos=(0.846,3.055,1.856) lprev=(1.043,3.219,2.053) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4298,-0.5528,0.4760) mvmt=(0.1640,-0.1970,-0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5452,-0.7928,0.3710) mvmt=(0.1640,-0.1970,-0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5452,-3.0041,-0.9790) mvmt=(0.1640,-0.1970,-0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.6888,3.0550,0.3763) mvmt=(-0.1970,-0.1640,-0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8462,3.0550,1.8763) mvmt=(-0.1970,-0.1640,-0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8462,3.0550,1.1063) mvmt=(-0.1970,-0.1640,-0.9470) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.654,8.445,95.126) lpos=(0.846,3.055,1.106) lprev=(1.043,3.219,2.053) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4298,-0.5528,-0.2740) mvmt=(0.1640,-0.1970,-0.9470) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4298,-0.5528,-0.2740) out=(-0.4298,-0.5528,0.4760) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0503 dpMove=-0.5303 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.8462,3.0550,1.8563) mvmt=(-0.1970,-0.1640,-0.1970) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.654,8.445,95.876) lpos=(0.846,3.055,1.856) lprev=(1.043,3.219,2.053) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4298,-0.5528,0.4760) mvmt=(0.1640,-0.1970,-0.1970) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5452,-0.7928,0.3710) mvmt=(0.1640,-0.1970,-0.1970) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5452,-3.0041,-0.9790) mvmt=(0.1640,-0.1970,-0.1970) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.6888,3.0550,0.3763) mvmt=(-0.1970,-0.1640,-0.1970) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8462,3.0550,1.8763) mvmt=(-0.1970,-0.1640,-0.1970) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.6568,2.8973,1.6669) mvmt=(-0.1894,-0.1577,-0.1894) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.843,8.603,95.687) lpos=(0.657,2.897,1.667) lprev=(0.846,3.055,1.856) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2721,-0.7422,0.2866) mvmt=(0.1577,-0.1894,-0.1894) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7029,-0.9823,0.1816) mvmt=(0.1577,-0.1894,-0.1894) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7029,-3.1935,-1.1684) mvmt=(0.1577,-0.1894,-0.1894) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6568,2.8973,1.6869) mvmt=(-0.1894,-0.1577,-0.1894) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6568,2.8973,0.9169) mvmt=(-0.1894,-0.1577,-0.9394) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.843,8.603,94.937) lpos=(0.657,2.897,0.917) lprev=(0.846,3.055,1.856) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2721,-0.7422,-0.4634) mvmt=(0.1577,-0.1894,-0.9394) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2721,-0.7422,-0.4634) out=(-0.2721,-0.7422,0.2866) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0503 dpMove=-0.5303 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.6568,2.8973,1.6669) mvmt=(-0.1894,-0.1577,-0.1894) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.843,8.603,95.687) lpos=(0.657,2.897,1.667) lprev=(0.846,3.055,1.856) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2721,-0.7422,0.2866) mvmt=(0.1577,-0.1894,-0.1894) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7029,-0.9823,0.1816) mvmt=(0.1577,-0.1894,-0.1894) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7029,-3.1935,-1.1684) mvmt=(0.1577,-0.1894,-0.1894) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6568,2.8973,1.6869) mvmt=(-0.1894,-0.1577,-0.1894) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.4671,2.7394,1.4772) mvmt=(-0.1896,-0.1579,-0.1896) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.033,8.761,95.497) lpos=(0.467,2.739,1.477) lprev=(0.657,2.897,1.667) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1142,-0.9319,0.0969) mvmt=(0.1579,-0.1896,-0.1896) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8608,-1.1719,-0.0081) mvmt=(0.1579,-0.1896,-0.1896) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8608,-3.3831,-1.3581) mvmt=(0.1579,-0.1896,-0.1896) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4671,2.7394,1.4972) mvmt=(-0.1896,-0.1579,-0.1896) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4671,2.7394,0.7272) mvmt=(-0.1896,-0.1579,-0.9396) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.033,8.761,94.747) lpos=(0.467,2.739,0.727) lprev=(0.657,2.897,1.667) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1142,-0.9319,-0.6531) mvmt=(0.1579,-0.1896,-0.9396) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1142,-0.9319,-0.6531) out=(-0.1142,-0.9319,0.0969) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0503 dpMove=-0.5303 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.4671,2.7394,1.4772) mvmt=(-0.1896,-0.1579,-0.1896) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.033,8.761,95.497) lpos=(0.467,2.739,1.477) lprev=(0.657,2.897,1.667) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1142,-0.9319,0.0969) mvmt=(0.1579,-0.1896,-0.1896) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8608,-1.1719,-0.0081) mvmt=(0.1579,-0.1896,-0.1896) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8608,-3.3831,-1.3581) mvmt=(0.1579,-0.1896,-0.1896) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4671,2.7394,1.4972) mvmt=(-0.1896,-0.1579,-0.1896) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.2803,2.5839,1.2905) mvmt=(-0.1868,-0.1555,-0.1868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.220,8.916,95.310) lpos=(0.280,2.584,1.290) lprev=(0.467,2.739,1.477) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.0413,-1.1187,-0.0898) mvmt=(0.1555,-0.1868,-0.1868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0163,-1.3587,-0.1948) mvmt=(0.1555,-0.1868,-0.1868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0163,-3.5699,-1.5448) mvmt=(0.1555,-0.1868,-0.1868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2803,2.5839,1.3105) mvmt=(-0.1868,-0.1555,-0.1868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2803,2.5839,0.5405) mvmt=(-0.1868,-0.1555,-0.9368) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.220,8.916,94.560) lpos=(0.280,2.584,0.540) lprev=(0.467,2.739,1.477) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.0413,-1.1187,-0.8398) mvmt=(0.1555,-0.1868,-0.9368) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0413,-1.1187,-0.8398) out=(0.0413,-1.1187,-0.0898) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0503 dpMove=-0.5303 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.2803,2.5839,1.2905) mvmt=(-0.1868,-0.1555,-0.1868) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.220,8.916,95.310) lpos=(0.280,2.584,1.290) lprev=(0.467,2.739,1.477) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.0413,-1.1187,-0.0898) mvmt=(0.1555,-0.1868,-0.1868) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0163,-1.3587,-0.1948) mvmt=(0.1555,-0.1868,-0.1868) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0163,-3.5699,-1.5448) mvmt=(0.1555,-0.1868,-0.1868) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2803,2.5839,1.3105) mvmt=(-0.1868,-0.1555,-0.1868) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.0945,2.4291,1.1046) mvmt=(-0.1859,-0.1548,-0.1859) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.406,9.071,95.125) lpos=(0.094,2.429,1.105) lprev=(0.280,2.584,1.290) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.1961,-1.3045,-0.2757) mvmt=(0.1548,-0.1859,-0.1859) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1711,-1.5446,-0.3807) mvmt=(0.1548,-0.1859,-0.1859) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1711,-3.7558,-1.7307) mvmt=(0.1548,-0.1859,-0.1859) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0945,2.4291,1.1246) mvmt=(-0.1859,-0.1548,-0.1859) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0945,2.4291,0.3546) mvmt=(-0.1859,-0.1548,-0.9359) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0945,2.4291,0.3546) out=(0.0945,2.4291,0.4800) delta=(0.0000,0.0000,0.1254) deltaMag=0.1254 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.8328 dpPos=0.3546 dpMove=-0.7500 iDist=0.1672 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.406,9.071,94.375) lpos=(0.094,2.429,0.355) lprev=(0.280,2.584,1.290) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(0.0945,2.4291,0.4800) mvmt=(-0.1859,-0.1548,-0.8105) collide=False insertType=0 objState=0x303 winterp=0.8328 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.406,9.071,94.500) lpos=(0.094,2.429,0.480) lprev=(0.280,2.584,1.290) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.1961,-1.3045,-0.9003) mvmt=(0.1548,-0.1859,-0.8105) collide=False insertType=0 objState=0x303 winterp=0.8328 return=-1 +[push-back] site=adjust_sphere in=(0.1961,-1.3045,-0.9003) out=(0.1961,-1.3045,-0.2757) delta=(0.0000,0.0000,0.6246) deltaMag=0.6246 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.8328->0.0000 dpPos=0.0384 dpMove=-0.4416 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.0945,2.4291,1.1046) mvmt=(-0.1859,-0.1548,-0.1859) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.406,9.071,95.125) lpos=(0.094,2.429,1.105) lprev=(0.280,2.584,1.290) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.1961,-1.3045,-0.2757) mvmt=(0.1548,-0.1859,-0.1859) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1711,-1.5446,-0.3807) mvmt=(0.1548,-0.1859,-0.1859) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1711,-3.7558,-1.7307) mvmt=(0.1548,-0.1859,-0.1859) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0945,2.4291,1.1246) mvmt=(-0.1859,-0.1548,-0.1859) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-0.0940,2.2722,0.9161) mvmt=(-0.1884,-0.1569,-0.1885) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.594,9.228,94.936) lpos=(-0.094,2.272,0.916) lprev=(0.094,2.429,1.105) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.3530,-1.4930,-0.4642) mvmt=(0.1569,-0.1884,-0.1885) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3280,-1.7330,-0.5692) mvmt=(0.1569,-0.1884,-0.1885) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3280,-3.9443,-1.9192) mvmt=(0.1569,-0.1884,-0.1885) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0940,2.2722,0.9361) mvmt=(-0.1884,-0.1569,-0.1885) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0940,2.2722,0.1661) mvmt=(-0.1884,-0.1569,-0.9385) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0940,2.2722,0.1661) out=(-0.0940,2.2722,0.4800) delta=(0.0000,0.0000,0.3139) deltaMag=0.3139 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.5815 dpPos=0.1661 dpMove=-0.7500 iDist=0.4185 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.594,9.228,94.186) lpos=(-0.094,2.272,0.166) lprev=(0.094,2.429,1.105) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-0.0940,2.2722,0.4800) mvmt=(-0.1884,-0.1569,-0.6246) collide=False insertType=0 objState=0x303 winterp=0.5815 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.594,9.228,94.500) lpos=(-0.094,2.272,0.480) lprev=(0.094,2.429,1.105) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.3530,-1.4930,-0.9003) mvmt=(0.1569,-0.1884,-0.6246) collide=False insertType=0 objState=0x303 winterp=0.5815 return=-1 +[push-back] site=adjust_sphere in=(0.3530,-1.4930,-0.9003) out=(0.3530,-1.4930,-0.4642) delta=(0.0000,0.0000,0.4361) deltaMag=0.4361 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.5815->-0.0000 dpPos=0.1716 dpMove=-0.3084 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-0.0940,2.2722,0.9161) mvmt=(-0.1884,-0.1569,-0.1884) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.594,9.228,94.936) lpos=(-0.094,2.272,0.916) lprev=(0.094,2.429,1.105) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.3530,-1.4930,-0.4642) mvmt=(0.1569,-0.1884,-0.1884) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3280,-1.7330,-0.5692) mvmt=(0.1569,-0.1884,-0.1884) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3280,-3.9443,-1.9192) mvmt=(0.1569,-0.1884,-0.1884) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0940,2.2722,0.9361) mvmt=(-0.1884,-0.1569,-0.1884) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-0.2821,2.1156,0.7280) mvmt=(-0.1881,-0.1566,-0.1881) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.782,9.384,94.748) lpos=(-0.282,2.116,0.728) lprev=(-0.094,2.272,0.916) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.5096,-1.6811,-0.6523) mvmt=(0.1566,-0.1881,-0.1881) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4846,-1.9211,-0.7573) mvmt=(0.1566,-0.1881,-0.1881) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2821,2.1156,0.7480) mvmt=(-0.1881,-0.1566,-0.1881) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2821,2.1156,-0.0220) mvmt=(-0.1881,-0.1566,-0.9381) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2821,2.1156,-0.0220) out=(-0.2821,2.1156,0.4800) delta=(0.0000,0.0000,0.5020) deltaMag=0.5020 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.3307 dpPos=-0.0220 dpMove=-0.7500 iDist=0.6693 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.782,9.384,93.998) lpos=(-0.282,2.116,-0.022) lprev=(-0.094,2.272,0.916) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-0.2821,2.1156,0.4800) mvmt=(-0.1881,-0.1566,-0.4361) collide=False insertType=0 objState=0x303 winterp=0.3307 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.782,9.384,94.500) lpos=(-0.282,2.116,0.480) lprev=(-0.094,2.272,0.916) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.5096,-1.6811,-0.9003) mvmt=(0.1566,-0.1881,-0.4361) collide=False insertType=0 objState=0x303 winterp=0.3307 return=-1 +[push-back] site=adjust_sphere in=(0.5096,-1.6811,-0.9003) out=(0.5096,-1.6811,-0.6523) delta=(0.0000,0.0000,0.2480) deltaMag=0.2480 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.3307->-0.0000 dpPos=0.3046 dpMove=-0.1754 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-0.2821,2.1156,0.7280) mvmt=(-0.1881,-0.1566,-0.1881) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.782,9.384,94.748) lpos=(-0.282,2.116,0.728) lprev=(-0.094,2.272,0.916) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.5096,-1.6811,-0.6523) mvmt=(0.1566,-0.1881,-0.1881) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4846,-1.9211,-0.7573) mvmt=(0.1566,-0.1881,-0.1881) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2821,2.1156,0.7480) mvmt=(-0.1881,-0.1566,-0.1881) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-0.4689,1.9601,0.5412) mvmt=(-0.1868,-0.1555,-0.1868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.969,9.540,94.561) lpos=(-0.469,1.960,0.541) lprev=(-0.282,2.116,0.728) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.6652,-1.8679,-0.8391) mvmt=(0.1555,-0.1868,-0.1868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6402,-2.1079,-0.9441) mvmt=(0.1555,-0.1868,-0.1868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4689,1.9601,0.5612) mvmt=(-0.1868,-0.1555,-0.1868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4689,1.9601,-0.2088) mvmt=(-0.1868,-0.1555,-0.9368) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4689,1.9601,-0.2088) out=(-0.4689,1.9601,0.4800) delta=(0.0000,0.0000,0.6888) deltaMag=0.6888 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0816 dpPos=-0.2088 dpMove=-0.7500 iDist=0.9184 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.969,9.540,93.811) lpos=(-0.469,1.960,-0.209) lprev=(-0.282,2.116,0.728) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-0.4689,1.9601,0.4800) mvmt=(-0.1868,-0.1555,-0.2480) collide=False insertType=0 objState=0x303 winterp=0.0816 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.969,9.540,94.500) lpos=(-0.469,1.960,0.480) lprev=(-0.282,2.116,0.728) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.6652,-1.8679,-0.9003) mvmt=(0.1555,-0.1868,-0.2480) collide=False insertType=0 objState=0x303 winterp=0.0816 return=-1 +[push-back-disp] site=dispatch center=(1.6402,-2.1079,-1.0053) mvmt=(0.1555,-0.1868,-0.2480) collide=False insertType=0 objState=0x303 winterp=0.0816 return=-1 +[push-back-disp] site=dispatch center=(-0.4689,1.9601,0.5000) mvmt=(-0.1868,-0.1555,-0.2480) collide=False insertType=0 objState=0x303 winterp=0.0816 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-0.8359,1.8073,0.4800) mvmt=(-0.3670,-0.1528,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.336,9.693,94.500) lpos=(-0.836,1.807,0.480) lprev=(-0.469,1.960,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.8179,-2.2349,-0.9003) mvmt=(0.1528,-0.3670,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7929,-2.4749,-1.0053) mvmt=(0.1528,-0.3670,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8359,1.8073,0.5000) mvmt=(-0.3670,-0.1528,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8359,1.8073,-0.2700) mvmt=(-0.3670,-0.1528,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.8359,1.8073,-0.2700) out=(-0.8359,1.8073,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(131.336,9.693,93.750) lpos=(-0.836,1.807,-0.270) lprev=(-0.469,1.960,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-0.8359,1.8073,0.4800) mvmt=(-0.3670,-0.1528,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.336,9.693,94.500) lpos=(-0.836,1.807,0.480) lprev=(-0.469,1.960,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.8179,-2.2349,-0.9003) mvmt=(0.1528,-0.3670,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7929,-2.4749,-1.0053) mvmt=(0.1528,-0.3670,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8359,1.8073,0.5000) mvmt=(-0.3670,-0.1528,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.2314,1.6426,0.4800) mvmt=(-0.3955,-0.1646,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.731,9.857,94.500) lpos=(-1.231,1.643,0.480) lprev=(-0.836,1.807,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.9826,-2.6304,-0.9003) mvmt=(0.1646,-0.3955,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9576,-2.8705,-1.0053) mvmt=(0.1646,-0.3955,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2314,1.6426,0.5000) mvmt=(-0.3955,-0.1646,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2314,1.6426,-0.2700) mvmt=(-0.3955,-0.1646,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.2314,1.6426,-0.2700) out=(-1.2314,1.6426,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(131.731,9.857,93.750) lpos=(-1.231,1.643,-0.270) lprev=(-0.836,1.807,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.2314,1.6426,0.4800) mvmt=(-0.3955,-0.1646,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.731,9.857,94.500) lpos=(-1.231,1.643,0.480) lprev=(-0.836,1.807,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.9826,-2.6304,-0.9003) mvmt=(0.1646,-0.3955,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9576,-2.8705,-1.0053) mvmt=(0.1646,-0.3955,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2314,1.6426,0.5000) mvmt=(-0.3955,-0.1646,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.6038,1.4877,0.4800) mvmt=(-0.3723,-0.1550,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.104,10.012,94.500) lpos=(-1.604,1.488,0.480) lprev=(-1.231,1.643,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.1376,-3.0028,-0.9003) mvmt=(0.1550,-0.3723,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1126,-3.2428,-1.0053) mvmt=(0.1550,-0.3723,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6038,1.4877,0.5000) mvmt=(-0.3723,-0.1550,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6038,1.4877,-0.2700) mvmt=(-0.3723,-0.1550,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.6038,1.4877,-0.2700) out=(-1.6038,1.4877,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(132.104,10.012,93.750) lpos=(-1.604,1.488,-0.270) lprev=(-1.231,1.643,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.6038,1.4877,0.4800) mvmt=(-0.3723,-0.1550,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.104,10.012,94.500) lpos=(-1.604,1.488,0.480) lprev=(-1.231,1.643,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.1376,-3.0028,-0.9003) mvmt=(0.1550,-0.3723,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1126,-3.2428,-1.0053) mvmt=(0.1550,-0.3723,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6038,1.4877,0.5000) mvmt=(-0.3723,-0.1550,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.9700,1.3352,0.4800) mvmt=(-0.3662,-0.1525,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.470,10.165,94.500) lpos=(-1.970,1.335,0.480) lprev=(-1.604,1.488,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.2900,-3.3690,-0.9003) mvmt=(0.1525,-0.3662,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2650,-3.6090,-1.0053) mvmt=(0.1525,-0.3662,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9700,1.3352,0.5000) mvmt=(-0.3662,-0.1525,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9700,1.3352,-0.2700) mvmt=(-0.3662,-0.1525,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.9700,1.3352,-0.2700) out=(-1.9700,1.3352,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(132.470,10.165,93.750) lpos=(-1.970,1.335,-0.270) lprev=(-1.604,1.488,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.9700,1.3352,0.4800) mvmt=(-0.3662,-0.1525,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.470,10.165,94.500) lpos=(-1.970,1.335,0.480) lprev=(-1.604,1.488,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.2900,-3.3690,-0.9003) mvmt=(0.1525,-0.3662,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2650,-3.6090,-1.0053) mvmt=(0.1525,-0.3662,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9700,1.3352,0.5000) mvmt=(-0.3662,-0.1525,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.3708,1.1683,0.4800) mvmt=(-0.4008,-0.1669,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.871,10.332,94.500) lpos=(-2.371,1.168,0.480) lprev=(-1.970,1.335,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.4569,-3.7698,-0.9003) mvmt=(0.1669,-0.4008,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4319,-4.0098,-1.0053) mvmt=(0.1669,-0.4008,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3708,1.1683,0.5000) mvmt=(-0.4008,-0.1669,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3708,1.1683,-0.2700) mvmt=(-0.4008,-0.1669,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.3708,1.1683,-0.2700) out=(-2.3708,1.1683,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(132.871,10.332,93.750) lpos=(-2.371,1.168,-0.270) lprev=(-1.970,1.335,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.3708,1.1683,0.4800) mvmt=(-0.4008,-0.1669,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.871,10.332,94.500) lpos=(-2.371,1.168,0.480) lprev=(-1.970,1.335,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.4569,-3.7698,-0.9003) mvmt=(0.1669,-0.4008,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4319,-4.0098,-1.0053) mvmt=(0.1669,-0.4008,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3708,1.1683,0.5000) mvmt=(-0.4008,-0.1669,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.7810,0.9976,0.4800) mvmt=(-0.4102,-0.1707,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.281,10.502,94.500) lpos=(-2.781,0.998,0.480) lprev=(-2.371,1.168,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6277,-4.1800,-0.9003) mvmt=(0.1707,-0.4102,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6027,-4.4200,-1.0053) mvmt=(0.1707,-0.4102,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7810,0.9976,0.5000) mvmt=(-0.4102,-0.1707,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7810,0.9976,-0.2700) mvmt=(-0.4102,-0.1707,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.7810,0.9976,-0.2700) out=(-2.7810,0.9976,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(133.281,10.502,93.750) lpos=(-2.781,0.998,-0.270) lprev=(-2.371,1.168,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.7810,0.9976,0.4800) mvmt=(-0.4102,-0.1707,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.281,10.502,94.500) lpos=(-2.781,0.998,0.480) lprev=(-2.371,1.168,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6277,-4.1800,-0.9003) mvmt=(0.1707,-0.4102,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6027,-4.4200,-1.0053) mvmt=(0.1707,-0.4102,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7810,0.9976,0.5000) mvmt=(-0.4102,-0.1707,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.7812,1.4043,0.4800) mvmt=(-0.0002,0.4067,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.281,10.096,94.500) lpos=(-2.781,1.404,0.480) lprev=(-2.781,0.998,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.2210,-4.1802,-0.9003) mvmt=(-0.4067,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1960,-4.4202,-1.0053) mvmt=(-0.4067,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7812,1.4043,0.5000) mvmt=(-0.0002,0.4067,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7812,1.4043,-0.2700) mvmt=(-0.0002,0.4067,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.7812,1.4043,-0.2700) out=(-2.7812,1.4043,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(133.281,10.096,93.750) lpos=(-2.781,1.404,-0.270) lprev=(-2.781,0.998,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.7812,1.4043,0.4800) mvmt=(-0.0002,0.4067,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.281,10.096,94.500) lpos=(-2.781,1.404,0.480) lprev=(-2.781,0.998,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.2210,-4.1802,-0.9003) mvmt=(-0.4067,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1960,-4.4202,-1.0053) mvmt=(-0.4067,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7812,1.4043,0.5000) mvmt=(-0.0002,0.4067,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.7814,1.8093,0.4800) mvmt=(-0.0002,0.4051,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.281,9.691,94.500) lpos=(-2.781,1.809,0.480) lprev=(-2.781,1.404,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.8159,-4.1804,-0.9003) mvmt=(-0.4051,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7909,-4.4204,-1.0053) mvmt=(-0.4051,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7814,1.8093,0.5000) mvmt=(-0.0002,0.4051,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7814,1.8093,-0.2700) mvmt=(-0.0002,0.4051,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.7814,1.8093,-0.2700) out=(-2.7814,1.8093,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(133.281,9.691,93.750) lpos=(-2.781,1.809,-0.270) lprev=(-2.781,1.404,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.7814,1.8093,0.4800) mvmt=(-0.0002,0.4051,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.281,9.691,94.500) lpos=(-2.781,1.809,0.480) lprev=(-2.781,1.404,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.8159,-4.1804,-0.9003) mvmt=(-0.4051,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7909,-4.4204,-1.0053) mvmt=(-0.4051,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7814,1.8093,0.5000) mvmt=(-0.0002,0.4051,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.7816,2.2523,0.4800) mvmt=(-0.0002,0.4429,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.282,9.248,94.500) lpos=(-2.782,2.252,0.480) lprev=(-2.781,1.809,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.3730,-4.1806,-0.9003) mvmt=(-0.4429,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3480,-4.4207,-1.0053) mvmt=(-0.4429,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7816,2.2523,0.5000) mvmt=(-0.0002,0.4429,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7816,2.2523,-0.2700) mvmt=(-0.0002,0.4429,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.7816,2.2523,-0.2700) out=(-2.7816,2.2523,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(133.282,9.248,93.750) lpos=(-2.782,2.252,-0.270) lprev=(-2.781,1.809,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.7816,2.2523,0.4800) mvmt=(-0.0002,0.4429,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.282,9.248,94.500) lpos=(-2.782,2.252,0.480) lprev=(-2.781,1.809,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.3730,-4.1806,-0.9003) mvmt=(-0.4429,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3480,-4.4207,-1.0053) mvmt=(-0.4429,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7816,2.2523,0.5000) mvmt=(-0.0002,0.4429,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.7819,2.6867,0.4800) mvmt=(-0.0002,0.4344,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.282,8.813,94.500) lpos=(-2.782,2.687,0.480) lprev=(-2.782,2.252,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.0614,-4.1809,-0.9003) mvmt=(-0.4344,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9136,-4.4209,-1.0053) mvmt=(-0.4344,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7819,2.6867,0.5000) mvmt=(-0.0002,0.4344,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7819,2.6867,-0.2700) mvmt=(-0.0002,0.4344,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.7819,2.6867,-0.2700) out=(-2.7819,2.6867,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(133.282,8.813,93.750) lpos=(-2.782,2.687,-0.270) lprev=(-2.782,2.252,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.7819,2.6867,0.4800) mvmt=(-0.0002,0.4344,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.282,8.813,94.500) lpos=(-2.782,2.687,0.480) lprev=(-2.782,2.252,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.0614,-4.1809,-0.9003) mvmt=(-0.4344,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9136,-4.4209,-1.0053) mvmt=(-0.4344,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7819,2.6867,0.5000) mvmt=(-0.0002,0.4344,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.7821,3.1159,0.4800) mvmt=(-0.0002,0.4292,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.282,8.384,94.500) lpos=(-2.782,3.116,0.480) lprev=(-2.782,2.687,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4906,-4.1811,-0.9003) mvmt=(-0.4292,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4844,-4.4211,-1.0053) mvmt=(-0.4292,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7821,3.1159,0.5000) mvmt=(-0.0002,0.4292,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7821,3.1159,-0.2700) mvmt=(-0.0002,0.4292,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.7821,3.1159,-0.2700) out=(-2.7821,3.1159,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(133.282,8.384,93.750) lpos=(-2.782,3.116,-0.270) lprev=(-2.782,2.687,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.7821,3.1159,0.4800) mvmt=(-0.0002,0.4292,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.282,8.384,94.500) lpos=(-2.782,3.116,0.480) lprev=(-2.782,2.687,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4906,-4.1811,-0.9003) mvmt=(-0.4292,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4844,-4.4211,-1.0053) mvmt=(-0.4292,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7821,3.1159,0.5000) mvmt=(-0.0002,0.4292,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.3932,3.2830,0.4800) mvmt=(0.3889,0.1672,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.893,8.217,94.500) lpos=(-2.393,3.283,0.480) lprev=(-2.782,3.116,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6578,-3.7922,-0.9003) mvmt=(-0.1672,0.3889,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3172,-4.0322,-1.0053) mvmt=(-0.1672,0.3889,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3932,3.2830,0.5000) mvmt=(0.3889,0.1672,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3932,3.2830,-0.2700) mvmt=(0.3889,0.1672,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.3932,3.2830,-0.2700) out=(-2.3932,3.2830,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(132.893,8.217,93.750) lpos=(-2.393,3.283,-0.270) lprev=(-2.782,3.116,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.3932,3.2830,0.4800) mvmt=(0.3889,0.1672,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.893,8.217,94.500) lpos=(-2.393,3.283,0.480) lprev=(-2.782,3.116,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6578,-3.7922,-0.9003) mvmt=(-0.1672,0.3889,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3172,-4.0322,-1.0053) mvmt=(-0.1672,0.3889,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3932,3.2830,0.5000) mvmt=(0.3889,0.1672,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.0154,3.4110,0.4800) mvmt=(0.3778,0.1280,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.515,8.089,94.500) lpos=(-2.015,3.411,0.480) lprev=(-2.393,3.283,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7858,-3.4144,-0.9003) mvmt=(-0.1280,0.3778,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1892,-3.6544,-1.0053) mvmt=(-0.1280,0.3778,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0154,3.4110,0.5000) mvmt=(0.3778,0.1280,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0154,3.4110,-0.2700) mvmt=(0.3778,0.1280,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.0154,3.4110,-0.2700) out=(-2.0154,3.4110,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(132.515,8.089,93.750) lpos=(-2.015,3.411,-0.270) lprev=(-2.393,3.283,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.0154,3.4110,0.4800) mvmt=(0.3778,0.1280,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.515,8.089,94.500) lpos=(-2.015,3.411,0.480) lprev=(-2.393,3.283,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7858,-3.4144,-0.9003) mvmt=(-0.1280,0.3778,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1892,-3.6544,-1.0053) mvmt=(-0.1280,0.3778,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0154,3.4110,0.5000) mvmt=(0.3778,0.1280,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.6168,3.5106,0.4800) mvmt=(0.3986,0.0996,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.117,7.989,94.500) lpos=(-1.617,3.511,0.480) lprev=(-2.015,3.411,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8854,-3.0158,-0.9003) mvmt=(-0.0996,0.3986,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0896,-3.2558,-1.0053) mvmt=(-0.0996,0.3986,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6168,3.5106,0.5000) mvmt=(0.3986,0.0996,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6168,3.5106,-0.2700) mvmt=(0.3986,0.0996,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.6168,3.5106,-0.2700) out=(-1.6168,3.5106,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(132.117,7.989,93.750) lpos=(-1.617,3.511,-0.270) lprev=(-2.015,3.411,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.6168,3.5106,0.4800) mvmt=(0.3986,0.0996,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.117,7.989,94.500) lpos=(-1.617,3.511,0.480) lprev=(-2.015,3.411,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8854,-3.0158,-0.9003) mvmt=(-0.0996,0.3986,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0896,-3.2558,-1.0053) mvmt=(-0.0996,0.3986,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6168,3.5106,0.5000) mvmt=(0.3986,0.0996,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.2208,3.5766,0.4800) mvmt=(0.3960,0.0660,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.721,7.923,94.500) lpos=(-1.221,3.577,0.480) lprev=(-1.617,3.511,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9514,-2.6198,-0.9003) mvmt=(-0.0660,0.3960,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0236,-2.8598,-1.0053) mvmt=(-0.0660,0.3960,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2208,3.5766,0.5000) mvmt=(0.3960,0.0660,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2208,3.5766,-0.2700) mvmt=(0.3960,0.0660,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.2208,3.5766,-0.2700) out=(-1.2208,3.5766,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(131.721,7.923,93.750) lpos=(-1.221,3.577,-0.270) lprev=(-1.617,3.511,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.2208,3.5766,0.4800) mvmt=(0.3960,0.0660,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.721,7.923,94.500) lpos=(-1.221,3.577,0.480) lprev=(-1.617,3.511,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9514,-2.6198,-0.9003) mvmt=(-0.0660,0.3960,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0236,-2.8598,-1.0053) mvmt=(-0.0660,0.3960,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2208,3.5766,0.5000) mvmt=(0.3960,0.0660,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-0.7861,3.6107,0.4800) mvmt=(0.4347,0.0341,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.286,7.889,94.500) lpos=(-0.786,3.611,0.480) lprev=(-1.221,3.577,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9855,-2.1851,-0.9003) mvmt=(-0.0341,0.4347,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0105,-2.4251,-1.0053) mvmt=(-0.0341,0.4347,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7861,3.6107,0.5000) mvmt=(0.4347,0.0341,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7861,3.6107,-0.2700) mvmt=(0.4347,0.0341,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.7861,3.6107,-0.2700) out=(-0.7861,3.6107,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(131.286,7.889,93.750) lpos=(-0.786,3.611,-0.270) lprev=(-1.221,3.577,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-0.7861,3.6107,0.4800) mvmt=(0.4347,0.0341,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.286,7.889,94.500) lpos=(-0.786,3.611,0.480) lprev=(-1.221,3.577,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9855,-2.1851,-0.9003) mvmt=(-0.0341,0.4347,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0105,-2.4251,-1.0053) mvmt=(-0.0341,0.4347,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7861,3.6107,0.5000) mvmt=(0.4347,0.0341,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-0.3502,3.6071,0.4800) mvmt=(0.4359,-0.0036,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.850,7.893,94.500) lpos=(-0.350,3.607,0.480) lprev=(-0.786,3.611,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9819,-1.7492,-0.9003) mvmt=(0.0036,0.4359,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0069,-1.9892,-1.0053) mvmt=(0.0036,0.4359,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3502,3.6071,0.5000) mvmt=(0.4359,-0.0036,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3502,3.6071,-0.2700) mvmt=(0.4359,-0.0036,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3502,3.6071,-0.2700) out=(-0.3502,3.6071,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.850,7.893,93.750) lpos=(-0.350,3.607,-0.270) lprev=(-0.786,3.611,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-0.3502,3.6071,0.4800) mvmt=(0.4359,-0.0036,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.850,7.893,94.500) lpos=(-0.350,3.607,0.480) lprev=(-0.786,3.611,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9819,-1.7492,-0.9003) mvmt=(0.0036,0.4359,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0069,-1.9892,-1.0053) mvmt=(0.0036,0.4359,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3502,3.6071,0.5000) mvmt=(0.4359,-0.0036,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.0801,3.5239,0.4800) mvmt=(0.4303,-0.0832,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.420,7.976,94.500) lpos=(0.080,3.524,0.480) lprev=(-0.350,3.607,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8986,-1.3189,-0.9003) mvmt=(0.0832,0.4303,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0764,-1.5589,-1.0053) mvmt=(0.0832,0.4303,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0801,3.5239,0.4800) mvmt=(0.4303,-0.0832,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.420,7.976,94.500) lpos=(0.080,3.524,0.480) lprev=(-0.350,3.607,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8986,-1.3189,-0.9003) mvmt=(0.0832,0.4303,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0764,-1.5589,-1.0053) mvmt=(0.0832,0.4303,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0764,-1.5589,-1.0053) out=(0.0764,-1.5589,-0.7772) delta=(0.0000,0.0000,0.2281) deltaMag=0.2281 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.6198 dpPos=0.3215 dpMove=-0.4170 iDist=0.3802 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.0801,3.5239,0.7081) mvmt=(0.4303,-0.0832,0.2281) collide=False insertType=0 objState=0x303 winterp=0.6198 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.420,7.976,94.728) lpos=(0.080,3.524,0.708) lprev=(-0.350,3.607,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8986,-1.3189,-0.6722) mvmt=(0.0832,0.4303,0.2281) collide=False insertType=0 objState=0x303 winterp=0.6198 return=-1 +[push-back-disp] site=dispatch center=(0.0764,-1.5589,-0.7772) mvmt=(0.0832,0.4303,0.2281) collide=False insertType=0 objState=0x303 winterp=0.6198 return=-1 +[push-back-disp] site=dispatch center=(2.3699,2.0522,0.7206) mvmt=(-0.4276,0.0962,0.2281) collide=False insertType=0 objState=0x303 winterp=0.6198 return=-1 +[push-back-disp] site=dispatch center=(0.0801,3.5239,0.7281) mvmt=(0.4303,-0.0832,0.2281) collide=False insertType=0 objState=0x303 winterp=0.6198 return=-1 +[push-back-disp] site=dispatch center=(0.0801,3.5239,0.7081) mvmt=(0.4303,-0.0832,0.2281) collide=False insertType=1 objState=0x303 winterp=0.6198 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.420,7.976,94.728) lpos=(0.080,3.524,0.708) lprev=(-0.350,3.607,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8986,-1.3189,-0.6722) mvmt=(0.0832,0.4303,0.2281) collide=False insertType=1 objState=0x303 winterp=0.6198 return=-1 +[push-back-disp] site=dispatch center=(0.0764,-1.5589,-0.7772) mvmt=(0.0832,0.4303,0.2281) collide=False insertType=1 objState=0x303 winterp=0.6198 return=-1 +[push-back-disp] site=dispatch center=(2.3699,2.0522,0.7206) mvmt=(-0.4276,0.0962,0.2281) collide=False insertType=1 objState=0x303 winterp=0.6198 return=-1 +[push-back-disp] site=dispatch center=(0.0801,3.5239,0.7281) mvmt=(0.4303,-0.0832,0.2281) collide=False insertType=1 objState=0x303 winterp=0.6198 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(-0.1423,3.5239,0.6950) mvmt=(0.2079,-0.0832,0.2150) collide=False insertType=0 objState=0x303 winterp=0.6198 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.642,7.976,94.715) lpos=(-0.142,3.524,0.695) lprev=(-0.350,3.607,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8986,-1.5413,-0.6853) mvmt=(0.0832,0.2079,0.2150) collide=False insertType=0 objState=0x303 winterp=0.6198 return=-1 +[push-back-disp] site=dispatch center=(0.0764,-1.7813,-0.7903) mvmt=(0.0832,0.2079,0.2150) collide=False insertType=0 objState=0x303 winterp=0.6198 return=-1 +[push-back-disp] site=dispatch center=(-0.1423,3.5239,0.7150) mvmt=(0.2079,-0.0832,0.2150) collide=False insertType=0 objState=0x303 winterp=0.6198 return=-1 +[push-back-disp] site=dispatch center=(-0.1423,3.5239,-0.0550) mvmt=(0.2079,-0.0832,-0.5350) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1423,3.5239,-0.0550) out=(-0.1423,3.5239,0.4800) delta=(0.0000,0.0000,0.5350) deltaMag=0.5350 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.2867 dpPos=-0.0550 dpMove=-0.7500 iDist=0.7133 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.642,7.976,93.965) lpos=(-0.142,3.524,-0.055) lprev=(-0.350,3.607,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-0.1423,3.5239,0.4800) mvmt=(0.2079,-0.0832,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2867 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.642,7.976,94.500) lpos=(-0.142,3.524,0.480) lprev=(-0.350,3.607,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8986,-1.5413,-0.9003) mvmt=(0.0832,0.2079,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2867 return=-1 +[push-back-disp] site=dispatch center=(0.0764,-1.7813,-1.0053) mvmt=(0.0832,0.2079,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2867 return=-1 +[push-back-disp] site=dispatch center=(-0.1423,3.5239,0.5000) mvmt=(0.2079,-0.0832,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2867 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-0.1423,3.4417,0.4800) mvmt=(0.0000,-0.0821,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.642,8.058,94.500) lpos=(-0.142,3.442,0.480) lprev=(-0.142,3.524,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8165,-1.5413,-0.9003) mvmt=(0.0821,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1585,-1.7813,-1.0053) mvmt=(0.0821,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1423,3.4417,0.5000) mvmt=(0.0000,-0.0821,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1423,3.4417,-0.2700) mvmt=(0.0000,-0.0821,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1423,3.4417,-0.2700) out=(-0.1423,3.4417,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.642,8.058,93.750) lpos=(-0.142,3.442,-0.270) lprev=(-0.142,3.524,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-0.1423,3.4417,0.4800) mvmt=(0.0000,-0.0821,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.642,8.058,94.500) lpos=(-0.142,3.442,0.480) lprev=(-0.142,3.524,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8165,-1.5413,-0.9003) mvmt=(0.0821,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1585,-1.7813,-1.0053) mvmt=(0.0821,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1423,3.4417,0.5000) mvmt=(0.0000,-0.0821,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.2726,3.3615,0.4800) mvmt=(0.4149,-0.0803,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.227,8.139,94.500) lpos=(0.273,3.361,0.480) lprev=(-0.142,3.442,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7362,-1.1264,-0.9003) mvmt=(0.0803,0.4149,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2388,-1.3664,-1.0053) mvmt=(0.0803,0.4149,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2726,3.3615,0.4800) mvmt=(0.4149,-0.0803,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.227,8.139,94.500) lpos=(0.273,3.361,0.480) lprev=(-0.142,3.442,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7362,-1.1264,-0.9003) mvmt=(0.0803,0.4149,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2388,-1.3664,-1.0053) mvmt=(0.0803,0.4149,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2388,-1.3664,-1.0053) out=(0.2388,-1.3664,-0.5781) delta=(0.0000,0.0000,0.4272) deltaMag=0.4272 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.2880 dpPos=0.1831 dpMove=-0.4170 iDist=0.7120 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.2726,3.3615,0.9072) mvmt=(0.4149,-0.0803,0.4272) collide=False insertType=0 objState=0x303 winterp=0.2880 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.227,8.139,94.927) lpos=(0.273,3.361,0.907) lprev=(-0.142,3.442,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7362,-1.1264,-0.4731) mvmt=(0.0803,0.4149,0.4272) collide=False insertType=0 objState=0x303 winterp=0.2880 return=-1 +[push-back-disp] site=dispatch center=(0.2388,-1.3664,-0.5781) mvmt=(0.0803,0.4149,0.4272) collide=False insertType=0 objState=0x303 winterp=0.2880 return=-1 +[push-back-disp] site=dispatch center=(2.1824,2.2203,0.9197) mvmt=(-0.4123,0.0928,0.4272) collide=False insertType=0 objState=0x303 winterp=0.2880 return=-1 +[push-back-disp] site=dispatch center=(0.2726,3.3615,0.9272) mvmt=(0.4149,-0.0803,0.4272) collide=False insertType=0 objState=0x303 winterp=0.2880 return=-1 +[push-back-disp] site=dispatch center=(0.2726,3.3615,0.9072) mvmt=(0.4149,-0.0803,0.4272) collide=False insertType=1 objState=0x303 winterp=0.2880 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.227,8.139,94.927) lpos=(0.273,3.361,0.907) lprev=(-0.142,3.442,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7362,-1.1264,-0.4731) mvmt=(0.0803,0.4149,0.4272) collide=False insertType=1 objState=0x303 winterp=0.2880 return=-1 +[push-back-disp] site=dispatch center=(0.2388,-1.3664,-0.5781) mvmt=(0.0803,0.4149,0.4272) collide=False insertType=1 objState=0x303 winterp=0.2880 return=-1 +[push-back-disp] site=dispatch center=(2.1824,2.2203,0.9197) mvmt=(-0.4123,0.0928,0.4272) collide=False insertType=1 objState=0x303 winterp=0.2880 return=-1 +[push-back-disp] site=dispatch center=(0.2726,3.3615,0.9272) mvmt=(0.4149,-0.0803,0.4272) collide=False insertType=1 objState=0x303 winterp=0.2880 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(0.0581,3.3615,0.6873) mvmt=(0.2004,-0.0803,0.2073) collide=False insertType=0 objState=0x303 winterp=0.2880 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.442,8.139,94.707) lpos=(0.058,3.361,0.687) lprev=(-0.142,3.442,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7362,-1.3409,-0.6930) mvmt=(0.0803,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=0.2880 return=-1 +[push-back-disp] site=dispatch center=(0.2388,-1.5809,-0.7980) mvmt=(0.0803,0.2004,0.2073) collide=False insertType=0 objState=0x303 winterp=0.2880 return=-1 +[push-back-disp] site=dispatch center=(0.0581,3.3615,0.7073) mvmt=(0.2004,-0.0803,0.2073) collide=False insertType=0 objState=0x303 winterp=0.2880 return=-1 +[push-back-disp] site=dispatch center=(0.0581,3.3615,-0.0627) mvmt=(0.2004,-0.0803,-0.5427) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0581,3.3615,-0.0627) out=(0.0581,3.3615,0.4800) delta=(0.0000,0.0000,0.5427) deltaMag=0.5427 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.2765 dpPos=-0.0627 dpMove=-0.7500 iDist=0.7235 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.442,8.139,93.957) lpos=(0.058,3.361,-0.063) lprev=(-0.142,3.442,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(0.0581,3.3615,0.4800) mvmt=(0.2004,-0.0803,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2765 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.442,8.139,94.500) lpos=(0.058,3.361,0.480) lprev=(-0.142,3.442,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7362,-1.3409,-0.9003) mvmt=(0.0803,0.2004,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2765 return=-1 +[push-back-disp] site=dispatch center=(0.2388,-1.5809,-1.0053) mvmt=(0.0803,0.2004,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2765 return=-1 +[push-back] site=adjust_sphere in=(0.2388,-1.5809,-1.0053) out=(0.2388,-1.5809,-0.8000) delta=(0.0000,0.0000,0.2053) deltaMag=0.2053 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.2765->0.0027 dpPos=0.3373 dpMove=-0.1441 iDist=0.9903 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.0581,3.3615,0.6853) mvmt=(0.2004,-0.0803,0.2053) collide=False insertType=0 objState=0x303 winterp=0.0027 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.442,8.139,94.705) lpos=(0.058,3.361,0.685) lprev=(-0.142,3.442,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7362,-1.3409,-0.6950) mvmt=(0.0803,0.2004,0.2053) collide=False insertType=0 objState=0x303 winterp=0.0027 return=-1 +[push-back-disp] site=dispatch center=(0.2388,-1.5809,-0.8000) mvmt=(0.0803,0.2004,0.2053) collide=False insertType=0 objState=0x303 winterp=0.0027 return=-1 +[push-back-disp] site=dispatch center=(0.0581,3.3615,0.7053) mvmt=(0.2004,-0.0803,0.2053) collide=False insertType=0 objState=0x303 winterp=0.0027 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.0581,3.2803,0.6853) mvmt=(0.0000,-0.0812,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.442,8.220,94.705) lpos=(0.058,3.280,0.685) lprev=(0.058,3.361,0.685) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6551,-1.3409,-0.6950) mvmt=(0.0812,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-1.5809,-0.8000) mvmt=(0.0812,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0581,3.2803,0.7053) mvmt=(0.0000,-0.0812,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0581,3.2803,-0.0647) mvmt=(0.0000,-0.0812,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0581,3.2803,-0.0647) out=(0.0581,3.2803,0.4800) delta=(0.0000,0.0000,0.5447) deltaMag=0.5447 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.2738 dpPos=-0.0647 dpMove=-0.7500 iDist=0.7262 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.442,8.220,93.955) lpos=(0.058,3.280,-0.065) lprev=(0.058,3.361,0.685) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(0.0581,3.2803,0.4800) mvmt=(0.0000,-0.0812,-0.2053) collide=False insertType=0 objState=0x303 winterp=0.2738 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.442,8.220,94.500) lpos=(0.058,3.280,0.480) lprev=(0.058,3.361,0.685) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6551,-1.3409,-0.9003) mvmt=(0.0812,0.0000,-0.2053) collide=False insertType=0 objState=0x303 winterp=0.2738 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-1.5809,-1.0053) mvmt=(0.0812,0.0000,-0.2053) collide=False insertType=0 objState=0x303 winterp=0.2738 return=-1 +[push-back] site=adjust_sphere in=(0.3199,-1.5809,-1.0053) out=(0.3199,-1.5809,-0.8000) delta=(0.0000,0.0000,0.2053) deltaMag=0.2053 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.2738->0.0000 dpPos=0.3373 dpMove=-0.1427 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.0581,3.2803,0.6853) mvmt=(0.0000,-0.0812,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.442,8.220,94.705) lpos=(0.058,3.280,0.685) lprev=(0.058,3.361,0.685) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6551,-1.3409,-0.6950) mvmt=(0.0812,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-1.5809,-0.8000) mvmt=(0.0812,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0581,3.2803,0.7053) mvmt=(0.0000,-0.0812,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.2618,3.1987,0.8961) mvmt=(0.2037,-0.0816,0.2107) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.238,8.301,94.916) lpos=(0.262,3.199,0.896) lprev=(0.058,3.280,0.685) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5735,-1.1372,-0.4842) mvmt=(0.0816,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2618,3.1987,0.8961) mvmt=(0.2037,-0.0816,0.2107) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.238,8.301,94.916) lpos=(0.262,3.199,0.896) lprev=(0.058,3.280,0.685) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5735,-1.1372,-0.4842) mvmt=(0.0816,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5735,-1.1372,-0.4842) out=(-0.5735,-1.1372,-0.1084) delta=(0.0000,0.0000,0.3759) deltaMag=0.3759 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.3735 dpPos=0.2142 dpMove=-0.4243 iDist=0.6265 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.2618,3.1987,1.2719) mvmt=(0.2037,-0.0816,0.5866) collide=False insertType=0 objState=0x303 winterp=0.3735 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.238,8.301,95.292) lpos=(0.262,3.199,1.272) lprev=(0.058,3.280,0.685) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5735,-1.1372,-0.1084) mvmt=(0.0816,0.2037,0.5866) collide=False insertType=0 objState=0x303 winterp=0.3735 return=-1 +[push-back-disp] site=dispatch center=(0.4015,-1.3772,-0.2133) mvmt=(0.0816,0.2037,0.5866) collide=False insertType=0 objState=0x303 winterp=0.3735 return=-1 +[push-back-disp] site=dispatch center=(0.4015,-3.5884,-1.5634) mvmt=(0.0816,0.2037,0.5866) collide=False insertType=0 objState=0x303 winterp=0.3735 return=-1 +[push-back-disp] site=dispatch center=(2.1981,2.3827,1.2844) mvmt=(-0.2012,0.0877,0.5866) collide=False insertType=0 objState=0x303 winterp=0.3735 return=-1 +[push-back-disp] site=dispatch center=(0.2618,3.1987,1.2919) mvmt=(0.2037,-0.0816,0.5866) collide=False insertType=0 objState=0x303 winterp=0.3735 return=-1 +[push-back-disp] site=dispatch center=(0.2618,3.1987,1.2719) mvmt=(0.2037,-0.0816,0.5866) collide=False insertType=1 objState=0x303 winterp=0.3735 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.238,8.301,95.292) lpos=(0.262,3.199,1.272) lprev=(0.058,3.280,0.685) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5735,-1.1372,-0.1084) mvmt=(0.0816,0.2037,0.5866) collide=False insertType=1 objState=0x303 winterp=0.3735 return=-1 +[push-back-disp] site=dispatch center=(0.4015,-1.3772,-0.2133) mvmt=(0.0816,0.2037,0.5866) collide=False insertType=1 objState=0x303 winterp=0.3735 return=-1 +[push-back-disp] site=dispatch center=(0.4015,-3.5884,-1.5634) mvmt=(0.0816,0.2037,0.5866) collide=False insertType=1 objState=0x303 winterp=0.3735 return=-1 +[push-back-disp] site=dispatch center=(2.1981,2.3827,1.2844) mvmt=(-0.2012,0.0877,0.5866) collide=False insertType=1 objState=0x303 winterp=0.3735 return=-1 +[push-back-disp] site=dispatch center=(0.2618,3.1987,1.2919) mvmt=(0.2037,-0.0816,0.5866) collide=False insertType=1 objState=0x303 winterp=0.3735 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(0.2653,3.2803,0.8926) mvmt=(0.2072,0.0000,0.2072) collide=False insertType=0 objState=0x303 winterp=0.3735 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.235,8.220,94.913) lpos=(0.265,3.280,0.893) lprev=(0.058,3.280,0.685) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6551,-1.1337,-0.4877) mvmt=(0.0000,0.2072,0.2072) collide=False insertType=0 objState=0x303 winterp=0.3735 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-1.3737,-0.5927) mvmt=(0.0000,0.2072,0.2072) collide=False insertType=0 objState=0x303 winterp=0.3735 return=-1 +[push-back-disp] site=dispatch center=(0.2653,3.2803,0.8926) mvmt=(0.2072,0.0000,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.235,8.220,94.913) lpos=(0.265,3.280,0.893) lprev=(0.058,3.280,0.685) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6551,-1.1337,-0.4877) mvmt=(0.0000,0.2072,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-1.3737,-0.5927) mvmt=(0.0000,0.2072,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3199,-1.3737,-0.5927) out=(0.3199,-1.3737,-0.5856) delta=(0.0000,0.0000,0.0071) deltaMag=0.0071 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.9881 dpPos=0.4750 dpMove=-0.4170 iDist=0.0119 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.2653,3.2803,0.8997) mvmt=(0.2072,0.0000,0.2144) collide=False insertType=0 objState=0x303 winterp=0.9881 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.235,8.220,94.920) lpos=(0.265,3.280,0.900) lprev=(0.058,3.280,0.685) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6551,-1.1337,-0.4806) mvmt=(0.0000,0.2072,0.2144) collide=False insertType=0 objState=0x303 winterp=0.9881 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-1.3737,-0.5856) mvmt=(0.0000,0.2072,0.2144) collide=False insertType=0 objState=0x303 winterp=0.9881 return=-1 +[push-back-disp] site=dispatch center=(0.2653,3.2803,0.9197) mvmt=(0.2072,0.0000,0.2144) collide=False insertType=0 objState=0x303 winterp=0.9881 return=-1 +[push-back-disp] site=dispatch center=(0.2653,3.2803,0.8997) mvmt=(0.2072,0.0000,0.2144) collide=False insertType=1 objState=0x303 winterp=0.9881 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.235,8.220,94.920) lpos=(0.265,3.280,0.900) lprev=(0.058,3.280,0.685) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6551,-1.1337,-0.4806) mvmt=(0.0000,0.2072,0.2144) collide=False insertType=1 objState=0x303 winterp=0.9881 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-1.3737,-0.5856) mvmt=(0.0000,0.2072,0.2144) collide=False insertType=1 objState=0x303 winterp=0.9881 return=-1 +[push-back-disp] site=dispatch center=(0.2653,3.2803,0.9197) mvmt=(0.2072,0.0000,0.2144) collide=False insertType=1 objState=0x303 winterp=0.9881 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(0.2618,3.2803,0.8960) mvmt=(0.2037,0.0000,0.2107) collide=False insertType=0 objState=0x303 winterp=0.9881 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.238,8.220,94.916) lpos=(0.262,3.280,0.896) lprev=(0.058,3.280,0.685) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6551,-1.1372,-0.4843) mvmt=(0.0000,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=0.9881 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-1.3772,-0.5893) mvmt=(0.0000,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=0.9881 return=-1 +[push-back-disp] site=dispatch center=(0.2618,3.2803,0.9160) mvmt=(0.2037,0.0000,0.2107) collide=False insertType=0 objState=0x303 winterp=0.9881 return=-1 +[push-back-disp] site=dispatch center=(0.2618,3.2803,0.1460) mvmt=(0.2037,0.0000,-0.5393) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2618,3.2803,0.1460) out=(0.2618,3.2803,0.4800) delta=(0.0000,0.0000,0.3340) deltaMag=0.3340 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.5547 dpPos=0.1460 dpMove=-0.7500 iDist=0.4453 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.238,8.220,94.166) lpos=(0.262,3.280,0.146) lprev=(0.058,3.280,0.685) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(0.2618,3.2803,0.4800) mvmt=(0.2037,0.0000,-0.2053) collide=False insertType=0 objState=0x303 winterp=0.5547 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.238,8.220,94.500) lpos=(0.262,3.280,0.480) lprev=(0.058,3.280,0.685) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6551,-1.1372,-0.9003) mvmt=(0.0000,0.2037,-0.2053) collide=False insertType=0 objState=0x303 winterp=0.5547 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-1.3772,-1.0053) mvmt=(0.0000,0.2037,-0.2053) collide=False insertType=0 objState=0x303 winterp=0.5547 return=-1 +[push-back] site=adjust_sphere in=(0.3199,-1.3772,-1.0053) out=(0.3199,-1.3772,-0.5893) delta=(0.0000,0.0000,0.4160) deltaMag=0.4160 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.5547->-0.0000 dpPos=0.1909 dpMove=-0.2891 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.2618,3.2803,0.8960) mvmt=(0.2037,0.0000,0.2107) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.238,8.220,94.916) lpos=(0.262,3.280,0.896) lprev=(0.058,3.280,0.685) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6551,-1.1372,-0.4843) mvmt=(0.0000,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-1.3772,-0.5893) mvmt=(0.0000,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2618,3.2803,0.9160) mvmt=(0.2037,0.0000,0.2107) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.2618,3.1995,0.8960) mvmt=(0.0000,-0.0809,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.238,8.301,94.916) lpos=(0.262,3.199,0.896) lprev=(0.262,3.280,0.896) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5742,-1.1372,-0.4843) mvmt=(0.0809,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2618,3.1995,0.8960) mvmt=(0.0000,-0.0809,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.238,8.301,94.916) lpos=(0.262,3.199,0.896) lprev=(0.262,3.280,0.896) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5742,-1.1372,-0.4843) mvmt=(0.0809,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5742,-1.1372,-0.4843) out=(-0.5742,-1.1372,-0.1084) delta=(0.0000,0.0000,0.3759) deltaMag=0.3759 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.3736 dpPos=0.2142 dpMove=-0.4243 iDist=0.6264 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.2618,3.1995,1.2719) mvmt=(0.0000,-0.0809,0.3759) collide=False insertType=0 objState=0x303 winterp=0.3736 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.238,8.301,95.292) lpos=(0.262,3.199,1.272) lprev=(0.262,3.280,0.896) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5742,-1.1372,-0.1084) mvmt=(0.0809,0.0000,0.3759) collide=False insertType=0 objState=0x303 winterp=0.3736 return=-1 +[push-back-disp] site=dispatch center=(0.4008,-1.3772,-0.2134) mvmt=(0.0809,0.0000,0.3759) collide=False insertType=0 objState=0x303 winterp=0.3736 return=-1 +[push-back-disp] site=dispatch center=(0.4008,-3.5885,-1.5634) mvmt=(0.0809,0.0000,0.3759) collide=False insertType=0 objState=0x303 winterp=0.3736 return=-1 +[push-back-disp] site=dispatch center=(2.1981,2.3820,1.2843) mvmt=(0.0024,0.0808,0.3759) collide=False insertType=0 objState=0x303 winterp=0.3736 return=-1 +[push-back-disp] site=dispatch center=(0.2618,3.1995,1.2919) mvmt=(0.0000,-0.0809,0.3759) collide=False insertType=0 objState=0x303 winterp=0.3736 return=-1 +[push-back-disp] site=dispatch center=(0.2618,3.1995,1.2719) mvmt=(0.0000,-0.0809,0.3759) collide=False insertType=1 objState=0x303 winterp=0.3736 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.238,8.301,95.292) lpos=(0.262,3.199,1.272) lprev=(0.262,3.280,0.896) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5742,-1.1372,-0.1084) mvmt=(0.0809,0.0000,0.3759) collide=False insertType=1 objState=0x303 winterp=0.3736 return=-1 +[push-back-disp] site=dispatch center=(0.4008,-1.3772,-0.2134) mvmt=(0.0809,0.0000,0.3759) collide=False insertType=1 objState=0x303 winterp=0.3736 return=-1 +[push-back-disp] site=dispatch center=(0.4008,-3.5885,-1.5634) mvmt=(0.0809,0.0000,0.3759) collide=False insertType=1 objState=0x303 winterp=0.3736 return=-1 +[push-back-disp] site=dispatch center=(2.1981,2.3820,1.2843) mvmt=(0.0024,0.0808,0.3759) collide=False insertType=1 objState=0x303 winterp=0.3736 return=-1 +[push-back-disp] site=dispatch center=(0.2618,3.1995,1.2919) mvmt=(0.0000,-0.0809,0.3759) collide=False insertType=1 objState=0x303 winterp=0.3736 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.4755,3.2803,1.2868) mvmt=(0.2137,0.0000,0.3908) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.024,8.220,95.307) lpos=(0.476,3.280,1.287) lprev=(0.262,3.280,0.896) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6551,-0.9235,-0.0935) mvmt=(0.0000,0.2137,0.3908) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-1.1635,-0.1985) mvmt=(0.0000,0.2137,0.3908) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-3.3748,-1.5485) mvmt=(0.0000,0.2137,0.3908) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9821,2.3076,1.2993) mvmt=(-0.2136,0.0065,0.3908) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4755,3.2803,1.3068) mvmt=(0.2137,0.0000,0.3908) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4755,3.2803,0.5368) mvmt=(0.2137,0.0000,-0.3592) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.024,8.220,94.557) lpos=(0.476,3.280,0.537) lprev=(0.262,3.280,0.896) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6551,-0.9235,-0.8435) mvmt=(0.0000,0.2137,-0.3592) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-1.1635,-0.9485) mvmt=(0.0000,0.2137,-0.3592) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3199,-1.1635,-0.9485) out=(0.3199,-1.1635,-0.3682) delta=(0.0000,0.0000,0.5803) deltaMag=0.5803 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.2262 dpPos=0.0766 dpMove=-0.5213 iDist=0.7738 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.4755,3.2803,1.1171) mvmt=(0.2137,0.0000,0.2211) collide=False insertType=0 objState=0x303 winterp=0.2262 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.024,8.220,95.137) lpos=(0.476,3.280,1.117) lprev=(0.262,3.280,0.896) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6551,-0.9235,-0.2632) mvmt=(0.0000,0.2137,0.2211) collide=False insertType=0 objState=0x303 winterp=0.2262 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-1.1635,-0.3682) mvmt=(0.0000,0.2137,0.2211) collide=False insertType=0 objState=0x303 winterp=0.2262 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-3.3748,-1.7182) mvmt=(0.0000,0.2137,0.2211) collide=False insertType=0 objState=0x303 winterp=0.2262 return=-1 +[push-back-disp] site=dispatch center=(1.9821,2.3076,1.1296) mvmt=(-0.2136,0.0065,0.2211) collide=False insertType=0 objState=0x303 winterp=0.2262 return=-1 +[push-back-disp] site=dispatch center=(0.4755,3.2803,1.1371) mvmt=(0.2137,0.0000,0.2211) collide=False insertType=0 objState=0x303 winterp=0.2262 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.6849,3.2102,1.3337) mvmt=(0.2094,-0.0701,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.815,8.290,95.354) lpos=(0.685,3.210,1.334) lprev=(0.476,3.280,1.117) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5849,-0.7141,-0.0466) mvmt=(0.0701,0.2094,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6849,3.2102,1.3337) mvmt=(0.2094,-0.0701,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.815,8.290,95.354) lpos=(0.685,3.210,1.334) lprev=(0.476,3.280,1.117) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5849,-0.7141,-0.0466) mvmt=(0.0701,0.2094,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5849,-0.7141,-0.0466) out=(-0.5849,-0.7141,0.3147) delta=(0.0000,0.0000,0.3613) deltaMag=0.3613 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.3979 dpPos=0.2245 dpMove=-0.4243 iDist=0.6021 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.6849,3.2102,1.6950) mvmt=(0.2094,-0.0701,0.5779) collide=False insertType=0 objState=0x303 winterp=0.3979 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.815,8.290,95.715) lpos=(0.685,3.210,1.695) lprev=(0.476,3.280,1.117) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5849,-0.7141,0.3147) mvmt=(0.0701,0.2094,0.5779) collide=False insertType=0 objState=0x303 winterp=0.3979 return=-1 +[push-back-disp] site=dispatch center=(0.3901,-0.9541,0.2097) mvmt=(0.0701,0.2094,0.5778) collide=False insertType=0 objState=0x303 winterp=0.3979 return=-1 +[push-back-disp] site=dispatch center=(0.3901,-3.1654,-1.1403) mvmt=(0.0701,0.2094,0.5778) collide=False insertType=0 objState=0x303 winterp=0.3979 return=-1 +[push-back-disp] site=dispatch center=(1.7749,2.3840,1.7074) mvmt=(-0.2071,0.0764,0.5778) collide=False insertType=0 objState=0x303 winterp=0.3979 return=-1 +[push-back-disp] site=dispatch center=(0.6849,3.2102,1.7150) mvmt=(0.2094,-0.0701,0.5779) collide=False insertType=0 objState=0x303 winterp=0.3979 return=-1 +[push-back-disp] site=dispatch center=(0.6849,3.2102,1.6950) mvmt=(0.2094,-0.0701,0.5779) collide=False insertType=1 objState=0x303 winterp=0.3979 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.815,8.290,95.715) lpos=(0.685,3.210,1.695) lprev=(0.476,3.280,1.117) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5849,-0.7141,0.3147) mvmt=(0.0701,0.2094,0.5779) collide=False insertType=1 objState=0x303 winterp=0.3979 return=-1 +[push-back-disp] site=dispatch center=(0.3901,-0.9541,0.2097) mvmt=(0.0701,0.2094,0.5778) collide=False insertType=1 objState=0x303 winterp=0.3979 return=-1 +[push-back-disp] site=dispatch center=(0.3901,-3.1654,-1.1403) mvmt=(0.0701,0.2094,0.5778) collide=False insertType=1 objState=0x303 winterp=0.3979 return=-1 +[push-back-disp] site=dispatch center=(1.7749,2.3840,1.7074) mvmt=(-0.2071,0.0764,0.5778) collide=False insertType=1 objState=0x303 winterp=0.3979 return=-1 +[push-back-disp] site=dispatch center=(0.6849,3.2102,1.7150) mvmt=(0.2094,-0.0701,0.5779) collide=False insertType=1 objState=0x303 winterp=0.3979 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(0.6885,3.2803,1.3301) mvmt=(0.2130,0.0000,0.2130) collide=False insertType=0 objState=0x303 winterp=0.3979 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.812,8.220,95.350) lpos=(0.688,3.280,1.330) lprev=(0.476,3.280,1.117) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6551,-0.7105,-0.0502) mvmt=(0.0000,0.2130,0.2130) collide=False insertType=0 objState=0x303 winterp=0.3979 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-0.9505,-0.1552) mvmt=(0.0000,0.2130,0.2130) collide=False insertType=0 objState=0x303 winterp=0.3979 return=-1 +[push-back-disp] site=dispatch center=(0.6885,3.2803,1.3301) mvmt=(0.2130,0.0000,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.812,8.220,95.350) lpos=(0.688,3.280,1.330) lprev=(0.476,3.280,1.117) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6551,-0.7105,-0.0502) mvmt=(0.0000,0.2130,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-0.9505,-0.1552) mvmt=(0.0000,0.2130,0.2130) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3199,-0.9505,-0.1552) out=(0.3199,-0.9505,-0.1479) delta=(0.0000,0.0000,0.0073) deltaMag=0.0073 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.9877 dpPos=0.4749 dpMove=-0.4170 iDist=0.0123 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.6885,3.2803,1.3374) mvmt=(0.2130,0.0000,0.2203) collide=False insertType=0 objState=0x303 winterp=0.9877 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.812,8.220,95.357) lpos=(0.688,3.280,1.337) lprev=(0.476,3.280,1.117) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6551,-0.7105,-0.0429) mvmt=(0.0000,0.2130,0.2203) collide=False insertType=0 objState=0x303 winterp=0.9877 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-0.9505,-0.1479) mvmt=(0.0000,0.2130,0.2203) collide=False insertType=0 objState=0x303 winterp=0.9877 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-3.1618,-1.4979) mvmt=(0.0000,0.2130,0.2203) collide=False insertType=0 objState=0x303 winterp=0.9877 return=-1 +[push-back-disp] site=dispatch center=(1.7692,2.3140,1.3499) mvmt=(-0.2129,0.0064,0.2203) collide=False insertType=0 objState=0x303 winterp=0.9877 return=-1 +[push-back-disp] site=dispatch center=(0.6885,3.2803,1.3574) mvmt=(0.2130,0.0000,0.2203) collide=False insertType=0 objState=0x303 winterp=0.9877 return=-1 +[push-back-disp] site=dispatch center=(0.6885,3.2803,1.3374) mvmt=(0.2130,0.0000,0.2203) collide=False insertType=1 objState=0x303 winterp=0.9877 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.812,8.220,95.357) lpos=(0.688,3.280,1.337) lprev=(0.476,3.280,1.117) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6551,-0.7105,-0.0429) mvmt=(0.0000,0.2130,0.2203) collide=False insertType=1 objState=0x303 winterp=0.9877 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-0.9505,-0.1479) mvmt=(0.0000,0.2130,0.2203) collide=False insertType=1 objState=0x303 winterp=0.9877 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-3.1618,-1.4979) mvmt=(0.0000,0.2130,0.2203) collide=False insertType=1 objState=0x303 winterp=0.9877 return=-1 +[push-back-disp] site=dispatch center=(1.7692,2.3140,1.3499) mvmt=(-0.2129,0.0064,0.2203) collide=False insertType=1 objState=0x303 winterp=0.9877 return=-1 +[push-back-disp] site=dispatch center=(0.6885,3.2803,1.3574) mvmt=(0.2130,0.0000,0.2203) collide=False insertType=1 objState=0x303 winterp=0.9877 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(0.6848,3.2803,1.3336) mvmt=(0.2093,0.0000,0.2165) collide=False insertType=0 objState=0x303 winterp=0.9877 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.815,8.220,95.354) lpos=(0.685,3.280,1.334) lprev=(0.476,3.280,1.117) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6551,-0.7142,-0.0467) mvmt=(0.0000,0.2093,0.2165) collide=False insertType=0 objState=0x303 winterp=0.9877 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-0.9542,-0.1517) mvmt=(0.0000,0.2093,0.2165) collide=False insertType=0 objState=0x303 winterp=0.9877 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-3.1655,-1.5017) mvmt=(0.0000,0.2093,0.2165) collide=False insertType=0 objState=0x303 winterp=0.9877 return=-1 +[push-back-disp] site=dispatch center=(1.7729,2.3139,1.3461) mvmt=(-0.2092,0.0063,0.2165) collide=False insertType=0 objState=0x303 winterp=0.9877 return=-1 +[push-back-disp] site=dispatch center=(0.6848,3.2803,1.3536) mvmt=(0.2093,0.0000,0.2165) collide=False insertType=0 objState=0x303 winterp=0.9877 return=-1 +[push-back-disp] site=dispatch center=(0.6848,3.2803,0.5836) mvmt=(0.2093,0.0000,-0.5335) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.815,8.220,94.604) lpos=(0.685,3.280,0.584) lprev=(0.476,3.280,1.117) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6551,-0.7142,-0.7967) mvmt=(0.0000,0.2093,-0.5335) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-0.9542,-0.9017) mvmt=(0.0000,0.2093,-0.5335) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3199,-0.9542,-0.9017) out=(0.3199,-0.9542,-0.1517) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.6848,3.2803,1.3336) mvmt=(0.2093,0.0000,0.2165) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.815,8.220,95.354) lpos=(0.685,3.280,1.334) lprev=(0.476,3.280,1.117) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6551,-0.7142,-0.0467) mvmt=(0.0000,0.2093,0.2165) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-0.9542,-0.1517) mvmt=(0.0000,0.2093,0.2165) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-3.1655,-1.5017) mvmt=(0.0000,0.2093,0.2165) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7729,2.3139,1.3461) mvmt=(-0.2092,0.0063,0.2165) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6848,3.2803,1.3536) mvmt=(0.2093,0.0000,0.2165) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.6848,3.2481,1.3336) mvmt=(0.0000,-0.0322,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.815,8.252,95.354) lpos=(0.685,3.248,1.334) lprev=(0.685,3.280,1.334) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6229,-0.7142,-0.0467) mvmt=(0.0322,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3521,-0.9542,-0.1517) mvmt=(0.0322,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3521,-3.1655,-1.5017) mvmt=(0.0322,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6848,3.2481,1.3536) mvmt=(0.0000,-0.0322,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6848,3.2481,0.5836) mvmt=(0.0000,-0.0322,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.815,8.252,94.604) lpos=(0.685,3.248,0.584) lprev=(0.685,3.280,1.334) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6229,-0.7142,-0.7967) mvmt=(0.0322,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3521,-0.9542,-0.9017) mvmt=(0.0322,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3521,-0.9542,-0.9017) out=(0.3521,-0.9542,-0.1517) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.6848,3.2481,1.3336) mvmt=(0.0000,-0.0322,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.815,8.252,95.354) lpos=(0.685,3.248,1.334) lprev=(0.685,3.280,1.334) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6229,-0.7142,-0.0467) mvmt=(0.0322,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3521,-0.9542,-0.1517) mvmt=(0.0322,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3521,-3.1655,-1.5017) mvmt=(0.0322,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6848,3.2481,1.3536) mvmt=(0.0000,-0.0322,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.8906,3.2439,1.5466) mvmt=(0.2058,-0.0042,0.2129) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.609,8.256,95.567) lpos=(0.891,3.244,1.547) lprev=(0.685,3.248,1.334) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6186,-0.5084,0.1663) mvmt=(0.0042,0.2058,0.2129) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3564,-0.7484,0.0613) mvmt=(0.0042,0.2058,0.2129) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3564,-2.9596,-1.2887) mvmt=(0.0042,0.2058,0.2129) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5682,2.3566,1.5590) mvmt=(-0.2056,0.0104,0.2129) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8906,3.2439,1.5666) mvmt=(0.2058,-0.0042,0.2129) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8906,3.2439,0.7966) mvmt=(0.2058,-0.0042,-0.5371) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.609,8.256,94.817) lpos=(0.891,3.244,0.797) lprev=(0.685,3.248,1.334) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6186,-0.5084,-0.5837) mvmt=(0.0042,0.2058,-0.5371) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3564,-0.7484,-0.6887) mvmt=(0.0042,0.2058,-0.5371) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3564,-0.7484,-0.6887) out=(0.3564,-0.7484,0.0613) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.8906,3.2439,1.5466) mvmt=(0.2058,-0.0042,0.2129) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.609,8.256,95.567) lpos=(0.891,3.244,1.547) lprev=(0.685,3.248,1.334) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6186,-0.5084,0.1663) mvmt=(0.0042,0.2058,0.2129) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3564,-0.7484,0.0613) mvmt=(0.0042,0.2058,0.2129) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3564,-2.9596,-1.2887) mvmt=(0.0042,0.2058,0.2129) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5682,2.3566,1.5590) mvmt=(-0.2056,0.0104,0.2129) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8906,3.2439,1.5666) mvmt=(0.2058,-0.0042,0.2129) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.0954,3.2397,1.7584) mvmt=(0.2048,-0.0042,0.2118) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.405,8.260,95.778) lpos=(1.095,3.240,1.758) lprev=(0.891,3.244,1.547) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6144,-0.3036,0.3781) mvmt=(0.0042,0.2048,0.2118) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3606,-0.5436,0.2731) mvmt=(0.0042,0.2048,0.2118) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3606,-2.7548,-1.0769) mvmt=(0.0042,0.2048,0.2118) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3636,2.3669,1.7709) mvmt=(-0.2046,0.0104,0.2118) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0954,3.2397,1.7784) mvmt=(0.2048,-0.0042,0.2118) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0954,3.2397,1.0084) mvmt=(0.2048,-0.0042,-0.5382) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.405,8.260,95.028) lpos=(1.095,3.240,1.008) lprev=(0.891,3.244,1.547) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6144,-0.3036,-0.3719) mvmt=(0.0042,0.2048,-0.5382) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3606,-0.5436,-0.4769) mvmt=(0.0042,0.2048,-0.5382) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3606,-0.5436,-0.4769) out=(0.3606,-0.5436,0.2731) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.0954,3.2397,1.7584) mvmt=(0.2048,-0.0042,0.2119) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.405,8.260,95.778) lpos=(1.095,3.240,1.758) lprev=(0.891,3.244,1.547) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6144,-0.3036,0.3781) mvmt=(0.0042,0.2048,0.2119) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3606,-0.5436,0.2731) mvmt=(0.0042,0.2048,0.2119) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3606,-2.7548,-1.0769) mvmt=(0.0042,0.2048,0.2119) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3636,2.3669,1.7709) mvmt=(-0.2046,0.0104,0.2119) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0954,3.2397,1.7784) mvmt=(0.2048,-0.0042,0.2119) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.3029,3.2354,1.9731) mvmt=(0.2075,-0.0043,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.197,8.265,95.993) lpos=(1.303,3.235,1.973) lprev=(1.095,3.240,1.758) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6102,-0.0961,0.5928) mvmt=(0.0043,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3648,-0.3361,0.4878) mvmt=(0.0043,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3648,-2.5473,-0.8622) mvmt=(0.0043,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.2321,3.2354,0.4931) mvmt=(0.2075,-0.0043,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1563,2.3775,1.9856) mvmt=(-0.2073,0.0105,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3029,3.2354,1.9931) mvmt=(0.2075,-0.0043,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3029,3.2354,1.2231) mvmt=(0.2075,-0.0043,-0.5353) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.197,8.265,95.243) lpos=(1.303,3.235,1.223) lprev=(1.095,3.240,1.758) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6102,-0.0961,-0.1572) mvmt=(0.0043,0.2075,-0.5353) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3648,-0.3361,-0.2622) mvmt=(0.0043,0.2075,-0.5353) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3648,-0.3361,-0.2622) out=(0.3648,-0.3361,0.4878) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.3029,3.2354,1.9731) mvmt=(0.2075,-0.0043,0.2147) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.197,8.265,95.993) lpos=(1.303,3.235,1.973) lprev=(1.095,3.240,1.758) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6102,-0.0961,0.5928) mvmt=(0.0043,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3648,-0.3361,0.4878) mvmt=(0.0043,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3648,-2.5473,-0.8622) mvmt=(0.0043,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.2321,3.2354,0.4931) mvmt=(0.2075,-0.0043,0.2147) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1563,2.3775,1.9856) mvmt=(-0.2073,0.0105,0.2147) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3029,3.2354,1.9931) mvmt=(0.2075,-0.0043,0.2147) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.5091,3.2312,2.1864) mvmt=(0.2061,-0.0042,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.269,96.206) lpos=(1.509,3.231,2.186) lprev=(1.303,3.235,1.973) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6059,0.1101,0.8061) mvmt=(0.0042,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3691,-0.1299,0.7011) mvmt=(0.0042,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3691,-2.3412,-0.6489) mvmt=(0.0042,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.0259,3.2312,0.7064) mvmt=(0.2061,-0.0042,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9504,2.3879,2.1988) mvmt=(-0.2059,0.0105,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2312,2.2064) mvmt=(0.2061,-0.0042,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2312,1.4364) mvmt=(0.2061,-0.0042,-0.5368) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.269,95.456) lpos=(1.509,3.231,1.436) lprev=(1.303,3.235,1.973) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6059,0.1101,0.0561) mvmt=(0.0042,0.2061,-0.5368) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3691,-0.1299,-0.0489) mvmt=(0.0042,0.2061,-0.5368) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3691,-0.1299,-0.0489) out=(0.3691,-0.1299,0.7011) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5091,3.2312,2.1864) mvmt=(0.2061,-0.0042,0.2132) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.269,96.206) lpos=(1.509,3.231,2.186) lprev=(1.303,3.235,1.973) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6059,0.1101,0.8061) mvmt=(0.0042,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3691,-0.1299,0.7011) mvmt=(0.0042,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3691,-2.3412,-0.6489) mvmt=(0.0042,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.0259,3.2312,0.7064) mvmt=(0.2061,-0.0042,0.2132) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9504,2.3879,2.1988) mvmt=(-0.2059,0.0105,0.2132) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2312,2.2064) mvmt=(0.2061,-0.0042,0.2132) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7101,3.2270,2.3943) mvmt=(0.2010,-0.0041,0.2079) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7101,3.2270,2.3943) mvmt=(0.2010,-0.0041,0.2079) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.790,8.273,96.414) lpos=(1.710,3.227,2.394) lprev=(1.509,3.231,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7101,3.2270,2.3943) mvmt=(0.2010,-0.0041,0.2079) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6018,0.3111,1.0140) mvmt=(0.0041,0.2010,0.2079) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3732,0.0711,0.9090) mvmt=(0.0041,0.2010,0.2079) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3732,-2.1402,-0.4410) mvmt=(0.0041,0.2010,0.2079) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8249,3.2270,0.9143) mvmt=(0.2010,-0.0041,0.2079) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7101,3.2270,2.4143) mvmt=(0.2010,-0.0041,0.2079) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.790,8.273,96.414) lpos=(1.710,3.227,2.394) lprev=(1.509,3.231,2.186) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2270,2.1864) mvmt=(0.0000,-0.0041,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.273,96.206) lpos=(1.509,3.227,2.186) lprev=(1.509,3.231,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6018,0.1101,0.8061) mvmt=(0.0041,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3732,-0.1299,0.7011) mvmt=(0.0041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3732,-2.3412,-0.6489) mvmt=(0.0041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.0259,3.2270,0.7064) mvmt=(0.0000,-0.0041,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2270,2.2064) mvmt=(0.0000,-0.0041,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2270,1.4364) mvmt=(0.0000,-0.0041,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.273,95.456) lpos=(1.509,3.227,1.436) lprev=(1.509,3.231,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6018,0.1101,0.0561) mvmt=(0.0041,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3732,-0.1299,-0.0489) mvmt=(0.0041,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3732,-0.1299,-0.0489) out=(0.3732,-0.1299,0.7011) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5091,3.2270,2.1864) mvmt=(0.0000,-0.0041,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.273,96.206) lpos=(1.509,3.227,2.186) lprev=(1.509,3.231,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6018,0.1101,0.8061) mvmt=(0.0041,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3732,-0.1299,0.7011) mvmt=(0.0041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3732,-2.3412,-0.6489) mvmt=(0.0041,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.0259,3.2270,0.7064) mvmt=(0.0000,-0.0041,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2270,2.2064) mvmt=(0.0000,-0.0041,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7056,3.2230,2.3896) mvmt=(0.1965,-0.0040,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7056,3.2230,2.3896) mvmt=(0.1965,-0.0040,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.794,8.277,96.410) lpos=(1.706,3.223,2.390) lprev=(1.509,3.227,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7056,3.2230,2.3896) mvmt=(0.1965,-0.0040,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5977,0.3065,1.0093) mvmt=(0.0040,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3773,0.0665,0.9043) mvmt=(0.0040,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3773,-2.1447,-0.4457) mvmt=(0.0040,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8295,3.2230,0.9096) mvmt=(0.1965,-0.0040,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7056,3.2230,2.4096) mvmt=(0.1965,-0.0040,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.794,8.277,96.410) lpos=(1.706,3.223,2.390) lprev=(1.509,3.227,2.186) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2230,2.1864) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.277,96.206) lpos=(1.509,3.223,2.186) lprev=(1.509,3.227,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5977,0.1101,0.8061) mvmt=(0.0040,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3773,-0.1299,0.7011) mvmt=(0.0040,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3773,-2.3412,-0.6489) mvmt=(0.0040,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.0259,3.2230,0.7064) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2230,2.2064) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2230,1.4364) mvmt=(0.0000,-0.0040,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.277,95.456) lpos=(1.509,3.223,1.436) lprev=(1.509,3.227,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5977,0.1101,0.0561) mvmt=(0.0040,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3773,-0.1299,-0.0489) mvmt=(0.0040,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3773,-0.1299,-0.0489) out=(0.3773,-0.1299,0.7011) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5091,3.2230,2.1864) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.277,96.206) lpos=(1.509,3.223,2.186) lprev=(1.509,3.227,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5977,0.1101,0.8061) mvmt=(0.0040,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3773,-0.1299,0.7011) mvmt=(0.0040,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3773,-2.3412,-0.6489) mvmt=(0.0040,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.0259,3.2230,0.7064) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2230,2.2064) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7054,3.2189,2.3894) mvmt=(0.1963,-0.0040,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7054,3.2189,2.3894) mvmt=(0.1963,-0.0040,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.795,8.281,96.409) lpos=(1.705,3.219,2.389) lprev=(1.509,3.223,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7054,3.2189,2.3894) mvmt=(0.1963,-0.0040,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5937,0.3064,1.0091) mvmt=(0.0040,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,0.0664,0.9041) mvmt=(0.0040,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,-2.1449,-0.4459) mvmt=(0.0040,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8296,3.2189,0.9094) mvmt=(0.1963,-0.0040,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7054,3.2189,2.4094) mvmt=(0.1963,-0.0040,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.795,8.281,96.409) lpos=(1.705,3.219,2.389) lprev=(1.509,3.223,2.186) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2189,2.1864) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.281,96.206) lpos=(1.509,3.219,2.186) lprev=(1.509,3.223,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5937,0.1101,0.8061) mvmt=(0.0040,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,-0.1299,0.7011) mvmt=(0.0040,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,-2.3412,-0.6489) mvmt=(0.0040,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.0259,3.2189,0.7064) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2189,2.2064) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2189,1.4364) mvmt=(0.0000,-0.0040,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.281,95.456) lpos=(1.509,3.219,1.436) lprev=(1.509,3.223,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5937,0.1101,0.0561) mvmt=(0.0040,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,-0.1299,-0.0489) mvmt=(0.0040,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3813,-0.1299,-0.0489) out=(0.3813,-0.1299,0.7011) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5091,3.2189,2.1864) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.281,96.206) lpos=(1.509,3.219,2.186) lprev=(1.509,3.223,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5937,0.1101,0.8061) mvmt=(0.0040,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,-0.1299,0.7011) mvmt=(0.0040,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3813,-2.3412,-0.6489) mvmt=(0.0040,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.0259,3.2189,0.7064) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2189,2.2064) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7014,3.2150,2.3853) mvmt=(0.1923,-0.0040,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7014,3.2150,2.3853) mvmt=(0.1923,-0.0040,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.799,8.285,96.405) lpos=(1.701,3.215,2.385) lprev=(1.509,3.219,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7014,3.2150,2.3853) mvmt=(0.1923,-0.0040,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5897,0.3024,1.0050) mvmt=(0.0040,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,0.0624,0.9000) mvmt=(0.0040,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,-2.1489,-0.4500) mvmt=(0.0040,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8336,3.2150,0.9053) mvmt=(0.1923,-0.0040,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7014,3.2150,2.4053) mvmt=(0.1923,-0.0040,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.799,8.285,96.405) lpos=(1.701,3.215,2.385) lprev=(1.509,3.219,2.186) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2150,2.1864) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.285,96.206) lpos=(1.509,3.215,2.186) lprev=(1.509,3.219,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5897,0.1101,0.8061) mvmt=(0.0040,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,-0.1299,0.7011) mvmt=(0.0040,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,-2.3412,-0.6489) mvmt=(0.0040,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.0259,3.2150,0.7064) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2150,2.2064) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2150,1.4364) mvmt=(0.0000,-0.0040,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.285,95.456) lpos=(1.509,3.215,1.436) lprev=(1.509,3.219,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5897,0.1101,0.0561) mvmt=(0.0040,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,-0.1299,-0.0489) mvmt=(0.0040,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3853,-0.1299,-0.0489) out=(0.3853,-0.1299,0.7011) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5091,3.2150,2.1864) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.285,96.206) lpos=(1.509,3.215,2.186) lprev=(1.509,3.219,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5897,0.1101,0.8061) mvmt=(0.0040,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,-0.1299,0.7011) mvmt=(0.0040,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,-2.3412,-0.6489) mvmt=(0.0040,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.0259,3.2150,0.7064) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2150,2.2064) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7019,3.2110,2.3858) mvmt=(0.1928,-0.0040,0.1994) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7019,3.2110,2.3858) mvmt=(0.1928,-0.0040,0.1994) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.798,8.289,96.406) lpos=(1.702,3.211,2.386) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7019,3.2110,2.3858) mvmt=(0.1928,-0.0040,0.1994) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5858,0.3029,1.0055) mvmt=(0.0040,0.1928,0.1994) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3892,0.0629,0.9005) mvmt=(0.0040,0.1928,0.1994) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3892,-2.1484,-0.4495) mvmt=(0.0040,0.1928,0.1994) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8331,3.2110,0.9058) mvmt=(0.1928,-0.0040,0.1994) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7019,3.2110,2.4058) mvmt=(0.1928,-0.0040,0.1994) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.798,8.289,96.406) lpos=(1.702,3.211,2.386) lprev=(1.509,3.215,2.186) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2110,2.1864) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5858,0.1101,0.8061) mvmt=(0.0040,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2110,2.1864) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5858,0.1101,0.8061) mvmt=(0.0040,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5858,0.1101,0.8061) out=(-0.5858,0.1101,1.1389) delta=(0.0000,0.0000,0.3329) deltaMag=0.3329 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4452 dpPos=0.2446 dpMove=-0.4243 iDist=0.5548 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5091,3.2110,2.5192) mvmt=(0.0000,-0.0040,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2110,2.5192) mvmt=(0.0000,-0.0040,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.5091,3.2110,2.5192) mvmt=(0.0000,-0.0040,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5858,0.1101,1.1389) mvmt=(0.0040,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3892,-0.1299,1.0339) mvmt=(0.0040,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3892,-2.3412,-0.3161) mvmt=(0.0040,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(-4.0259,3.2110,1.0392) mvmt=(0.0000,-0.0040,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2110,2.5392) mvmt=(0.0000,-0.0040,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2110,2.5192) mvmt=(0.0000,-0.0040,0.3329) collide=False insertType=1 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7266,3.2150,2.5379) mvmt=(0.2175,0.0000,0.3515) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7266,3.2150,2.5379) mvmt=(0.2175,0.0000,0.3515) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.773,8.285,96.558) lpos=(1.727,3.215,2.538) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7266,3.2150,2.5379) mvmt=(0.2175,0.0000,0.3515) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7266,3.2150,2.5379) mvmt=(0.2175,0.0000,0.3515) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5897,0.3276,1.1576) mvmt=(0.0000,0.2175,0.3515) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,0.0876,1.0526) mvmt=(0.0000,0.2175,0.3515) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,-2.1237,-0.2974) mvmt=(0.0000,0.2175,0.3515) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8084,3.2150,1.0579) mvmt=(0.2175,0.0000,0.3515) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7335,2.4107,2.5503) mvmt=(-0.2174,0.0066,0.3515) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7266,3.2150,2.5579) mvmt=(0.2175,0.0000,0.3515) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.773,8.285,96.558) lpos=(1.727,3.215,2.538) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7196,3.2108,2.5309) mvmt=(0.2105,-0.0042,0.3446) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7196,3.2108,2.5309) mvmt=(0.2105,-0.0042,0.3446) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.780,8.289,96.551) lpos=(1.720,3.211,2.531) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7196,3.2108,2.5309) mvmt=(0.2105,-0.0042,0.3446) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7196,3.2108,2.5309) mvmt=(0.2105,-0.0042,0.3446) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5856,0.3206,1.1506) mvmt=(0.0042,0.2105,0.3446) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3894,0.0806,1.0456) mvmt=(0.0042,0.2105,0.3446) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3894,-2.1307,-0.3044) mvmt=(0.0042,0.2105,0.3446) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8154,3.2108,1.0509) mvmt=(0.2105,-0.0042,0.3446) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7406,2.4147,2.5434) mvmt=(-0.2103,0.0105,0.3446) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7196,3.2108,2.5509) mvmt=(0.2105,-0.0042,0.3446) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.780,8.289,96.551) lpos=(1.720,3.211,2.531) lprev=(1.509,3.215,2.186) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.1864) mvmt=(0.0000,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5856,0.1101,0.8061) mvmt=(0.0042,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.1864) mvmt=(0.0000,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5856,0.1101,0.8061) mvmt=(0.0042,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5856,0.1101,0.8061) out=(-0.5856,0.1101,1.1389) delta=(0.0000,0.0000,0.3329) deltaMag=0.3329 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4452 dpPos=0.2446 dpMove=-0.4243 iDist=0.5548 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.5192) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.5192) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.5192) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5856,0.1101,1.1389) mvmt=(0.0042,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3894,-0.1299,1.0339) mvmt=(0.0042,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3894,-2.3412,-0.3161) mvmt=(0.0042,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(-4.0259,3.2108,1.0392) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.5392) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.5192) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=1 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7270,3.2150,2.5383) mvmt=(0.2179,0.0000,0.3519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7270,3.2150,2.5383) mvmt=(0.2179,0.0000,0.3519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.773,8.285,96.558) lpos=(1.727,3.215,2.538) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7270,3.2150,2.5383) mvmt=(0.2179,0.0000,0.3519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7270,3.2150,2.5383) mvmt=(0.2179,0.0000,0.3519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5897,0.3280,1.1580) mvmt=(0.0000,0.2179,0.3519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,0.0880,1.0530) mvmt=(0.0000,0.2179,0.3519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,-2.1233,-0.2971) mvmt=(0.0000,0.2179,0.3519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8080,3.2150,1.0583) mvmt=(0.2179,0.0000,0.3519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7331,2.4107,2.5507) mvmt=(-0.2178,0.0066,0.3519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7270,3.2150,2.5583) mvmt=(0.2179,0.0000,0.3519) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.773,8.285,96.558) lpos=(1.727,3.215,2.538) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7273,3.2107,2.5386) mvmt=(0.2182,-0.0043,0.3522) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7273,3.2107,2.5386) mvmt=(0.2182,-0.0043,0.3522) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.773,8.289,96.559) lpos=(1.727,3.211,2.539) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7273,3.2107,2.5386) mvmt=(0.2182,-0.0043,0.3522) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7273,3.2107,2.5386) mvmt=(0.2182,-0.0043,0.3522) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5854,0.3283,1.1583) mvmt=(0.0043,0.2182,0.3522) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3896,0.0883,1.0533) mvmt=(0.0043,0.2182,0.3522) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3896,-2.1230,-0.2967) mvmt=(0.0043,0.2182,0.3522) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8077,3.2107,1.0586) mvmt=(0.2182,-0.0043,0.3522) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7329,2.4150,2.5511) mvmt=(-0.2180,0.0109,0.3522) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7273,3.2107,2.5586) mvmt=(0.2182,-0.0043,0.3522) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.773,8.289,96.559) lpos=(1.727,3.211,2.539) lprev=(1.509,3.215,2.186) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.1864) mvmt=(0.0000,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5854,0.1101,0.8061) mvmt=(0.0043,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.1864) mvmt=(0.0000,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5854,0.1101,0.8061) mvmt=(0.0043,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5854,0.1101,0.8061) out=(-0.5854,0.1101,1.1389) delta=(0.0000,0.0000,0.3329) deltaMag=0.3329 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4452 dpPos=0.2446 dpMove=-0.4243 iDist=0.5548 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.5192) mvmt=(0.0000,-0.0043,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.5192) mvmt=(0.0000,-0.0043,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.5192) mvmt=(0.0000,-0.0043,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5854,0.1101,1.1389) mvmt=(0.0043,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3896,-0.1299,1.0339) mvmt=(0.0043,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3896,-2.3412,-0.3161) mvmt=(0.0043,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(-4.0259,3.2107,1.0392) mvmt=(0.0000,-0.0043,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.5392) mvmt=(0.0000,-0.0043,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.5192) mvmt=(0.0000,-0.0043,0.3329) collide=False insertType=1 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7291,3.2150,2.5404) mvmt=(0.2200,0.0000,0.3541) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7291,3.2150,2.5404) mvmt=(0.2200,0.0000,0.3541) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.771,8.285,96.560) lpos=(1.729,3.215,2.540) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7291,3.2150,2.5404) mvmt=(0.2200,0.0000,0.3541) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7291,3.2150,2.5404) mvmt=(0.2200,0.0000,0.3541) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5897,0.3301,1.1601) mvmt=(0.0000,0.2200,0.3541) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,0.0901,1.0551) mvmt=(0.0000,0.2200,0.3541) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,-2.1212,-0.2949) mvmt=(0.0000,0.2200,0.3541) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8059,3.2150,1.0604) mvmt=(0.2200,0.0000,0.3541) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7310,2.4108,2.5529) mvmt=(-0.2199,0.0066,0.3541) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7291,3.2150,2.5604) mvmt=(0.2200,0.0000,0.3541) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.771,8.285,96.560) lpos=(1.729,3.215,2.540) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7261,3.2107,2.5374) mvmt=(0.2170,-0.0043,0.3511) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7261,3.2107,2.5374) mvmt=(0.2170,-0.0043,0.3511) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.774,8.289,96.557) lpos=(1.726,3.211,2.537) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7261,3.2107,2.5374) mvmt=(0.2170,-0.0043,0.3511) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7261,3.2107,2.5374) mvmt=(0.2170,-0.0043,0.3511) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5854,0.3271,1.1571) mvmt=(0.0043,0.2170,0.3511) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3896,0.0871,1.0521) mvmt=(0.0043,0.2170,0.3511) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3896,-2.1242,-0.2979) mvmt=(0.0043,0.2170,0.3511) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8089,3.2107,1.0574) mvmt=(0.2170,-0.0043,0.3511) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7341,2.4150,2.5499) mvmt=(-0.2168,0.0109,0.3511) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7261,3.2107,2.5574) mvmt=(0.2170,-0.0043,0.3511) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.774,8.289,96.557) lpos=(1.726,3.211,2.537) lprev=(1.509,3.215,2.186) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.1864) mvmt=(0.0000,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5854,0.1101,0.8061) mvmt=(0.0043,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.1864) mvmt=(0.0000,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5854,0.1101,0.8061) mvmt=(0.0043,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5854,0.1101,0.8061) out=(-0.5854,0.1101,1.1389) delta=(0.0000,0.0000,0.3329) deltaMag=0.3329 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4452 dpPos=0.2446 dpMove=-0.4243 iDist=0.5548 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.5192) mvmt=(0.0000,-0.0043,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.5192) mvmt=(0.0000,-0.0043,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.5192) mvmt=(0.0000,-0.0043,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5854,0.1101,1.1389) mvmt=(0.0043,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3896,-0.1299,1.0339) mvmt=(0.0043,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3896,-2.3412,-0.3161) mvmt=(0.0043,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(-4.0259,3.2107,1.0392) mvmt=(0.0000,-0.0043,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.5392) mvmt=(0.0000,-0.0043,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.5192) mvmt=(0.0000,-0.0043,0.3329) collide=False insertType=1 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7341,3.2150,2.5453) mvmt=(0.2250,0.0000,0.3590) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7341,3.2150,2.5453) mvmt=(0.2250,0.0000,0.3590) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.766,8.285,96.565) lpos=(1.734,3.215,2.545) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7341,3.2150,2.5453) mvmt=(0.2250,0.0000,0.3590) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7341,3.2150,2.5453) mvmt=(0.2250,0.0000,0.3590) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5897,0.3351,1.1650) mvmt=(0.0000,0.2250,0.3590) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,0.0950,1.0601) mvmt=(0.0000,0.2250,0.3590) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,-2.1162,-0.2900) mvmt=(0.0000,0.2250,0.3590) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8009,3.2150,1.0653) mvmt=(0.2250,0.0000,0.3590) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7261,2.4109,2.5578) mvmt=(-0.2249,0.0068,0.3590) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7341,3.2150,2.5653) mvmt=(0.2250,0.0000,0.3590) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.766,8.285,96.565) lpos=(1.734,3.215,2.545) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7125,3.2110,2.5238) mvmt=(0.2034,-0.0040,0.3375) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7125,3.2110,2.5238) mvmt=(0.2034,-0.0040,0.3375) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.787,8.289,96.544) lpos=(1.713,3.211,2.524) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7125,3.2110,2.5238) mvmt=(0.2034,-0.0040,0.3375) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7125,3.2110,2.5238) mvmt=(0.2034,-0.0040,0.3375) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5857,0.3135,1.1435) mvmt=(0.0040,0.2034,0.3375) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3893,0.0735,1.0385) mvmt=(0.0040,0.2034,0.3375) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3893,-2.1377,-0.3115) mvmt=(0.0040,0.2034,0.3375) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8225,3.2110,1.0438) mvmt=(0.2034,-0.0040,0.3375) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7477,2.4143,2.5363) mvmt=(-0.2032,0.0102,0.3375) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7125,3.2110,2.5438) mvmt=(0.2034,-0.0040,0.3375) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.787,8.289,96.544) lpos=(1.713,3.211,2.524) lprev=(1.509,3.215,2.186) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2110,2.1864) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5857,0.1101,0.8061) mvmt=(0.0040,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2110,2.1864) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5857,0.1101,0.8061) mvmt=(0.0040,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5857,0.1101,0.8061) out=(-0.5857,0.1101,1.1389) delta=(0.0000,0.0000,0.3329) deltaMag=0.3329 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4452 dpPos=0.2446 dpMove=-0.4243 iDist=0.5548 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5091,3.2110,2.5192) mvmt=(0.0000,-0.0040,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2110,2.5192) mvmt=(0.0000,-0.0040,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.5091,3.2110,2.5192) mvmt=(0.0000,-0.0040,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5857,0.1101,1.1389) mvmt=(0.0040,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3893,-0.1299,1.0339) mvmt=(0.0040,-0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3893,-2.3412,-0.3161) mvmt=(0.0040,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(-4.0259,3.2110,1.0392) mvmt=(0.0000,-0.0040,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2110,2.5392) mvmt=(0.0000,-0.0040,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2110,2.5192) mvmt=(0.0000,-0.0040,0.3329) collide=False insertType=1 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7250,3.2150,2.5363) mvmt=(0.2159,0.0000,0.3499) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7250,3.2150,2.5363) mvmt=(0.2159,0.0000,0.3499) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.775,8.285,96.556) lpos=(1.725,3.215,2.536) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7250,3.2150,2.5363) mvmt=(0.2159,0.0000,0.3499) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7250,3.2150,2.5363) mvmt=(0.2159,0.0000,0.3499) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5897,0.3260,1.1560) mvmt=(0.0000,0.2159,0.3499) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,0.0860,1.0510) mvmt=(0.0000,0.2159,0.3499) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,-2.1253,-0.2990) mvmt=(0.0000,0.2159,0.3499) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8100,3.2150,1.0563) mvmt=(0.2159,0.0000,0.3499) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7351,2.4106,2.5488) mvmt=(-0.2158,0.0065,0.3499) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7250,3.2150,2.5563) mvmt=(0.2159,0.0000,0.3499) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.775,8.285,96.556) lpos=(1.725,3.215,2.536) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7188,3.2108,2.5301) mvmt=(0.2097,-0.0042,0.3437) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7188,3.2108,2.5301) mvmt=(0.2097,-0.0042,0.3437) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.781,8.289,96.550) lpos=(1.719,3.211,2.530) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7188,3.2108,2.5301) mvmt=(0.2097,-0.0042,0.3437) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7188,3.2108,2.5301) mvmt=(0.2097,-0.0042,0.3437) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5856,0.3197,1.1498) mvmt=(0.0042,0.2097,0.3437) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3894,0.0797,1.0448) mvmt=(0.0042,0.2097,0.3437) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3894,-2.1315,-0.3052) mvmt=(0.0042,0.2097,0.3437) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8163,3.2108,1.0501) mvmt=(0.2097,-0.0042,0.3437) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7415,2.4146,2.5425) mvmt=(-0.2094,0.0105,0.3437) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7187,3.2108,2.5501) mvmt=(0.2097,-0.0042,0.3437) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.781,8.289,96.550) lpos=(1.719,3.211,2.530) lprev=(1.509,3.215,2.186) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.1864) mvmt=(0.0000,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5856,0.1101,0.8061) mvmt=(0.0042,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.1864) mvmt=(0.0000,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5856,0.1101,0.8061) mvmt=(0.0042,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5856,0.1101,0.8061) out=(-0.5856,0.1101,1.1389) delta=(0.0000,0.0000,0.3329) deltaMag=0.3329 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4452 dpPos=0.2446 dpMove=-0.4243 iDist=0.5548 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.5192) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.5192) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.5192) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5856,0.1101,1.1389) mvmt=(0.0042,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3894,-0.1299,1.0339) mvmt=(0.0042,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3894,-2.3412,-0.3161) mvmt=(0.0042,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(-4.0259,3.2108,1.0392) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.5392) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.5192) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=1 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7257,3.2150,2.5370) mvmt=(0.2166,0.0000,0.3507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7257,3.2150,2.5370) mvmt=(0.2166,0.0000,0.3507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.774,8.285,96.557) lpos=(1.726,3.215,2.537) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7257,3.2150,2.5370) mvmt=(0.2166,0.0000,0.3507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7257,3.2150,2.5370) mvmt=(0.2166,0.0000,0.3507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5897,0.3267,1.1567) mvmt=(0.0000,0.2166,0.3507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,0.0867,1.0517) mvmt=(0.0000,0.2166,0.3507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,-2.1246,-0.2983) mvmt=(0.0000,0.2166,0.3507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8093,3.2150,1.0570) mvmt=(0.2166,0.0000,0.3507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7344,2.4107,2.5495) mvmt=(-0.2165,0.0065,0.3507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7257,3.2150,2.5570) mvmt=(0.2166,0.0000,0.3507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.774,8.285,96.557) lpos=(1.726,3.215,2.537) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7073,3.2111,2.5186) mvmt=(0.1982,-0.0039,0.3322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7073,3.2111,2.5186) mvmt=(0.1982,-0.0039,0.3322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.793,8.289,96.539) lpos=(1.707,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7073,3.2111,2.5186) mvmt=(0.1982,-0.0039,0.3322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7073,3.2111,2.5186) mvmt=(0.1982,-0.0039,0.3322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5858,0.3083,1.1383) mvmt=(0.0039,0.1982,0.3322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3892,0.0683,1.0333) mvmt=(0.0039,0.1982,0.3322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3892,-2.1430,-0.3167) mvmt=(0.0039,0.1982,0.3322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8277,3.2111,1.0386) mvmt=(0.1982,-0.0039,0.3322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7530,2.4140,2.5310) mvmt=(-0.1980,0.0099,0.3322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7073,3.2111,2.5386) mvmt=(0.1982,-0.0039,0.3322) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.793,8.289,96.539) lpos=(1.707,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2111,2.1864) mvmt=(0.0000,-0.0039,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5858,0.1101,0.8061) mvmt=(0.0039,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2111,2.1864) mvmt=(0.0000,-0.0039,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5858,0.1101,0.8061) mvmt=(0.0039,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5858,0.1101,0.8061) out=(-0.5858,0.1101,1.1389) delta=(0.0000,0.0000,0.3329) deltaMag=0.3329 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4452 dpPos=0.2446 dpMove=-0.4243 iDist=0.5548 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5091,3.2111,2.5192) mvmt=(0.0000,-0.0039,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2111,2.5192) mvmt=(0.0000,-0.0039,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.5091,3.2111,2.5192) mvmt=(0.0000,-0.0039,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5858,0.1101,1.1389) mvmt=(0.0039,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3892,-0.1299,1.0339) mvmt=(0.0039,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3892,-2.3412,-0.3161) mvmt=(0.0039,-0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(-4.0259,3.2111,1.0392) mvmt=(0.0000,-0.0039,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2111,2.5392) mvmt=(0.0000,-0.0039,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2111,2.5192) mvmt=(0.0000,-0.0039,0.3329) collide=False insertType=1 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7248,3.2150,2.5361) mvmt=(0.2157,0.0000,0.3498) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7248,3.2150,2.5361) mvmt=(0.2157,0.0000,0.3498) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.775,8.285,96.556) lpos=(1.725,3.215,2.536) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7248,3.2150,2.5361) mvmt=(0.2157,0.0000,0.3498) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7248,3.2150,2.5361) mvmt=(0.2157,0.0000,0.3498) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5897,0.3258,1.1558) mvmt=(0.0000,0.2157,0.3498) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,0.0858,1.0508) mvmt=(0.0000,0.2157,0.3498) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,-2.1255,-0.2992) mvmt=(0.0000,0.2157,0.3498) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8102,3.2150,1.0561) mvmt=(0.2157,0.0000,0.3498) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7353,2.4106,2.5486) mvmt=(-0.2156,0.0065,0.3498) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7248,3.2150,2.5561) mvmt=(0.2157,0.0000,0.3498) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.775,8.285,96.556) lpos=(1.725,3.215,2.536) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7213,3.2108,2.5325) mvmt=(0.2122,-0.0042,0.3462) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7213,3.2108,2.5325) mvmt=(0.2122,-0.0042,0.3462) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.779,8.289,96.553) lpos=(1.721,3.211,2.533) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7213,3.2108,2.5325) mvmt=(0.2122,-0.0042,0.3462) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7213,3.2108,2.5325) mvmt=(0.2122,-0.0042,0.3462) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5855,0.3223,1.1522) mvmt=(0.0042,0.2122,0.3462) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3895,0.0822,1.0472) mvmt=(0.0042,0.2122,0.3462) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3895,-2.1290,-0.3028) mvmt=(0.0042,0.2122,0.3462) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8138,3.2108,1.0525) mvmt=(0.2122,-0.0042,0.3462) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7390,2.4147,2.5450) mvmt=(-0.2119,0.0106,0.3462) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7213,3.2108,2.5525) mvmt=(0.2122,-0.0042,0.3462) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.779,8.289,96.553) lpos=(1.721,3.211,2.533) lprev=(1.509,3.215,2.186) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.1864) mvmt=(0.0000,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5855,0.1101,0.8061) mvmt=(0.0042,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.1864) mvmt=(0.0000,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5855,0.1101,0.8061) mvmt=(0.0042,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5855,0.1101,0.8061) out=(-0.5855,0.1101,1.1389) delta=(0.0000,0.0000,0.3329) deltaMag=0.3329 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4452 dpPos=0.2446 dpMove=-0.4243 iDist=0.5548 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.5192) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.5192) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.5192) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5855,0.1101,1.1389) mvmt=(0.0042,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3895,-0.1299,1.0339) mvmt=(0.0042,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3895,-2.3412,-0.3161) mvmt=(0.0042,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(-4.0259,3.2108,1.0392) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.5392) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.5192) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=1 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7097,3.2150,2.5210) mvmt=(0.2006,0.0000,0.3346) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7097,3.2150,2.5210) mvmt=(0.2006,0.0000,0.3346) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.790,8.285,96.541) lpos=(1.710,3.215,2.521) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7097,3.2150,2.5210) mvmt=(0.2006,0.0000,0.3346) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7097,3.2150,2.5210) mvmt=(0.2006,0.0000,0.3346) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5897,0.3107,1.1406) mvmt=(0.0000,0.2006,0.3346) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,0.0706,1.0357) mvmt=(0.0000,0.2006,0.3346) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,-2.1406,-0.3144) mvmt=(0.0000,0.2006,0.3346) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8253,3.2150,1.0409) mvmt=(0.2006,0.0000,0.3346) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7504,2.4102,2.5334) mvmt=(-0.2005,0.0061,0.3346) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7097,3.2150,2.5409) mvmt=(0.2006,0.0000,0.3346) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.790,8.285,96.541) lpos=(1.710,3.215,2.521) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7084,3.2110,2.5197) mvmt=(0.1993,-0.0040,0.3334) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7084,3.2110,2.5197) mvmt=(0.1993,-0.0040,0.3334) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.792,8.289,96.540) lpos=(1.708,3.211,2.520) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7084,3.2110,2.5197) mvmt=(0.1993,-0.0040,0.3334) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7084,3.2110,2.5197) mvmt=(0.1993,-0.0040,0.3334) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5858,0.3094,1.1394) mvmt=(0.0040,0.1993,0.3334) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3892,0.0694,1.0344) mvmt=(0.0040,0.1993,0.3334) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3892,-2.1418,-0.3156) mvmt=(0.0040,0.1993,0.3334) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8266,3.2110,1.0397) mvmt=(0.1993,-0.0040,0.3334) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7518,2.4141,2.5322) mvmt=(-0.1991,0.0100,0.3334) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7084,3.2110,2.5397) mvmt=(0.1993,-0.0040,0.3334) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.792,8.289,96.540) lpos=(1.708,3.211,2.520) lprev=(1.509,3.215,2.186) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2110,2.1864) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5858,0.1101,0.8061) mvmt=(0.0040,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2110,2.1864) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5858,0.1101,0.8061) mvmt=(0.0040,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5858,0.1101,0.8061) out=(-0.5858,0.1101,1.1389) delta=(0.0000,0.0000,0.3329) deltaMag=0.3329 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4452 dpPos=0.2446 dpMove=-0.4243 iDist=0.5548 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5091,3.2110,2.5192) mvmt=(0.0000,-0.0040,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2110,2.5192) mvmt=(0.0000,-0.0040,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.5091,3.2110,2.5192) mvmt=(0.0000,-0.0040,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5858,0.1101,1.1389) mvmt=(0.0040,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3892,-0.1299,1.0339) mvmt=(0.0040,-0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3892,-2.3412,-0.3161) mvmt=(0.0040,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(-4.0259,3.2110,1.0392) mvmt=(0.0000,-0.0040,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2110,2.5392) mvmt=(0.0000,-0.0040,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2110,2.5192) mvmt=(0.0000,-0.0040,0.3329) collide=False insertType=1 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7220,3.2150,2.5333) mvmt=(0.2129,0.0000,0.3469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7220,3.2150,2.5333) mvmt=(0.2129,0.0000,0.3469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.778,8.285,96.553) lpos=(1.722,3.215,2.533) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7220,3.2150,2.5333) mvmt=(0.2129,0.0000,0.3469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7220,3.2150,2.5333) mvmt=(0.2129,0.0000,0.3469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5897,0.3230,1.1530) mvmt=(0.0000,0.2129,0.3469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,0.0830,1.0480) mvmt=(0.0000,0.2129,0.3469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,-2.1283,-0.3020) mvmt=(0.0000,0.2129,0.3469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8130,3.2150,1.0533) mvmt=(0.2129,0.0000,0.3469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7381,2.4105,2.5457) mvmt=(-0.2128,0.0064,0.3469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7220,3.2150,2.5533) mvmt=(0.2129,0.0000,0.3469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.778,8.285,96.553) lpos=(1.722,3.215,2.533) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7229,3.2107,2.5342) mvmt=(0.2139,-0.0042,0.3479) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7229,3.2107,2.5342) mvmt=(0.2139,-0.0042,0.3479) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.777,8.289,96.554) lpos=(1.723,3.211,2.534) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7229,3.2107,2.5342) mvmt=(0.2139,-0.0042,0.3479) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7229,3.2107,2.5342) mvmt=(0.2139,-0.0042,0.3479) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5855,0.3239,1.1539) mvmt=(0.0042,0.2139,0.3479) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3895,0.0839,1.0489) mvmt=(0.0042,0.2139,0.3479) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3895,-2.1273,-0.3011) mvmt=(0.0042,0.2139,0.3479) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8121,3.2107,1.0542) mvmt=(0.2139,-0.0042,0.3479) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7373,2.4148,2.5467) mvmt=(-0.2136,0.0107,0.3479) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7229,3.2107,2.5542) mvmt=(0.2139,-0.0042,0.3479) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.777,8.289,96.554) lpos=(1.723,3.211,2.534) lprev=(1.509,3.215,2.186) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.1864) mvmt=(0.0000,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5855,0.1101,0.8061) mvmt=(0.0042,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.1864) mvmt=(0.0000,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5855,0.1101,0.8061) mvmt=(0.0042,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5855,0.1101,0.8061) out=(-0.5855,0.1101,1.1389) delta=(0.0000,0.0000,0.3329) deltaMag=0.3329 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4452 dpPos=0.2446 dpMove=-0.4243 iDist=0.5548 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.5192) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.5192) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.5192) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5855,0.1101,1.1389) mvmt=(0.0042,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3895,-0.1299,1.0339) mvmt=(0.0042,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3895,-2.3412,-0.3161) mvmt=(0.0042,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(-4.0259,3.2107,1.0392) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.5392) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.5192) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=1 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7227,3.2150,2.5340) mvmt=(0.2136,0.0000,0.3477) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7227,3.2150,2.5340) mvmt=(0.2136,0.0000,0.3477) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.777,8.285,96.554) lpos=(1.723,3.215,2.534) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7227,3.2150,2.5340) mvmt=(0.2136,0.0000,0.3477) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7227,3.2150,2.5340) mvmt=(0.2136,0.0000,0.3477) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5897,0.3237,1.1537) mvmt=(0.0000,0.2136,0.3477) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,0.0837,1.0487) mvmt=(0.0000,0.2136,0.3477) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,-2.1275,-0.3013) mvmt=(0.0000,0.2136,0.3477) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8123,3.2150,1.0540) mvmt=(0.2136,0.0000,0.3477) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7374,2.4106,2.5465) mvmt=(-0.2135,0.0065,0.3477) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7227,3.2150,2.5540) mvmt=(0.2136,0.0000,0.3477) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.777,8.285,96.554) lpos=(1.723,3.215,2.534) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7204,3.2108,2.5317) mvmt=(0.2113,-0.0042,0.3454) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7204,3.2108,2.5317) mvmt=(0.2113,-0.0042,0.3454) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.780,8.289,96.552) lpos=(1.720,3.211,2.532) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7204,3.2108,2.5317) mvmt=(0.2113,-0.0042,0.3454) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7204,3.2108,2.5317) mvmt=(0.2113,-0.0042,0.3454) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5855,0.3214,1.1514) mvmt=(0.0042,0.2113,0.3454) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3895,0.0814,1.0464) mvmt=(0.0042,0.2113,0.3454) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3895,-2.1298,-0.3036) mvmt=(0.0042,0.2113,0.3454) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8146,3.2108,1.0517) mvmt=(0.2113,-0.0042,0.3454) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7398,2.4147,2.5442) mvmt=(-0.2111,0.0106,0.3454) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7204,3.2108,2.5517) mvmt=(0.2113,-0.0042,0.3454) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.780,8.289,96.552) lpos=(1.720,3.211,2.532) lprev=(1.509,3.215,2.186) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.1864) mvmt=(0.0000,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5855,0.1101,0.8061) mvmt=(0.0042,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.1864) mvmt=(0.0000,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5855,0.1101,0.8061) mvmt=(0.0042,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5855,0.1101,0.8061) out=(-0.5855,0.1101,1.1389) delta=(0.0000,0.0000,0.3329) deltaMag=0.3329 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4452 dpPos=0.2446 dpMove=-0.4243 iDist=0.5548 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.5192) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.5192) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.5192) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5855,0.1101,1.1389) mvmt=(0.0042,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3895,-0.1299,1.0339) mvmt=(0.0042,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3895,-2.3412,-0.3161) mvmt=(0.0042,-0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(-4.0259,3.2108,1.0392) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.5392) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2108,2.5192) mvmt=(0.0000,-0.0042,0.3329) collide=False insertType=1 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7190,3.2150,2.5303) mvmt=(0.2099,0.0000,0.3440) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7190,3.2150,2.5303) mvmt=(0.2099,0.0000,0.3440) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.781,8.285,96.550) lpos=(1.719,3.215,2.530) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7190,3.2150,2.5303) mvmt=(0.2099,0.0000,0.3440) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7190,3.2150,2.5303) mvmt=(0.2099,0.0000,0.3440) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5897,0.3200,1.1500) mvmt=(0.0000,0.2099,0.3440) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,0.0800,1.0450) mvmt=(0.0000,0.2099,0.3440) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,-2.1312,-0.3050) mvmt=(0.0000,0.2099,0.3440) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8160,3.2150,1.0503) mvmt=(0.2099,0.0000,0.3440) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7411,2.4105,2.5428) mvmt=(-0.2098,0.0063,0.3440) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7190,3.2150,2.5503) mvmt=(0.2099,0.0000,0.3440) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.781,8.285,96.550) lpos=(1.719,3.215,2.530) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7300,3.2106,2.5413) mvmt=(0.2209,-0.0044,0.3550) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7300,3.2106,2.5413) mvmt=(0.2209,-0.0044,0.3550) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.770,8.289,96.561) lpos=(1.730,3.211,2.541) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7300,3.2106,2.5413) mvmt=(0.2209,-0.0044,0.3550) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7300,3.2106,2.5413) mvmt=(0.2209,-0.0044,0.3550) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5854,0.3310,1.1610) mvmt=(0.0044,0.2209,0.3550) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3896,0.0910,1.0560) mvmt=(0.0044,0.2209,0.3550) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3896,-2.1202,-0.2940) mvmt=(0.0044,0.2209,0.3550) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8050,3.2106,1.0613) mvmt=(0.2209,-0.0044,0.3550) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7302,2.4152,2.5538) mvmt=(-0.2207,0.0111,0.3550) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7300,3.2106,2.5613) mvmt=(0.2209,-0.0044,0.3550) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.770,8.289,96.561) lpos=(1.730,3.211,2.541) lprev=(1.509,3.215,2.186) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2106,2.1864) mvmt=(0.0000,-0.0044,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5854,0.1101,0.8061) mvmt=(0.0044,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2106,2.1864) mvmt=(0.0000,-0.0044,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5854,0.1101,0.8061) mvmt=(0.0044,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5854,0.1101,0.8061) out=(-0.5854,0.1101,1.1389) delta=(0.0000,0.0000,0.3329) deltaMag=0.3329 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4452 dpPos=0.2446 dpMove=-0.4243 iDist=0.5548 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5091,3.2106,2.5192) mvmt=(0.0000,-0.0044,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2106,2.5192) mvmt=(0.0000,-0.0044,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.5091,3.2106,2.5192) mvmt=(0.0000,-0.0044,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5854,0.1101,1.1389) mvmt=(0.0044,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3896,-0.1299,1.0339) mvmt=(0.0044,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3896,-2.3412,-0.3161) mvmt=(0.0044,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(-4.0259,3.2106,1.0392) mvmt=(0.0000,-0.0044,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2106,2.5392) mvmt=(0.0000,-0.0044,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2106,2.5192) mvmt=(0.0000,-0.0044,0.3329) collide=False insertType=1 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7099,3.2150,2.5212) mvmt=(0.2008,0.0000,0.3348) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7099,3.2150,2.5212) mvmt=(0.2008,0.0000,0.3348) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.790,8.285,96.541) lpos=(1.710,3.215,2.521) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7099,3.2150,2.5212) mvmt=(0.2008,0.0000,0.3348) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7099,3.2150,2.5212) mvmt=(0.2008,0.0000,0.3348) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5897,0.3109,1.1409) mvmt=(0.0000,0.2008,0.3348) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,0.0708,1.0359) mvmt=(0.0000,0.2008,0.3348) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,-2.1404,-0.3141) mvmt=(0.0000,0.2008,0.3348) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8252,3.2150,1.0412) mvmt=(0.2008,0.0000,0.3348) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7502,2.4102,2.5336) mvmt=(-0.2007,0.0061,0.3348) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7099,3.2150,2.5412) mvmt=(0.2008,0.0000,0.3348) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.790,8.285,96.541) lpos=(1.710,3.215,2.521) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7126,3.2109,2.5239) mvmt=(0.2035,-0.0040,0.3376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7126,3.2109,2.5239) mvmt=(0.2035,-0.0040,0.3376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.787,8.289,96.544) lpos=(1.713,3.211,2.524) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7126,3.2109,2.5239) mvmt=(0.2035,-0.0040,0.3376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7126,3.2109,2.5239) mvmt=(0.2035,-0.0040,0.3376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5857,0.3136,1.1436) mvmt=(0.0040,0.2035,0.3376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3893,0.0736,1.0386) mvmt=(0.0040,0.2035,0.3376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3893,-2.1376,-0.3114) mvmt=(0.0040,0.2035,0.3376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8224,3.2109,1.0439) mvmt=(0.2035,-0.0040,0.3376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7476,2.4143,2.5364) mvmt=(-0.2033,0.0102,0.3376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7126,3.2109,2.5439) mvmt=(0.2035,-0.0040,0.3376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.787,8.289,96.544) lpos=(1.713,3.211,2.524) lprev=(1.509,3.215,2.186) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2109,2.1864) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5857,0.1101,0.8061) mvmt=(0.0040,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2109,2.1864) mvmt=(0.0000,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5857,0.1101,0.8061) mvmt=(0.0040,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5857,0.1101,0.8061) out=(-0.5857,0.1101,1.1389) delta=(0.0000,0.0000,0.3329) deltaMag=0.3329 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4452 dpPos=0.2446 dpMove=-0.4243 iDist=0.5548 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5091,3.2109,2.5192) mvmt=(0.0000,-0.0040,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2109,2.5192) mvmt=(0.0000,-0.0040,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.5091,3.2109,2.5192) mvmt=(0.0000,-0.0040,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5857,0.1101,1.1389) mvmt=(0.0040,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3893,-0.1299,1.0339) mvmt=(0.0040,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3893,-2.3412,-0.3161) mvmt=(0.0040,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(-4.0259,3.2109,1.0392) mvmt=(0.0000,-0.0040,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2109,2.5392) mvmt=(0.0000,-0.0040,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2109,2.5192) mvmt=(0.0000,-0.0040,0.3329) collide=False insertType=1 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7122,3.2150,2.5235) mvmt=(0.2031,0.0000,0.3372) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7122,3.2150,2.5235) mvmt=(0.2031,0.0000,0.3372) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.788,8.285,96.544) lpos=(1.712,3.215,2.524) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7122,3.2150,2.5235) mvmt=(0.2031,0.0000,0.3372) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7122,3.2150,2.5235) mvmt=(0.2031,0.0000,0.3372) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5897,0.3132,1.1432) mvmt=(0.0000,0.2031,0.3372) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,0.0732,1.0382) mvmt=(0.0000,0.2031,0.3372) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3853,-2.1380,-0.3118) mvmt=(0.0000,0.2031,0.3372) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8228,3.2150,1.0435) mvmt=(0.2031,0.0000,0.3372) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7479,2.4102,2.5360) mvmt=(-0.2030,0.0061,0.3372) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7122,3.2150,2.5435) mvmt=(0.2031,0.0000,0.3372) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.788,8.285,96.544) lpos=(1.712,3.215,2.524) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7265,3.2107,2.5378) mvmt=(0.2174,-0.0043,0.3515) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7265,3.2107,2.5378) mvmt=(0.2174,-0.0043,0.3515) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.773,8.289,96.558) lpos=(1.727,3.211,2.538) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7265,3.2107,2.5378) mvmt=(0.2174,-0.0043,0.3515) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7265,3.2107,2.5378) mvmt=(0.2174,-0.0043,0.3515) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5854,0.3275,1.1575) mvmt=(0.0043,0.2174,0.3515) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3896,0.0875,1.0525) mvmt=(0.0043,0.2174,0.3515) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3896,-2.1238,-0.2975) mvmt=(0.0043,0.2174,0.3515) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8085,3.2107,1.0578) mvmt=(0.2174,-0.0043,0.3515) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7337,2.4150,2.5503) mvmt=(-0.2172,0.0109,0.3515) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7265,3.2107,2.5578) mvmt=(0.2174,-0.0043,0.3515) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.773,8.289,96.558) lpos=(1.727,3.211,2.538) lprev=(1.509,3.215,2.186) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.1864) mvmt=(0.0000,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5854,0.1101,0.8061) mvmt=(0.0043,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.1864) mvmt=(0.0000,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.206) lpos=(1.509,3.211,2.186) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5854,0.1101,0.8061) mvmt=(0.0043,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5854,0.1101,0.8061) out=(-0.5854,0.1101,1.1389) delta=(0.0000,0.0000,0.3329) deltaMag=0.3329 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4452 dpPos=0.2446 dpMove=-0.4243 iDist=0.5548 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.5192) mvmt=(0.0000,-0.0043,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.5192) mvmt=(0.0000,-0.0043,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.5192) mvmt=(0.0000,-0.0043,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5854,0.1101,1.1389) mvmt=(0.0043,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3896,-0.1299,1.0339) mvmt=(0.0043,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(0.3896,-2.3412,-0.3161) mvmt=(0.0043,0.0000,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(-4.0259,3.2107,1.0392) mvmt=(0.0000,-0.0043,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.5392) mvmt=(0.0000,-0.0043,0.3329) collide=False insertType=0 objState=0x303 winterp=0.4452 return=-1 +[push-back-disp] site=dispatch center=(1.5091,3.2107,2.5192) mvmt=(0.0000,-0.0043,0.3329) collide=False insertType=1 objState=0x303 winterp=0.4452 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.991,8.289,96.539) lpos=(1.509,3.211,2.519) lprev=(1.509,3.215,2.186) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementStrafeLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.707,0.000,0.707) D=-158.994 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.5098,3.3500,2.3211) mvmt=(0.0007,0.1350,0.1347) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.990,8.150,96.341) lpos=(1.510,3.350,2.321) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5098,3.3500,2.3211) mvmt=(0.0007,0.1350,0.1347) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7248,0.1108,0.9408) mvmt=(-0.1350,0.0007,0.1347) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2502,-0.1292,0.8358) mvmt=(-0.1350,0.0007,0.1347) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2502,-2.3405,-0.5142) mvmt=(-0.1350,0.0007,0.1347) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.0252,3.3500,0.8411) mvmt=(0.0007,0.1350,0.1347) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5098,3.3500,2.3411) mvmt=(0.0007,0.1350,0.1347) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5098,3.3500,1.5711) mvmt=(0.0007,0.1350,-0.6153) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.990,8.150,95.591) lpos=(1.510,3.350,1.571) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7248,0.1108,0.1908) mvmt=(-0.1350,0.0007,-0.6153) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2502,-0.1292,0.0858) mvmt=(-0.1350,0.0007,-0.6153) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2502,-0.1292,0.0858) out=(0.2502,-0.1292,0.7018) delta=(0.0000,0.0000,0.6160) deltaMag=0.6160 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.1787 dpPos=0.0519 dpMove=-0.5213 iDist=0.8213 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5098,3.3500,2.1870) mvmt=(0.0007,0.1350,0.0007) collide=False insertType=0 objState=0x303 winterp=0.1787 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.990,8.150,96.207) lpos=(1.510,3.350,2.187) lprev=(1.509,3.215,2.186) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7248,0.1108,0.8067) mvmt=(-0.1350,0.0007,0.0007) collide=False insertType=0 objState=0x303 winterp=0.1787 return=-1 +[push-back-disp] site=dispatch center=(0.2502,-0.1292,0.7018) mvmt=(-0.1350,0.0007,0.0007) collide=False insertType=0 objState=0x303 winterp=0.1787 return=-1 +[push-back-disp] site=dispatch center=(0.2502,-2.3405,-0.6483) mvmt=(-0.1350,0.0007,0.0007) collide=False insertType=0 objState=0x303 winterp=0.1787 return=-1 +[push-back-disp] site=dispatch center=(-4.0252,3.3500,0.7070) mvmt=(0.0007,0.1350,0.0007) collide=False insertType=0 objState=0x303 winterp=0.1787 return=-1 +[push-back-disp] site=dispatch center=(1.5098,3.3500,2.2070) mvmt=(0.0007,0.1350,0.0007) collide=False insertType=0 objState=0x303 winterp=0.1787 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.5104,3.4737,2.1877) mvmt=(0.0006,0.1237,0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.990,8.026,96.208) lpos=(1.510,3.474,2.188) lprev=(1.510,3.350,2.187) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8485,0.1114,0.8074) mvmt=(-0.1237,0.0006,0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1265,-0.1286,0.7024) mvmt=(-0.1237,0.0006,0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1265,-2.3399,-0.6476) mvmt=(-0.1237,0.0006,0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.0246,3.4737,0.7077) mvmt=(0.0006,0.1237,0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5104,3.4737,2.2077) mvmt=(0.0006,0.1237,0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5104,3.4737,1.4377) mvmt=(0.0006,0.1237,-0.7494) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.990,8.026,95.458) lpos=(1.510,3.474,1.438) lprev=(1.510,3.350,2.187) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8485,0.1114,0.0574) mvmt=(-0.1237,0.0006,-0.7494) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1265,-0.1286,-0.0476) mvmt=(-0.1237,0.0006,-0.7494) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1265,-0.1286,-0.0476) out=(0.1265,-0.1286,0.7024) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5104,3.4737,2.1877) mvmt=(0.0006,0.1237,0.0006) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.990,8.026,96.208) lpos=(1.510,3.474,2.188) lprev=(1.510,3.350,2.187) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8485,0.1114,0.8074) mvmt=(-0.1237,0.0006,0.0006) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1265,-0.1286,0.7024) mvmt=(-0.1237,0.0006,0.0006) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1265,-2.3399,-0.6476) mvmt=(-0.1237,0.0006,0.0006) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.0246,3.4737,0.7077) mvmt=(0.0006,0.1237,0.0006) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5104,3.4737,2.2077) mvmt=(0.0006,0.1237,0.0006) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.5110,3.6058,2.1883) mvmt=(0.0006,0.1321,0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.989,7.894,96.208) lpos=(1.511,3.606,2.188) lprev=(1.510,3.474,2.188) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9806,0.1120,0.8080) mvmt=(-0.1321,0.0006,0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0056,-0.1280,0.7030) mvmt=(-0.1321,0.0006,0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0056,-2.3393,-0.6470) mvmt=(-0.1321,0.0006,0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.0240,3.6058,0.7083) mvmt=(0.0006,0.1321,0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5110,3.6058,2.2083) mvmt=(0.0006,0.1321,0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5110,3.6058,1.4383) mvmt=(0.0006,0.1321,-0.7493) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.989,7.894,95.458) lpos=(1.511,3.606,1.438) lprev=(1.510,3.474,2.188) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9806,0.1120,0.0580) mvmt=(-0.1321,0.0006,-0.7493) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0056,-0.1280,-0.0470) mvmt=(-0.1321,0.0006,-0.7493) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0056,-0.1280,-0.0470) out=(-0.0056,-0.1280,0.7030) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5110,3.6058,2.1883) mvmt=(0.0006,0.1321,0.0007) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.989,7.894,96.208) lpos=(1.511,3.606,2.188) lprev=(1.510,3.474,2.188) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9806,0.1120,0.8080) mvmt=(-0.1321,0.0006,0.0007) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0056,-0.1280,0.7030) mvmt=(-0.1321,0.0006,0.0007) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0056,-2.3393,-0.6470) mvmt=(-0.1321,0.0006,0.0007) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.0240,3.6058,0.7083) mvmt=(0.0006,0.1321,0.0007) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5110,3.6058,2.2083) mvmt=(0.0006,0.1321,0.0007) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.5116,3.7309,2.1889) mvmt=(0.0006,0.1251,0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.988,7.769,96.209) lpos=(1.512,3.731,2.189) lprev=(1.511,3.606,2.188) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1057,0.1126,0.8086) mvmt=(-0.1251,0.0006,0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1307,-0.1274,0.7037) mvmt=(-0.1251,0.0006,0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1306,-2.3387,-0.6464) mvmt=(-0.1251,0.0006,0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9328,1.8885,2.2014) mvmt=(-0.0044,-0.1250,0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5116,3.7309,2.2089) mvmt=(0.0006,0.1251,0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5116,3.7309,1.4389) mvmt=(0.0006,0.1251,-0.7494) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.988,7.769,95.459) lpos=(1.512,3.731,1.439) lprev=(1.511,3.606,2.188) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1057,0.1126,0.0586) mvmt=(-0.1251,0.0006,-0.7494) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1307,-0.1274,-0.0463) mvmt=(-0.1251,0.0006,-0.7494) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1307,-0.1274,-0.0463) out=(-0.1307,-0.1274,0.7036) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5116,3.7309,2.1889) mvmt=(0.0006,0.1251,0.0006) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.988,7.769,96.209) lpos=(1.512,3.731,2.189) lprev=(1.511,3.606,2.188) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1057,0.1126,0.8086) mvmt=(-0.1251,0.0006,0.0006) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1307,-0.1274,0.7037) mvmt=(-0.1251,0.0006,0.0006) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1306,-2.3387,-0.6464) mvmt=(-0.1251,0.0006,0.0006) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9328,1.8885,2.2014) mvmt=(-0.0044,-0.1250,0.0006) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5116,3.7309,2.2089) mvmt=(0.0006,0.1251,0.0006) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.5123,3.8679,2.1896) mvmt=(0.0007,0.1370,0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.988,7.632,96.210) lpos=(1.512,3.868,2.190) lprev=(1.512,3.731,2.189) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2427,0.1133,0.8093) mvmt=(-0.1370,0.0007,0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-0.1268,0.7043) mvmt=(-0.1370,0.0007,0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-2.3380,-0.6457) mvmt=(-0.1370,0.0007,0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9280,1.7515,2.2021) mvmt=(-0.0048,-0.1370,0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5123,3.8679,2.2096) mvmt=(0.0007,0.1370,0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5123,3.8679,1.4396) mvmt=(0.0007,0.1370,-0.7493) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.988,7.632,95.460) lpos=(1.512,3.868,1.440) lprev=(1.512,3.731,2.189) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2427,0.1133,0.0593) mvmt=(-0.1370,0.0007,-0.7493) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-0.1268,-0.0457) mvmt=(-0.1370,0.0007,-0.7493) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2677,-0.1268,-0.0457) out=(-0.2677,-0.1268,0.7043) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5123,3.8679,2.1896) mvmt=(0.0007,0.1370,0.0007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.988,7.632,96.210) lpos=(1.512,3.868,2.190) lprev=(1.512,3.731,2.189) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2427,0.1133,0.8093) mvmt=(-0.1370,0.0007,0.0007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-0.1268,0.7043) mvmt=(-0.1370,0.0007,0.0007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-2.3380,-0.6457) mvmt=(-0.1370,0.0007,0.0007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9280,1.7515,2.2021) mvmt=(-0.0048,-0.1370,0.0007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5123,3.8679,2.2096) mvmt=(0.0007,0.1370,0.0007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.5129,3.9966,2.1903) mvmt=(0.0006,0.1286,0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5129,3.9966,2.1903) mvmt=(0.0006,0.1286,0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.987,7.503,96.210) lpos=(1.513,3.997,2.190) lprev=(1.512,3.868,2.190) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3713,0.1139,0.8100) mvmt=(-0.1286,0.0006,0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3963,-0.1261,0.7050) mvmt=(-0.1286,0.0006,0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3963,-2.3374,-0.6450) mvmt=(-0.1286,0.0006,0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9235,1.6230,2.2027) mvmt=(-0.0045,-0.1286,0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5129,3.9966,2.2103) mvmt=(0.0006,0.1286,0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.987,7.503,96.210) lpos=(1.513,3.997,2.190) lprev=(1.512,3.868,2.190) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(1.5129,3.8679,2.1903) mvmt=(0.0006,0.0000,0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.987,7.632,96.210) lpos=(1.513,3.868,2.190) lprev=(1.512,3.868,2.190) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2427,0.1139,0.8100) mvmt=(0.0000,0.0006,0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-0.1261,0.7050) mvmt=(0.0000,0.0006,0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-2.3374,-0.6450) mvmt=(0.0000,0.0006,0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9274,1.7516,2.2027) mvmt=(-0.0006,0.0000,0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5129,3.8679,2.2103) mvmt=(0.0006,0.0000,0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5129,3.8679,1.4403) mvmt=(0.0006,0.0000,-0.7494) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.987,7.632,95.460) lpos=(1.513,3.868,1.440) lprev=(1.512,3.868,2.190) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2427,0.1139,0.0600) mvmt=(0.0000,0.0006,-0.7494) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-0.1261,-0.0450) mvmt=(0.0000,0.0006,-0.7494) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2677,-0.1261,-0.0450) out=(-0.2677,-0.1261,0.7050) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5129,3.8679,2.1903) mvmt=(0.0006,0.0000,0.0006) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.987,7.632,96.210) lpos=(1.513,3.868,2.190) lprev=(1.512,3.868,2.190) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2427,0.1139,0.8100) mvmt=(0.0000,0.0006,0.0006) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-0.1261,0.7050) mvmt=(0.0000,0.0006,0.0006) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-2.3374,-0.6450) mvmt=(0.0000,0.0006,0.0006) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9274,1.7516,2.2027) mvmt=(-0.0006,0.0000,0.0006) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5129,3.8679,2.2103) mvmt=(0.0006,0.0000,0.0006) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementBackup Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.4075,3.8679,2.0812) mvmt=(-0.1054,0.0000,-0.1091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.093,7.632,96.101) lpos=(1.407,3.868,2.081) lprev=(1.513,3.868,2.190) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2427,0.0085,0.7009) mvmt=(-0.0000,-0.1054,-0.1091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-0.2316,0.5959) mvmt=(-0.0000,-0.1054,-0.1091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-2.4428,-0.7541) mvmt=(0.0000,-0.1054,-0.1091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0328,1.7484,2.0937) mvmt=(0.1054,-0.0032,-0.1091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4075,3.8679,2.1012) mvmt=(-0.1054,0.0000,-0.1091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4075,3.8679,1.3312) mvmt=(-0.1054,0.0000,-0.8591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.093,7.632,95.351) lpos=(1.407,3.868,1.331) lprev=(1.513,3.868,2.190) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2427,0.0085,-0.0491) mvmt=(-0.0000,-0.1054,-0.8591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-0.2316,-0.1541) mvmt=(-0.0000,-0.1054,-0.8591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2677,-0.2316,-0.1541) out=(-0.2677,-0.2316,0.5959) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.4075,3.8679,2.0812) mvmt=(-0.1054,0.0000,-0.1091) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.093,7.632,96.101) lpos=(1.407,3.868,2.081) lprev=(1.513,3.868,2.190) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2427,0.0085,0.7009) mvmt=(-0.0000,-0.1054,-0.1091) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-0.2316,0.5959) mvmt=(-0.0000,-0.1054,-0.1091) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-2.4428,-0.7541) mvmt=(0.0000,-0.1054,-0.1091) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0328,1.7484,2.0937) mvmt=(0.1054,-0.0032,-0.1091) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4075,3.8679,2.1012) mvmt=(-0.1054,0.0000,-0.1091) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.3037,4.0033,1.9739) mvmt=(-0.1038,0.1354,-0.1074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3037,4.0033,1.9739) mvmt=(-0.1038,0.1354,-0.1074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.196,7.497,95.994) lpos=(1.304,4.003,1.974) lprev=(1.407,3.868,2.081) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3781,-0.0953,0.5936) mvmt=(-0.1354,-0.1038,-0.1074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4031,-0.3353,0.4886) mvmt=(-0.1354,-0.1038,-0.1074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4031,-2.5466,-0.8614) mvmt=(-0.1354,-0.1038,-0.1074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1324,1.6099,1.9863) mvmt=(0.0996,-0.1384,-0.1074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3037,4.0033,1.9939) mvmt=(-0.1038,0.1354,-0.1074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.196,7.497,95.994) lpos=(1.304,4.003,1.974) lprev=(1.407,3.868,2.081) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(1.3037,3.8679,1.9739) mvmt=(-0.1038,0.0000,-0.1074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.196,7.632,95.994) lpos=(1.304,3.868,1.974) lprev=(1.407,3.868,2.081) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2427,-0.0953,0.5936) mvmt=(0.0000,-0.1038,-0.1074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-0.3353,0.4886) mvmt=(-0.0000,-0.1038,-0.1074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-2.5466,-0.8614) mvmt=(-0.0000,-0.1038,-0.1074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1365,1.7452,1.9863) mvmt=(0.1037,-0.0031,-0.1074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3037,3.8679,1.9939) mvmt=(-0.1038,0.0000,-0.1074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3037,3.8679,1.2239) mvmt=(-0.1038,0.0000,-0.8574) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.196,7.632,95.244) lpos=(1.304,3.868,1.224) lprev=(1.407,3.868,2.081) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2427,-0.0953,-0.1564) mvmt=(0.0000,-0.1038,-0.8574) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-0.3353,-0.2614) mvmt=(-0.0000,-0.1038,-0.8574) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2677,-0.3353,-0.2614) out=(-0.2677,-0.3353,0.4886) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.3037,3.8679,1.9739) mvmt=(-0.1038,0.0000,-0.1074) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.196,7.632,95.994) lpos=(1.304,3.868,1.974) lprev=(1.407,3.868,2.081) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2427,-0.0953,0.5936) mvmt=(0.0000,-0.1038,-0.1074) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-0.3353,0.4886) mvmt=(-0.0000,-0.1038,-0.1074) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-2.5466,-0.8614) mvmt=(-0.0000,-0.1038,-0.1074) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1365,1.7452,1.9863) mvmt=(0.1037,-0.0031,-0.1074) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3037,3.8679,1.9939) mvmt=(-0.1038,0.0000,-0.1074) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.1981,3.8679,1.8646) mvmt=(-0.1056,0.0000,-0.1092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.302,7.632,95.885) lpos=(1.198,3.868,1.865) lprev=(1.304,3.868,1.974) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2427,-0.2009,0.4843) mvmt=(0.0000,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-0.4409,0.3793) mvmt=(-0.0000,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-2.6522,-0.9707) mvmt=(-0.0000,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2420,1.7421,1.8771) mvmt=(0.1055,-0.0032,-0.1092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1981,3.8679,1.8846) mvmt=(-0.1056,0.0000,-0.1092) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1981,3.8679,1.1146) mvmt=(-0.1056,0.0000,-0.8592) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.302,7.632,95.135) lpos=(1.198,3.868,1.115) lprev=(1.304,3.868,1.974) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2427,-0.2009,-0.2657) mvmt=(0.0000,-0.1056,-0.8592) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-0.4409,-0.3707) mvmt=(-0.0000,-0.1056,-0.8592) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2677,-0.4409,-0.3707) out=(-0.2677,-0.4409,0.3793) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.1981,3.8679,1.8646) mvmt=(-0.1056,0.0000,-0.1092) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.302,7.632,95.885) lpos=(1.198,3.868,1.865) lprev=(1.304,3.868,1.974) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2427,-0.2009,0.4843) mvmt=(0.0000,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-0.4409,0.3793) mvmt=(-0.0000,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-2.6522,-0.9707) mvmt=(-0.0000,-0.1056,-0.1092) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2420,1.7421,1.8771) mvmt=(0.1055,-0.0032,-0.1092) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1981,3.8679,1.8846) mvmt=(-0.1056,0.0000,-0.1092) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.0951,4.0023,1.7581) mvmt=(-0.1030,0.1343,-0.1065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0951,4.0023,1.7581) mvmt=(-0.1030,0.1343,-0.1065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.405,7.498,95.778) lpos=(1.095,4.002,1.758) lprev=(1.198,3.868,1.865) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3770,-0.3039,0.3778) mvmt=(-0.1343,-0.1030,-0.1065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4020,-0.5439,0.2728) mvmt=(-0.1343,-0.1030,-0.1065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4020,-2.7551,-1.0772) mvmt=(-0.1343,-0.1030,-0.1065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3409,1.6047,1.7706) mvmt=(0.0989,-0.1374,-0.1065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0951,4.0023,1.7781) mvmt=(-0.1030,0.1343,-0.1065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.405,7.498,95.778) lpos=(1.095,4.002,1.758) lprev=(1.198,3.868,1.865) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(1.0951,3.8679,1.7581) mvmt=(-0.1030,0.0000,-0.1065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.405,7.632,95.778) lpos=(1.095,3.868,1.758) lprev=(1.198,3.868,1.865) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2427,-0.3039,0.3778) mvmt=(-0.0000,-0.1030,-0.1065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-0.5439,0.2728) mvmt=(-0.0000,-0.1030,-0.1065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-2.7551,-1.0772) mvmt=(0.0000,-0.1030,-0.1065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3450,1.7390,1.7706) mvmt=(0.1029,-0.0031,-0.1065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0951,3.8679,1.7781) mvmt=(-0.1030,0.0000,-0.1065) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0951,3.8679,1.0081) mvmt=(-0.1030,0.0000,-0.8565) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.405,7.632,95.028) lpos=(1.095,3.868,1.008) lprev=(1.198,3.868,1.865) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2427,-0.3039,-0.3722) mvmt=(-0.0000,-0.1030,-0.8565) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-0.5439,-0.4772) mvmt=(-0.0000,-0.1030,-0.8565) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2677,-0.5439,-0.4772) out=(-0.2677,-0.5439,0.2728) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.0951,3.8679,1.7581) mvmt=(-0.1030,0.0000,-0.1065) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.405,7.632,95.778) lpos=(1.095,3.868,1.758) lprev=(1.198,3.868,1.865) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2427,-0.3039,0.3778) mvmt=(-0.0000,-0.1030,-0.1065) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-0.5439,0.2728) mvmt=(-0.0000,-0.1030,-0.1065) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-2.7551,-1.0772) mvmt=(0.0000,-0.1030,-0.1065) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3450,1.7390,1.7706) mvmt=(0.1029,-0.0031,-0.1065) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0951,3.8679,1.7781) mvmt=(-0.1030,0.0000,-0.1065) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.9949,3.8679,1.6544) mvmt=(-0.1003,0.0000,-0.1037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.505,7.632,95.674) lpos=(0.995,3.868,1.654) lprev=(1.095,3.868,1.758) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2427,-0.4041,0.2741) mvmt=(0.0000,-0.1003,-0.1037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-0.6441,0.1691) mvmt=(-0.0000,-0.1003,-0.1037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-2.8554,-1.1809) mvmt=(0.0000,-0.1003,-0.1037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4452,1.7359,1.6669) mvmt=(0.1002,-0.0030,-0.1037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9949,3.8679,1.6744) mvmt=(-0.1003,0.0000,-0.1037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9949,3.8679,0.9044) mvmt=(-0.1003,0.0000,-0.8537) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.505,7.632,94.924) lpos=(0.995,3.868,0.904) lprev=(1.095,3.868,1.758) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2427,-0.4041,-0.4759) mvmt=(0.0000,-0.1003,-0.8537) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-0.6441,-0.5809) mvmt=(-0.0000,-0.1003,-0.8537) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2677,-0.6441,-0.5809) out=(-0.2677,-0.6441,0.1691) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.9949,3.8679,1.6544) mvmt=(-0.1003,0.0000,-0.1037) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.505,7.632,95.674) lpos=(0.995,3.868,1.654) lprev=(1.095,3.868,1.758) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2427,-0.4041,0.2741) mvmt=(0.0000,-0.1003,-0.1037) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-0.6441,0.1691) mvmt=(-0.0000,-0.1003,-0.1037) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-2.8554,-1.1809) mvmt=(0.0000,-0.1003,-0.1037) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4452,1.7359,1.6669) mvmt=(0.1002,-0.0030,-0.1037) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9949,3.8679,1.6744) mvmt=(-0.1003,0.0000,-0.1037) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.8943,3.9991,1.5504) mvmt=(-0.1005,0.1312,-0.1040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8943,3.9991,1.5504) mvmt=(-0.1005,0.1312,-0.1040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.606,7.501,95.570) lpos=(0.894,3.999,1.550) lprev=(0.995,3.868,1.654) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3739,-0.5047,0.1701) mvmt=(-0.1312,-0.1005,-0.1040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3989,-0.7447,0.0651) mvmt=(-0.1312,-0.1005,-0.1040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3989,-2.9559,-1.2849) mvmt=(-0.1312,-0.1005,-0.1040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5417,1.6018,1.5629) mvmt=(0.0965,-0.1341,-0.1040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8943,3.9991,1.5704) mvmt=(-0.1005,0.1312,-0.1040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.606,7.501,95.570) lpos=(0.894,3.999,1.550) lprev=(0.995,3.868,1.654) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(0.8943,3.8679,1.5504) mvmt=(-0.1005,0.0000,-0.1040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.606,7.632,95.570) lpos=(0.894,3.868,1.550) lprev=(0.995,3.868,1.654) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2427,-0.5047,0.1701) mvmt=(-0.0000,-0.1005,-0.1040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-0.7447,0.0651) mvmt=(-0.0000,-0.1005,-0.1040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-2.9559,-1.2849) mvmt=(-0.0000,-0.1005,-0.1040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5457,1.7329,1.5629) mvmt=(0.1005,-0.0030,-0.1040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8943,3.8679,1.5704) mvmt=(-0.1005,0.0000,-0.1040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8943,3.8679,0.8004) mvmt=(-0.1005,0.0000,-0.8540) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.606,7.632,94.820) lpos=(0.894,3.868,0.800) lprev=(0.995,3.868,1.654) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2427,-0.5047,-0.5799) mvmt=(-0.0000,-0.1005,-0.8540) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-0.7447,-0.6849) mvmt=(-0.0000,-0.1005,-0.8540) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2677,-0.7447,-0.6849) out=(-0.2677,-0.7447,0.0651) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.8943,3.8679,1.5504) mvmt=(-0.1005,0.0000,-0.1040) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.606,7.632,95.570) lpos=(0.894,3.868,1.550) lprev=(0.995,3.868,1.654) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2427,-0.5047,0.1701) mvmt=(-0.0000,-0.1005,-0.1040) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-0.7447,0.0651) mvmt=(-0.0000,-0.1005,-0.1040) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2677,-2.9559,-1.2849) mvmt=(-0.0000,-0.1005,-0.1040) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5457,1.7329,1.5629) mvmt=(0.1005,-0.0030,-0.1040) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8943,3.8679,1.5704) mvmt=(-0.1005,0.0000,-0.1040) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.0896,3.8639,1.7524) mvmt=(0.1952,-0.0040,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.410,7.636,95.772) lpos=(1.090,3.864,1.752) lprev=(0.894,3.868,1.550) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2387,-0.3094,0.3721) mvmt=(0.0040,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2637,-0.5494,0.2671) mvmt=(0.0040,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2637,-2.7607,-1.0829) mvmt=(0.0040,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3507,1.7428,1.7648) mvmt=(-0.1950,0.0099,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0896,3.8639,1.7724) mvmt=(0.1952,-0.0040,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0896,3.8639,1.0024) mvmt=(0.1952,-0.0040,-0.5480) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.410,7.636,95.022) lpos=(1.090,3.864,1.002) lprev=(0.894,3.868,1.550) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2387,-0.3094,-0.3779) mvmt=(0.0040,0.1952,-0.5480) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2637,-0.5494,-0.4829) mvmt=(0.0040,0.1952,-0.5480) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2637,-0.5494,-0.4829) out=(-0.2637,-0.5494,0.2671) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.0896,3.8639,1.7524) mvmt=(0.1952,-0.0040,0.2020) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.410,7.636,95.772) lpos=(1.090,3.864,1.752) lprev=(0.894,3.868,1.550) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2387,-0.3094,0.3721) mvmt=(0.0040,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2637,-0.5494,0.2671) mvmt=(0.0040,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2637,-2.7607,-1.0829) mvmt=(0.0040,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3507,1.7428,1.7648) mvmt=(-0.1950,0.0099,0.2020) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0896,3.8639,1.7724) mvmt=(0.1952,-0.0040,0.2020) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.2989,3.8596,1.9689) mvmt=(0.2093,-0.0043,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.201,7.640,95.989) lpos=(1.299,3.860,1.969) lprev=(1.090,3.864,1.752) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-0.1001,0.5886) mvmt=(0.0043,0.2093,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-0.3401,0.4836) mvmt=(0.0043,0.2093,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-2.5514,-0.8664) mvmt=(0.0043,0.2093,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1415,1.7534,1.9814) mvmt=(-0.2091,0.0106,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2989,3.8596,1.9889) mvmt=(0.2093,-0.0043,0.2166) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2989,3.8596,1.2189) mvmt=(0.2093,-0.0043,-0.5334) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.201,7.640,95.239) lpos=(1.299,3.860,1.219) lprev=(1.090,3.864,1.752) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-0.1001,-0.1614) mvmt=(0.0043,0.2093,-0.5334) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-0.3401,-0.2664) mvmt=(0.0043,0.2093,-0.5334) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2594,-0.3401,-0.2664) out=(-0.2594,-0.3401,0.4836) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.2989,3.8596,1.9689) mvmt=(0.2093,-0.0043,0.2166) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.201,7.640,95.989) lpos=(1.299,3.860,1.969) lprev=(1.090,3.864,1.752) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-0.1001,0.5886) mvmt=(0.0043,0.2093,0.2166) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-0.3401,0.4836) mvmt=(0.0043,0.2093,0.2166) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-2.5514,-0.8664) mvmt=(0.0043,0.2093,0.2166) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1415,1.7534,1.9814) mvmt=(-0.2091,0.0106,0.2166) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2989,3.8596,1.9889) mvmt=(0.2093,-0.0043,0.2166) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.5097,3.8553,2.1870) mvmt=(0.2108,-0.0043,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.990,7.645,96.207) lpos=(1.510,3.855,2.187) lprev=(1.299,3.860,1.969) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2300,0.1107,0.8067) mvmt=(0.0043,0.2108,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2550,-0.1293,0.7017) mvmt=(0.0043,0.2108,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2550,-2.3405,-0.6483) mvmt=(0.0043,0.2108,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9310,1.7641,2.1995) mvmt=(-0.2106,0.0107,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5097,3.8553,2.2070) mvmt=(0.2108,-0.0043,0.2181) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5097,3.8553,1.4370) mvmt=(0.2108,-0.0043,-0.5319) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.990,7.645,95.457) lpos=(1.510,3.855,1.437) lprev=(1.299,3.860,1.969) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2300,0.1107,0.0567) mvmt=(0.0043,0.2108,-0.5319) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2550,-0.1293,-0.0483) mvmt=(0.0043,0.2108,-0.5319) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2550,-0.1293,-0.0483) out=(-0.2550,-0.1293,0.7017) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5097,3.8553,2.1870) mvmt=(0.2108,-0.0043,0.2181) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.990,7.645,96.207) lpos=(1.510,3.855,2.187) lprev=(1.299,3.860,1.969) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2300,0.1107,0.8067) mvmt=(0.0043,0.2108,0.2181) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2550,-0.1293,0.7017) mvmt=(0.0043,0.2108,0.2181) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2550,-2.3405,-0.6483) mvmt=(0.0043,0.2108,0.2181) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9310,1.7641,2.1995) mvmt=(-0.2106,0.0107,0.2181) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5097,3.8553,2.2070) mvmt=(0.2108,-0.0043,0.2181) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7161,3.8510,2.4005) mvmt=(0.2063,-0.0042,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.784,7.649,96.420) lpos=(1.716,3.851,2.400) lprev=(1.510,3.855,2.187) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7161,3.8510,2.4005) mvmt=(0.2063,-0.0042,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2258,0.3171,1.0202) mvmt=(0.0042,0.2063,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2508,0.0771,0.9152) mvmt=(0.0042,0.2063,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2508,-2.1342,-0.4348) mvmt=(0.0042,0.2063,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7248,1.7746,2.4129) mvmt=(-0.2061,0.0105,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7161,3.8510,2.4205) mvmt=(0.2063,-0.0042,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7161,3.8510,1.6505) mvmt=(0.2063,-0.0042,-0.5365) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.784,7.649,95.670) lpos=(1.716,3.851,1.650) lprev=(1.510,3.855,2.187) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2258,0.3171,0.2702) mvmt=(0.0042,0.2063,-0.5365) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2508,0.0771,0.1652) mvmt=(0.0042,0.2063,-0.5365) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2508,0.0771,0.1652) out=(-0.2508,0.0771,0.9152) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.7161,3.8510,2.4005) mvmt=(0.2063,-0.0042,0.2135) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.784,7.649,96.420) lpos=(1.716,3.851,2.400) lprev=(1.510,3.855,2.187) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7161,3.8510,2.4005) mvmt=(0.2063,-0.0042,0.2135) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2258,0.3171,1.0202) mvmt=(0.0042,0.2063,0.2135) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2508,0.0771,0.9152) mvmt=(0.0042,0.2063,0.2135) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2508,-2.1342,-0.4348) mvmt=(0.0042,0.2063,0.2135) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7248,1.7746,2.4129) mvmt=(-0.2061,0.0105,0.2135) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7161,3.8510,2.4205) mvmt=(0.2063,-0.0042,0.2135) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.9260,3.8467,2.6177) mvmt=(0.2099,-0.0043,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.574,7.653,96.638) lpos=(1.926,3.847,2.618) lprev=(1.716,3.851,2.400) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9260,3.8467,2.6177) mvmt=(0.2099,-0.0043,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.9260,3.8467,2.6177) mvmt=(0.2099,-0.0043,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2215,0.5270,1.2373) mvmt=(0.0043,0.2099,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2465,0.2870,1.1324) mvmt=(0.0043,0.2099,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2465,-1.9243,-0.2177) mvmt=(0.0043,0.2099,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6090,3.8467,1.1376) mvmt=(0.2099,-0.0043,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5151,1.7853,2.6301) mvmt=(-0.2097,0.0107,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9260,3.8467,2.6376) mvmt=(0.2099,-0.0043,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9260,3.8467,1.8677) mvmt=(0.2099,-0.0043,-0.5328) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.574,7.653,95.888) lpos=(1.926,3.847,1.868) lprev=(1.716,3.851,2.400) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2215,0.5270,0.4874) mvmt=(0.0043,0.2099,-0.5328) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2465,0.2870,0.3824) mvmt=(0.0043,0.2099,-0.5328) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2465,0.2870,0.3824) out=(-0.2465,0.2870,1.1324) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.9260,3.8467,2.6177) mvmt=(0.2099,-0.0043,0.2172) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.574,7.653,96.638) lpos=(1.926,3.847,2.618) lprev=(1.716,3.851,2.400) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9260,3.8467,2.6177) mvmt=(0.2099,-0.0043,0.2172) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.9260,3.8467,2.6177) mvmt=(0.2099,-0.0043,0.2172) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2215,0.5270,1.2373) mvmt=(0.0043,0.2099,0.2172) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2465,0.2870,1.1324) mvmt=(0.0043,0.2099,0.2172) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2465,-1.9243,-0.2177) mvmt=(0.0043,0.2099,0.2172) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6090,3.8467,1.1376) mvmt=(0.2099,-0.0043,0.2172) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5151,1.7853,2.6301) mvmt=(-0.2097,0.0107,0.2172) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9260,3.8467,2.6376) mvmt=(0.2099,-0.0043,0.2172) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.1368,3.8424,2.8357) mvmt=(0.2108,-0.0043,0.2180) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.363,7.658,96.856) lpos=(2.137,3.842,2.836) lprev=(1.926,3.847,2.618) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1368,3.8424,2.8357) mvmt=(0.2108,-0.0043,0.2180) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.1368,3.8424,2.8357) mvmt=(0.2108,-0.0043,0.2180) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2171,0.7378,1.4554) mvmt=(0.0043,0.2108,0.2180) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2421,0.4978,1.3504) mvmt=(0.0043,0.2108,0.2180) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2421,-1.7135,0.0004) mvmt=(0.0043,0.2108,0.2180) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3982,3.8424,1.3557) mvmt=(0.2108,-0.0043,0.2180) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1668,0.5652,-0.1593) mvmt=(0.2108,-0.0043,0.2180) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0868,-0.3776,-0.1643) mvmt=(0.2108,-0.0043,0.2180) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3046,1.7960,2.8481) mvmt=(-0.2105,0.0107,0.2180) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1368,3.8424,2.8557) mvmt=(0.2108,-0.0043,0.2180) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1368,3.8424,2.0857) mvmt=(0.2108,-0.0043,-0.5320) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.363,7.658,96.106) lpos=(2.137,3.842,2.086) lprev=(1.926,3.847,2.618) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2171,0.7378,0.7054) mvmt=(0.0043,0.2108,-0.5320) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2421,0.4978,0.6004) mvmt=(0.0043,0.2108,-0.5320) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2421,0.4978,0.6004) out=(-0.2421,0.4978,1.3504) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.1368,3.8424,2.8357) mvmt=(0.2108,-0.0043,0.2180) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.363,7.658,96.856) lpos=(2.137,3.842,2.836) lprev=(1.926,3.847,2.618) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1368,3.8424,2.8357) mvmt=(0.2108,-0.0043,0.2180) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.1368,3.8424,2.8357) mvmt=(0.2108,-0.0043,0.2180) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2171,0.7378,1.4554) mvmt=(0.0043,0.2108,0.2180) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2421,0.4978,1.3504) mvmt=(0.0043,0.2108,0.2180) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2421,-1.7135,0.0004) mvmt=(0.0043,0.2108,0.2180) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3982,3.8424,1.3557) mvmt=(0.2108,-0.0043,0.2180) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1668,0.5652,-0.1593) mvmt=(0.2108,-0.0043,0.2180) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0868,-0.3776,-0.1643) mvmt=(0.2108,-0.0043,0.2180) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3046,1.7960,2.8481) mvmt=(-0.2105,0.0107,0.2180) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1368,3.8424,2.8557) mvmt=(0.2108,-0.0043,0.2180) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cell-transit] 0xA9B4013F -> 0xA9B4014A pos=(128.363,7.658,96.376) reason=resolver +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.3406,3.8382,3.0466) mvmt=(0.2039,-0.0042,0.2109) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.159,7.662,97.067) lpos=(2.341,3.838,3.047) lprev=(2.137,3.842,2.836) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3406,3.8382,3.0466) mvmt=(0.2039,-0.0042,0.2109) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3406,3.8382,3.0466) mvmt=(0.2039,-0.0042,0.2109) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.1944,3.8382,-1.4384) mvmt=(0.2039,-0.0042,0.2109) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3706,0.5610,0.0516) mvmt=(0.2039,-0.0042,0.2109) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2906,-0.3818,0.0466) mvmt=(0.2039,-0.0042,0.2109) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2129,0.9416,1.6663) mvmt=(0.0042,0.2039,0.2109) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2379,0.7016,1.5613) mvmt=(0.0042,0.2039,0.2109) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2379,-1.5096,0.2113) mvmt=(0.0042,0.2039,0.2109) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1944,3.8382,1.5666) mvmt=(0.2039,-0.0042,0.2109) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3406,3.8382,3.0666) mvmt=(0.2039,-0.0042,0.2109) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3406,3.8382,2.2966) mvmt=(0.2039,-0.0042,-0.5391) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.159,7.662,96.317) lpos=(2.341,3.838,2.297) lprev=(2.137,3.842,2.836) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2129,0.9416,0.9163) mvmt=(0.0042,0.2039,-0.5391) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2379,0.7016,0.8113) mvmt=(0.0042,0.2039,-0.5391) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2379,0.7016,0.8113) out=(-0.2379,0.7016,1.5613) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.3406,3.8382,3.0466) mvmt=(0.2039,-0.0042,0.2109) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.159,7.662,97.067) lpos=(2.341,3.838,3.047) lprev=(2.137,3.842,2.836) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3406,3.8382,3.0466) mvmt=(0.2039,-0.0042,0.2109) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3406,3.8382,3.0466) mvmt=(0.2039,-0.0042,0.2109) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.1944,3.8382,-1.4384) mvmt=(0.2039,-0.0042,0.2109) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3706,0.5610,0.0516) mvmt=(0.2039,-0.0042,0.2109) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2906,-0.3818,0.0466) mvmt=(0.2039,-0.0042,0.2109) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2129,0.9416,1.6663) mvmt=(0.0042,0.2039,0.2109) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2379,0.7016,1.5613) mvmt=(0.0042,0.2039,0.2109) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2379,-1.5096,0.2113) mvmt=(0.0042,0.2039,0.2109) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1944,3.8382,1.5666) mvmt=(0.2039,-0.0042,0.2109) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3406,3.8382,3.0666) mvmt=(0.2039,-0.0042,0.2109) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cell-transit] 0xA9B4014A -> 0xA9B4014B pos=(128.159,7.662,96.587) reason=resolver +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.5487,3.8339,3.2618) mvmt=(0.2081,-0.0043,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.951,7.666,97.282) lpos=(2.549,3.834,3.262) lprev=(2.341,3.838,3.047) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5487,3.8339,3.2618) mvmt=(0.2081,-0.0043,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5487,3.8339,3.2618) mvmt=(0.2081,-0.0043,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.9863,3.8339,-1.2232) mvmt=(0.2081,-0.0043,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5787,0.5567,0.2668) mvmt=(0.2081,-0.0043,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5007,3.2464,-4.0832) mvmt=(0.2081,-0.0043,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7343,3.2464,-4.0832) mvmt=(0.2081,-0.0043,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4987,-0.3861,0.2618) mvmt=(0.2081,-0.0043,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2087,1.1497,1.8815) mvmt=(0.0043,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2337,0.9097,1.7765) mvmt=(0.0043,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2337,-1.3016,0.4265) mvmt=(0.0043,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9863,3.8339,1.7818) mvmt=(0.2081,-0.0043,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5487,3.8339,3.2818) mvmt=(0.2081,-0.0043,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5487,3.8339,2.5118) mvmt=(0.2081,-0.0043,-0.5348) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.951,7.666,96.532) lpos=(2.549,3.834,2.512) lprev=(2.341,3.838,3.047) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5487,3.8339,2.5118) mvmt=(0.2081,-0.0043,-0.5348) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5487,3.8339,2.5118) mvmt=(0.2081,-0.0043,-0.5348) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2087,1.1497,1.1315) mvmt=(0.0043,0.2081,-0.5348) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2337,0.9097,1.0265) mvmt=(0.0043,0.2081,-0.5348) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2337,0.9097,1.0265) out=(-0.2337,0.9097,1.7765) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5487,3.8339,3.2618) mvmt=(0.2081,-0.0043,0.2152) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.951,7.666,97.282) lpos=(2.549,3.834,3.262) lprev=(2.341,3.838,3.047) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5487,3.8339,3.2618) mvmt=(0.2081,-0.0043,0.2152) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5487,3.8339,3.2618) mvmt=(0.2081,-0.0043,0.2152) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.9863,3.8339,-1.2232) mvmt=(0.2081,-0.0043,0.2152) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5787,0.5567,0.2668) mvmt=(0.2081,-0.0043,0.2152) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5007,3.2464,-4.0832) mvmt=(0.2081,-0.0043,0.2152) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7343,3.2464,-4.0832) mvmt=(0.2081,-0.0043,0.2152) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4987,-0.3861,0.2618) mvmt=(0.2081,-0.0043,0.2152) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2087,1.1497,1.8815) mvmt=(0.0043,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2337,0.9097,1.7765) mvmt=(0.0043,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2337,-1.3016,0.4265) mvmt=(0.0043,0.2081,0.2152) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9863,3.8339,1.7818) mvmt=(0.2081,-0.0043,0.2152) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5487,3.8339,3.2818) mvmt=(0.2081,-0.0043,0.2152) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.7562,3.8297,3.4765) mvmt=(0.2075,-0.0043,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.744,7.670,97.496) lpos=(2.756,3.830,3.476) lprev=(2.549,3.834,3.262) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7562,3.8297,3.4765) mvmt=(0.2075,-0.0043,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7788,3.8297,-1.0085) mvmt=(0.2075,-0.0043,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7082,3.2422,-3.8685) mvmt=(0.2075,-0.0043,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5268,3.2422,-3.8685) mvmt=(0.2075,-0.0043,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7062,-0.3903,0.4765) mvmt=(0.2075,-0.0043,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2044,1.3572,2.0962) mvmt=(0.0043,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2294,1.1172,1.9912) mvmt=(0.0043,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2294,-1.0941,0.6412) mvmt=(0.0043,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7788,3.8297,1.9965) mvmt=(0.2075,-0.0043,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7562,3.8297,3.4965) mvmt=(0.2075,-0.0043,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7562,3.8297,2.7265) mvmt=(0.2075,-0.0043,-0.5353) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.744,7.670,96.746) lpos=(2.756,3.830,2.726) lprev=(2.549,3.834,3.262) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7562,3.8297,2.7265) mvmt=(0.2075,-0.0043,-0.5353) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7562,3.8297,2.7265) mvmt=(0.2075,-0.0043,-0.5353) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2044,1.3572,1.3462) mvmt=(0.0043,0.2075,-0.5353) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2294,1.1172,1.2412) mvmt=(0.0043,0.2075,-0.5353) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2294,1.1172,1.2412) out=(-0.2294,1.1172,1.9800) delta=(0.0000,0.0000,0.7388) deltaMag=0.7388 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.0149 dpPos=-0.2588 dpMove=-0.7500 iDist=0.9851 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.7562,3.8297,3.4653) mvmt=(0.2075,-0.0043,0.2035) collide=False insertType=0 objState=0x303 winterp=0.0149 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.744,7.670,97.485) lpos=(2.756,3.830,3.465) lprev=(2.549,3.834,3.262) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7562,3.8297,3.4653) mvmt=(0.2075,-0.0043,0.2035) collide=False insertType=0 objState=0x303 winterp=0.0149 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7788,3.8297,-1.0197) mvmt=(0.2075,-0.0043,0.2035) collide=False insertType=0 objState=0x303 winterp=0.0149 return=-1 +[push-back-disp] site=dispatch center=(3.7082,3.2422,-3.8797) mvmt=(0.2075,-0.0043,0.2035) collide=False insertType=0 objState=0x303 winterp=0.0149 return=-1 +[push-back-disp] site=dispatch center=(-2.5268,3.2422,-3.8797) mvmt=(0.2075,-0.0043,0.2035) collide=False insertType=0 objState=0x303 winterp=0.0149 return=-1 +[push-back-disp] site=dispatch center=(3.7062,-0.3903,0.4653) mvmt=(0.2075,-0.0043,0.2035) collide=False insertType=0 objState=0x303 winterp=0.0149 return=-1 +[push-back-disp] site=dispatch center=(-1.2044,1.3572,2.0850) mvmt=(0.0043,0.2075,0.2035) collide=False insertType=0 objState=0x303 winterp=0.0149 return=-1 +[push-back-disp] site=dispatch center=(-0.2294,1.1172,1.9800) mvmt=(0.0043,0.2075,0.2035) collide=False insertType=0 objState=0x303 winterp=0.0149 return=-1 +[push-back-disp] site=dispatch center=(-0.2294,-1.0941,0.6300) mvmt=(0.0043,0.2075,0.2035) collide=False insertType=0 objState=0x303 winterp=0.0149 return=-1 +[push-back-disp] site=dispatch center=(-2.7788,3.8297,1.9853) mvmt=(0.2075,-0.0043,0.2035) collide=False insertType=0 objState=0x303 winterp=0.0149 return=-1 +[push-back-disp] site=dispatch center=(2.7562,3.8297,3.4853) mvmt=(0.2075,-0.0043,0.2035) collide=False insertType=0 objState=0x303 winterp=0.0149 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.1762,3.8255,3.4653) mvmt=(0.4200,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.324,7.675,97.485) lpos=(3.176,3.825,3.465) lprev=(2.756,3.830,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1762,3.8255,3.4653) mvmt=(0.4200,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.3588,3.8255,-1.0197) mvmt=(0.4200,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1282,3.2380,-3.8797) mvmt=(0.4200,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1068,3.2380,-3.8797) mvmt=(0.4200,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1762,3.8255,3.4853) mvmt=(0.4200,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1762,3.8255,2.7153) mvmt=(0.4200,-0.0042,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.324,7.675,96.735) lpos=(3.176,3.825,2.715) lprev=(2.756,3.830,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1762,3.8255,2.7153) mvmt=(0.4200,-0.0042,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.1762,3.8255,2.7153) mvmt=(0.4200,-0.0042,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2002,1.7772,1.3350) mvmt=(0.0042,0.4200,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2252,1.5372,1.2300) mvmt=(0.0042,0.4200,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2252,1.5372,1.2300) out=(-0.2252,1.5372,1.9800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(3.1762,3.8255,3.4653) mvmt=(0.4200,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.324,7.675,97.485) lpos=(3.176,3.825,3.465) lprev=(2.756,3.830,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1762,3.8255,3.4653) mvmt=(0.4200,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.3588,3.8255,-1.0197) mvmt=(0.4200,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1282,3.2380,-3.8797) mvmt=(0.4200,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1068,3.2380,-3.8797) mvmt=(0.4200,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1762,3.8255,3.4853) mvmt=(0.4200,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.6044,3.8212,3.4653) mvmt=(0.4282,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.896,7.679,97.485) lpos=(3.604,3.821,3.465) lprev=(3.176,3.825,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.6044,3.8212,3.4653) mvmt=(0.4282,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.9306,3.8212,-1.0197) mvmt=(0.4282,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6786,3.2337,-3.8797) mvmt=(0.4282,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6044,3.8212,3.4853) mvmt=(0.4282,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6044,3.8212,2.7153) mvmt=(0.4282,-0.0043,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.896,7.679,96.735) lpos=(3.604,3.821,2.715) lprev=(3.176,3.825,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.6044,3.8212,2.7153) mvmt=(0.4282,-0.0043,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.6044,3.8212,2.7153) mvmt=(0.4282,-0.0043,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1960,2.2054,1.3350) mvmt=(0.0043,0.4282,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2210,1.9654,1.2300) mvmt=(0.0043,0.4282,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2210,1.9654,1.2300) out=(-0.2210,1.9654,1.9800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(3.6044,3.8212,3.4653) mvmt=(0.4282,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.896,7.679,97.485) lpos=(3.604,3.821,3.465) lprev=(3.176,3.825,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.6044,3.8212,3.4653) mvmt=(0.4282,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.9306,3.8212,-1.0197) mvmt=(0.4282,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6786,3.2337,-3.8797) mvmt=(0.4282,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6044,3.8212,3.4853) mvmt=(0.4282,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.0072,3.8172,3.4653) mvmt=(0.4028,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.493,7.683,97.485) lpos=(4.007,3.817,3.465) lprev=(3.604,3.821,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.0072,3.8172,3.4653) mvmt=(0.4028,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5278,3.8172,-1.0197) mvmt=(0.4028,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2758,3.2297,-3.8797) mvmt=(0.4028,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0072,3.8172,3.4853) mvmt=(0.4028,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0072,3.8172,2.7153) mvmt=(0.4028,-0.0040,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.493,7.683,96.735) lpos=(4.007,3.817,2.715) lprev=(3.604,3.821,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.0072,3.8172,2.7153) mvmt=(0.4028,-0.0040,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.0072,3.8172,2.7153) mvmt=(0.4028,-0.0040,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1920,2.6082,1.3350) mvmt=(0.0040,0.4028,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2170,2.3682,1.2300) mvmt=(0.0040,0.4028,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2170,0.1569,-0.1200) mvmt=(0.0040,0.4028,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2170,0.1569,-0.1200) out=(-0.2170,0.1569,0.6300) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.1500 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(4.0072,3.8172,3.4653) mvmt=(0.4028,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.493,7.683,97.485) lpos=(4.007,3.817,3.465) lprev=(3.604,3.821,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.0072,3.8172,3.4653) mvmt=(0.4028,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5278,3.8172,-1.0197) mvmt=(0.4028,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2758,3.2297,-3.8797) mvmt=(0.4028,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0072,3.8172,3.4853) mvmt=(0.4028,-0.0040,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.4361,3.8130,3.4653) mvmt=(0.4289,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.064,7.687,97.485) lpos=(4.436,3.813,3.465) lprev=(4.007,3.817,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.4361,3.8130,3.4653) mvmt=(0.4289,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0989,3.8130,-1.0197) mvmt=(0.4289,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8469,3.2255,-3.8797) mvmt=(0.4289,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4361,3.8130,3.4853) mvmt=(0.4289,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4361,3.8130,2.7153) mvmt=(0.4289,-0.0043,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.064,7.687,96.735) lpos=(4.436,3.813,2.715) lprev=(4.007,3.817,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.4361,3.8130,2.7153) mvmt=(0.4289,-0.0043,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.4361,3.8130,2.7153) mvmt=(0.4289,-0.0043,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1877,3.0371,1.3350) mvmt=(0.0043,0.4289,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2127,2.7971,1.2300) mvmt=(0.0043,0.4289,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2127,0.5858,-0.1200) mvmt=(0.0043,0.4289,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2127,0.5858,-0.1200) out=(-0.2127,0.5858,0.6300) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.1500 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(4.4361,3.8130,3.4653) mvmt=(0.4289,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.064,7.687,97.485) lpos=(4.436,3.813,3.465) lprev=(4.007,3.817,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.4361,3.8130,3.4653) mvmt=(0.4289,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0989,3.8130,-1.0197) mvmt=(0.4289,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8469,3.2255,-3.8797) mvmt=(0.4289,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4361,3.8130,3.4853) mvmt=(0.4289,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementBackup Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.2156,3.8152,3.4653) mvmt=(-0.2205,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.284,7.685,97.485) lpos=(4.216,3.815,3.465) lprev=(4.436,3.813,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.2156,3.8152,3.4653) mvmt=(-0.2205,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3194,3.8152,-1.0197) mvmt=(-0.2205,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0674,3.2277,-3.8797) mvmt=(-0.2205,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.2156,3.8152,3.4853) mvmt=(-0.2205,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.2156,3.8152,2.7153) mvmt=(-0.2205,0.0022,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.284,7.685,96.735) lpos=(4.216,3.815,2.715) lprev=(4.436,3.813,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.2156,3.8152,2.7153) mvmt=(-0.2205,0.0022,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.2156,3.8152,2.7153) mvmt=(-0.2205,0.0022,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1899,2.8166,1.3350) mvmt=(-0.0022,-0.2205,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2149,2.5766,1.2300) mvmt=(-0.0022,-0.2205,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2149,0.3653,-0.1200) mvmt=(-0.0022,-0.2205,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2149,0.3653,-0.1200) out=(-0.2149,0.3653,0.6300) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.1500 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(4.2156,3.8152,3.4653) mvmt=(-0.2205,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.284,7.685,97.485) lpos=(4.216,3.815,3.465) lprev=(4.436,3.813,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.2156,3.8152,3.4653) mvmt=(-0.2205,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3194,3.8152,-1.0197) mvmt=(-0.2205,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0674,3.2277,-3.8797) mvmt=(-0.2205,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.2156,3.8152,3.4853) mvmt=(-0.2205,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.9958,3.8173,3.4653) mvmt=(-0.2199,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.504,7.683,97.485) lpos=(3.996,3.817,3.465) lprev=(4.216,3.815,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9958,3.8173,3.4653) mvmt=(-0.2199,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5393,3.8173,-1.0197) mvmt=(-0.2199,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2872,3.2298,-3.8797) mvmt=(-0.2199,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9957,3.8173,3.4853) mvmt=(-0.2199,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9958,3.8173,2.7153) mvmt=(-0.2199,0.0022,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.504,7.683,96.735) lpos=(3.996,3.817,2.715) lprev=(4.216,3.815,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9958,3.8173,2.7153) mvmt=(-0.2199,0.0022,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.9958,3.8173,2.7153) mvmt=(-0.2199,0.0022,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1921,2.5967,1.3350) mvmt=(-0.0022,-0.2199,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2171,2.3567,1.2300) mvmt=(-0.0022,-0.2199,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2171,0.1455,-0.1200) mvmt=(-0.0022,-0.2199,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2171,0.1455,-0.1200) out=(-0.2171,0.1455,0.6300) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.1500 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(3.9958,3.8173,3.4653) mvmt=(-0.2199,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.504,7.683,97.485) lpos=(3.996,3.817,3.465) lprev=(4.216,3.815,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9958,3.8173,3.4653) mvmt=(-0.2199,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5393,3.8173,-1.0197) mvmt=(-0.2199,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2872,3.2298,-3.8797) mvmt=(-0.2199,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9957,3.8173,3.4853) mvmt=(-0.2199,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.7810,3.8195,3.4653) mvmt=(-0.2147,0.0021,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.719,7.681,97.485) lpos=(3.781,3.819,3.465) lprev=(3.996,3.817,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.7810,3.8195,3.4653) mvmt=(-0.2147,0.0021,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.7540,3.8195,-1.0197) mvmt=(-0.2147,0.0021,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5020,3.2320,-3.8797) mvmt=(-0.2147,0.0021,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7810,3.8195,3.4853) mvmt=(-0.2147,0.0021,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7810,3.8195,2.7153) mvmt=(-0.2147,0.0021,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.719,7.681,96.735) lpos=(3.781,3.819,2.715) lprev=(3.996,3.817,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.7810,3.8195,2.7153) mvmt=(-0.2147,0.0021,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.7810,3.8195,2.7153) mvmt=(-0.2147,0.0021,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1942,2.3820,1.3350) mvmt=(-0.0021,-0.2147,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2192,2.1420,1.2300) mvmt=(-0.0021,-0.2147,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2192,-0.0692,-0.1200) mvmt=(-0.0021,-0.2147,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2192,-0.0692,-0.1200) out=(-0.2192,-0.0692,0.6300) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.1500 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(3.7810,3.8195,3.4653) mvmt=(-0.2147,0.0021,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.719,7.681,97.485) lpos=(3.781,3.819,3.465) lprev=(3.996,3.817,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.7810,3.8195,3.4653) mvmt=(-0.2147,0.0021,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.7540,3.8195,-1.0197) mvmt=(-0.2147,0.0021,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5020,3.2320,-3.8797) mvmt=(-0.2147,0.0021,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7810,3.8195,3.4853) mvmt=(-0.2147,0.0021,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.5628,3.8216,3.4653) mvmt=(-0.2182,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.937,7.678,97.485) lpos=(3.563,3.822,3.465) lprev=(3.781,3.819,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.5628,3.8216,3.4653) mvmt=(-0.2182,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.9722,3.8216,-1.0197) mvmt=(-0.2182,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7202,3.2341,-3.8797) mvmt=(-0.2182,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5628,3.8216,3.4853) mvmt=(-0.2182,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5628,3.8216,2.7153) mvmt=(-0.2182,0.0022,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.937,7.678,96.735) lpos=(3.563,3.822,2.715) lprev=(3.781,3.819,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.5628,3.8216,2.7153) mvmt=(-0.2182,0.0022,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.5628,3.8216,2.7153) mvmt=(-0.2182,0.0022,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1964,2.1638,1.3350) mvmt=(-0.0022,-0.2182,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2214,1.9238,1.2300) mvmt=(-0.0022,-0.2182,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2214,1.9238,1.2300) out=(-0.2214,1.9238,1.9800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(3.5628,3.8216,3.4653) mvmt=(-0.2182,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.937,7.678,97.485) lpos=(3.563,3.822,3.465) lprev=(3.781,3.819,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.5628,3.8216,3.4653) mvmt=(-0.2182,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.9722,3.8216,-1.0197) mvmt=(-0.2182,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7202,3.2341,-3.8797) mvmt=(-0.2182,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5628,3.8216,3.4853) mvmt=(-0.2182,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.3397,3.8239,3.4653) mvmt=(-0.2231,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.160,7.676,97.485) lpos=(3.340,3.824,3.465) lprev=(3.563,3.822,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.3397,3.8239,3.4653) mvmt=(-0.2231,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.1953,3.8239,-1.0197) mvmt=(-0.2231,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9433,3.2364,-3.8797) mvmt=(-0.2231,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3397,3.8239,3.4853) mvmt=(-0.2231,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3397,3.8239,2.7153) mvmt=(-0.2231,0.0022,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.160,7.676,96.735) lpos=(3.340,3.824,2.715) lprev=(3.563,3.822,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.3397,3.8239,2.7153) mvmt=(-0.2231,0.0022,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.3397,3.8239,2.7153) mvmt=(-0.2231,0.0022,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1986,1.9407,1.3350) mvmt=(-0.0022,-0.2231,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2236,1.7007,1.2300) mvmt=(-0.0022,-0.2231,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2236,1.7007,1.2300) out=(-0.2236,1.7007,1.9800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(3.3397,3.8239,3.4653) mvmt=(-0.2231,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.160,7.676,97.485) lpos=(3.340,3.824,3.465) lprev=(3.563,3.822,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.3397,3.8239,3.4653) mvmt=(-0.2231,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.1953,3.8239,-1.0197) mvmt=(-0.2231,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9433,3.2364,-3.8797) mvmt=(-0.2231,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3397,3.8239,3.4853) mvmt=(-0.2231,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.1168,3.8261,3.4653) mvmt=(-0.2229,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.383,7.674,97.485) lpos=(3.117,3.826,3.465) lprev=(3.340,3.824,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1168,3.8261,3.4653) mvmt=(-0.2229,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.4182,3.8261,-1.0197) mvmt=(-0.2229,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1662,3.2386,-3.8797) mvmt=(-0.2229,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1168,3.8261,3.4853) mvmt=(-0.2229,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1168,3.8261,2.7153) mvmt=(-0.2229,0.0022,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.383,7.674,96.735) lpos=(3.117,3.826,2.715) lprev=(3.340,3.824,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1168,3.8261,2.7153) mvmt=(-0.2229,0.0022,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.1168,3.8261,2.7153) mvmt=(-0.2229,0.0022,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2008,1.7178,1.3350) mvmt=(-0.0022,-0.2229,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2258,1.4778,1.2300) mvmt=(-0.0022,-0.2229,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2258,1.4778,1.2300) out=(-0.2258,1.4778,1.9800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(3.1168,3.8261,3.4653) mvmt=(-0.2229,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.383,7.674,97.485) lpos=(3.117,3.826,3.465) lprev=(3.340,3.824,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1168,3.8261,3.4653) mvmt=(-0.2229,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.4182,3.8261,-1.0197) mvmt=(-0.2229,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1662,3.2386,-3.8797) mvmt=(-0.2229,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1168,3.8261,3.4853) mvmt=(-0.2229,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.9004,3.8282,3.4653) mvmt=(-0.2164,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.600,7.672,97.485) lpos=(2.900,3.828,3.465) lprev=(3.117,3.826,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9004,3.8282,3.4653) mvmt=(-0.2164,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6346,3.8282,-1.0197) mvmt=(-0.2164,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3826,3.2407,-3.8797) mvmt=(-0.2164,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9004,3.8282,3.4853) mvmt=(-0.2164,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9004,3.8282,2.7153) mvmt=(-0.2164,0.0022,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.600,7.672,96.735) lpos=(2.900,3.828,2.715) lprev=(3.117,3.826,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9004,3.8282,2.7153) mvmt=(-0.2164,0.0022,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.9004,3.8282,2.7153) mvmt=(-0.2164,0.0022,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2030,1.5014,1.3350) mvmt=(-0.0022,-0.2164,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2280,1.2614,1.2300) mvmt=(-0.0022,-0.2164,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2280,1.2614,1.2300) out=(-0.2280,1.2614,1.9800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.9004,3.8282,3.4653) mvmt=(-0.2164,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.600,7.672,97.485) lpos=(2.900,3.828,3.465) lprev=(3.117,3.826,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9004,3.8282,3.4653) mvmt=(-0.2164,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6346,3.8282,-1.0197) mvmt=(-0.2164,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3826,3.2407,-3.8797) mvmt=(-0.2164,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9004,3.8282,3.4853) mvmt=(-0.2164,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.6799,3.8304,3.4653) mvmt=(-0.2205,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.820,7.670,97.485) lpos=(2.680,3.830,3.465) lprev=(2.900,3.828,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6799,3.8304,3.4653) mvmt=(-0.2205,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.8551,3.8304,-1.0197) mvmt=(-0.2205,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6031,3.2429,-3.8797) mvmt=(-0.2205,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6799,3.8304,3.4853) mvmt=(-0.2205,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6799,3.8304,2.7153) mvmt=(-0.2205,0.0022,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.820,7.670,96.735) lpos=(2.680,3.830,2.715) lprev=(2.900,3.828,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6799,3.8304,2.7153) mvmt=(-0.2205,0.0022,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.6799,3.8304,2.7153) mvmt=(-0.2205,0.0022,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2052,1.2809,1.3350) mvmt=(-0.0022,-0.2205,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2302,1.0409,1.2300) mvmt=(-0.0022,-0.2205,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2302,1.0409,1.2300) out=(-0.2302,1.0409,1.9800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.6799,3.8304,3.4653) mvmt=(-0.2205,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.820,7.670,97.485) lpos=(2.680,3.830,3.465) lprev=(2.900,3.828,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6799,3.8304,3.4653) mvmt=(-0.2205,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.8551,3.8304,-1.0197) mvmt=(-0.2205,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6031,3.2429,-3.8797) mvmt=(-0.2205,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6799,3.8304,3.4853) mvmt=(-0.2205,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.4612,3.8326,3.4653) mvmt=(-0.2187,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.039,7.667,97.485) lpos=(2.461,3.833,3.465) lprev=(2.680,3.830,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4612,3.8326,3.4653) mvmt=(-0.2187,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0739,3.8326,-1.0197) mvmt=(-0.2187,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4131,3.2451,-3.8797) mvmt=(-0.2187,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8218,3.2451,-3.8797) mvmt=(-0.2187,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4612,3.8326,3.4853) mvmt=(-0.2187,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4612,3.8326,2.7153) mvmt=(-0.2187,0.0022,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.039,7.667,96.735) lpos=(2.461,3.833,2.715) lprev=(2.680,3.830,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4612,3.8326,2.7153) mvmt=(-0.2187,0.0022,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4612,3.8326,2.7153) mvmt=(-0.2187,0.0022,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2073,1.0621,1.3350) mvmt=(-0.0022,-0.2187,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2323,0.8221,1.2300) mvmt=(-0.0022,-0.2187,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2323,0.8221,1.2300) out=(-0.2323,0.8221,1.6859) delta=(0.0000,0.0000,0.4559) deltaMag=0.4559 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.3921 dpPos=0.1631 dpMove=-0.5213 iDist=0.6079 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.4612,3.8326,3.1712) mvmt=(-0.2187,0.0022,-0.2941) collide=False insertType=0 objState=0x303 winterp=0.3921 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.039,7.667,97.191) lpos=(2.461,3.833,3.171) lprev=(2.680,3.830,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4612,3.8326,3.1712) mvmt=(-0.2187,0.0022,-0.2941) collide=False insertType=0 objState=0x303 winterp=0.3921 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4612,3.8326,3.1712) mvmt=(-0.2187,0.0022,-0.2941) collide=False insertType=0 objState=0x303 winterp=0.3921 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0739,3.8326,-1.3138) mvmt=(-0.2187,0.0022,-0.2941) collide=False insertType=0 objState=0x303 winterp=0.3921 return=-1 +[push-back-disp] site=dispatch center=(3.4131,3.2451,-4.1738) mvmt=(-0.2187,0.0022,-0.2941) collide=False insertType=0 objState=0x303 winterp=0.3921 return=-1 +[push-back-disp] site=dispatch center=(-2.8218,3.2451,-4.1738) mvmt=(-0.2187,0.0022,-0.2941) collide=False insertType=0 objState=0x303 winterp=0.3921 return=-1 +[push-back-disp] site=dispatch center=(2.4612,3.8326,3.1912) mvmt=(-0.2187,0.0022,-0.2941) collide=False insertType=0 objState=0x303 winterp=0.3921 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.3554,3.8348,3.0618) mvmt=(-0.1058,0.0022,-0.1094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.145,7.665,97.082) lpos=(2.355,3.835,3.062) lprev=(2.461,3.833,3.171) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3554,3.8348,3.0618) mvmt=(-0.1058,0.0022,-0.1094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3554,3.8348,3.0618) mvmt=(-0.1058,0.0022,-0.1094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.1796,3.8348,-1.4232) mvmt=(-0.1058,0.0022,-0.1094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9276,3.2473,-4.2832) mvmt=(-0.1058,0.0022,-0.1094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3054,-0.3852,0.0618) mvmt=(-0.1058,0.0022,-0.1094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2095,0.9564,1.6815) mvmt=(-0.0022,-0.1058,-0.1094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2345,0.7164,1.5765) mvmt=(-0.0022,-0.1058,-0.1094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2345,-1.4949,0.2265) mvmt=(-0.0022,-0.1058,-0.1094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1796,3.8348,1.5818) mvmt=(-0.1058,0.0022,-0.1094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3554,3.8348,3.0818) mvmt=(-0.1058,0.0022,-0.1094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3554,3.8348,2.3118) mvmt=(-0.1058,0.0022,-0.8594) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.145,7.665,96.332) lpos=(2.355,3.835,2.312) lprev=(2.461,3.833,3.171) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3554,3.8348,2.3118) mvmt=(-0.1058,0.0022,-0.8594) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2095,0.9564,0.9315) mvmt=(-0.0022,-0.1058,-0.8594) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2345,0.7164,0.8265) mvmt=(-0.0022,-0.1058,-0.8594) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2345,0.7164,0.8265) out=(-0.2345,0.7164,1.5765) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.3554,3.8348,3.0618) mvmt=(-0.1058,0.0022,-0.1094) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.145,7.665,97.082) lpos=(2.355,3.835,3.062) lprev=(2.461,3.833,3.171) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3554,3.8348,3.0618) mvmt=(-0.1058,0.0022,-0.1094) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3554,3.8348,3.0618) mvmt=(-0.1058,0.0022,-0.1094) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.1796,3.8348,-1.4232) mvmt=(-0.1058,0.0022,-0.1094) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9276,3.2473,-4.2832) mvmt=(-0.1058,0.0022,-0.1094) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3054,-0.3852,0.0618) mvmt=(-0.1058,0.0022,-0.1094) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2095,0.9564,1.6815) mvmt=(-0.0022,-0.1058,-0.1094) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2345,0.7164,1.5765) mvmt=(-0.0022,-0.1058,-0.1094) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2345,-1.4949,0.2265) mvmt=(-0.0022,-0.1058,-0.1094) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1796,3.8348,1.5818) mvmt=(-0.1058,0.0022,-0.1094) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3554,3.8348,3.0818) mvmt=(-0.1058,0.0022,-0.1094) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.2581,3.8368,2.9612) mvmt=(-0.0973,0.0020,-0.1007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.242,7.663,96.981) lpos=(2.258,3.837,2.961) lprev=(2.355,3.835,3.062) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2581,3.8368,2.9612) mvmt=(-0.0973,0.0020,-0.1007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2581,3.8368,2.9612) mvmt=(-0.0973,0.0020,-0.1007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2115,0.8591,1.5808) mvmt=(-0.0020,-0.0973,-0.1007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2365,0.6190,1.4759) mvmt=(-0.0020,-0.0973,-0.1007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2365,-1.5922,0.1258) mvmt=(-0.0020,-0.0973,-0.1007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2769,3.8368,1.4811) mvmt=(-0.0973,0.0020,-0.1007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2769,3.8368,-1.5238) mvmt=(-0.0973,0.0020,-0.1007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0249,3.2493,-4.3839) mvmt=(-0.0973,0.0020,-0.1007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2081,-0.3832,-0.0388) mvmt=(-0.0973,0.0020,-0.1007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2581,3.8368,2.9811) mvmt=(-0.0973,0.0020,-0.1007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2581,3.8368,2.2112) mvmt=(-0.0973,0.0020,-0.8507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.242,7.663,96.231) lpos=(2.258,3.837,2.211) lprev=(2.355,3.835,3.062) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2115,0.8591,0.8308) mvmt=(-0.0020,-0.0973,-0.8507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2365,0.6190,0.7259) mvmt=(-0.0020,-0.0973,-0.8507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2365,0.6190,0.7259) out=(-0.2365,0.6190,1.4758) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.2581,3.8368,2.9611) mvmt=(-0.0973,0.0020,-0.1007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.242,7.663,96.981) lpos=(2.258,3.837,2.961) lprev=(2.355,3.835,3.062) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2581,3.8368,2.9611) mvmt=(-0.0973,0.0020,-0.1007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2581,3.8368,2.9611) mvmt=(-0.0973,0.0020,-0.1007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2115,0.8591,1.5808) mvmt=(-0.0020,-0.0973,-0.1007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2365,0.6190,1.4758) mvmt=(-0.0020,-0.0973,-0.1007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2365,-1.5922,0.1258) mvmt=(-0.0020,-0.0973,-0.1007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2769,3.8368,1.4811) mvmt=(-0.0973,0.0020,-0.1007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2769,3.8368,-1.5239) mvmt=(-0.0973,0.0020,-0.1007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0249,3.2493,-4.3839) mvmt=(-0.0973,0.0020,-0.1007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2081,-0.3832,-0.0389) mvmt=(-0.0973,0.0020,-0.1007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2581,3.8368,2.9811) mvmt=(-0.0973,0.0020,-0.1007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cell-transit] 0xA9B4014B -> 0xA9B4014A pos=(128.242,7.663,96.501) reason=resolver +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.1518,3.8389,2.8512) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.348,7.661,96.871) lpos=(2.152,3.839,2.851) lprev=(2.258,3.837,2.961) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1518,3.8389,2.8512) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.1518,3.8389,2.8512) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2137,0.7528,1.4709) mvmt=(-0.0022,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2387,0.5128,1.3659) mvmt=(-0.0022,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2387,-1.6985,0.0159) mvmt=(-0.0022,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3832,3.8389,1.3712) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3832,3.8389,-1.6338) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1018,-0.3811,-0.1488) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1518,3.8389,2.8712) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1518,3.8389,2.1012) mvmt=(-0.1062,0.0022,-0.8599) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.348,7.661,96.121) lpos=(2.152,3.839,2.101) lprev=(2.258,3.837,2.961) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2137,0.7528,0.7209) mvmt=(-0.0022,-0.1062,-0.8599) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2387,0.5128,0.6159) mvmt=(-0.0022,-0.1062,-0.8599) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2387,0.5128,0.6159) out=(-0.2387,0.5128,1.3659) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.1518,3.8389,2.8512) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.348,7.661,96.871) lpos=(2.152,3.839,2.851) lprev=(2.258,3.837,2.961) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1518,3.8389,2.8512) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.1518,3.8389,2.8512) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2137,0.7528,1.4709) mvmt=(-0.0022,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2387,0.5128,1.3659) mvmt=(-0.0022,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2387,-1.6985,0.0159) mvmt=(-0.0022,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3832,3.8389,1.3712) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3832,3.8389,-1.6338) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1018,-0.3811,-0.1488) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1518,3.8389,2.8712) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.0467,3.8411,2.7425) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.453,7.659,96.763) lpos=(2.047,3.841,2.743) lprev=(2.152,3.839,2.851) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0467,3.8411,2.7425) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.0467,3.8411,2.7425) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2159,0.6477,1.3622) mvmt=(-0.0022,-0.1051,-0.1087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2409,0.4077,1.2572) mvmt=(-0.0022,-0.1051,-0.1087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2409,-1.8035,-0.0928) mvmt=(-0.0022,-0.1051,-0.1087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.4883,3.8411,1.2625) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.4883,3.8411,-1.7425) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0767,0.5639,-0.2525) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9967,-0.3789,-0.2575) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0467,3.8411,2.7625) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0467,3.8411,1.9925) mvmt=(-0.1051,0.0022,-0.8587) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.453,7.659,96.013) lpos=(2.047,3.841,1.993) lprev=(2.152,3.839,2.851) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2159,0.6477,0.6122) mvmt=(-0.0022,-0.1051,-0.8587) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2409,0.4077,0.5072) mvmt=(-0.0022,-0.1051,-0.8587) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2409,0.4077,0.5072) out=(-0.2409,0.4077,1.2572) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.0467,3.8411,2.7425) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.453,7.659,96.763) lpos=(2.047,3.841,2.743) lprev=(2.152,3.839,2.851) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0467,3.8411,2.7425) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.0467,3.8411,2.7425) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2159,0.6477,1.3622) mvmt=(-0.0022,-0.1051,-0.1087) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2409,0.4077,1.2572) mvmt=(-0.0022,-0.1051,-0.1087) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2409,-1.8035,-0.0928) mvmt=(-0.0022,-0.1051,-0.1087) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.4883,3.8411,1.2625) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.4883,3.8411,-1.7425) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0767,0.5639,-0.2525) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9967,-0.3789,-0.2575) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0467,3.8411,2.7625) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cell-transit] 0xA9B4014A -> 0xA9B4013F pos=(128.453,7.659,96.283) reason=resolver +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.9405,3.8433,2.6326) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.559,7.657,96.653) lpos=(1.941,3.843,2.633) lprev=(2.047,3.841,2.743) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9405,3.8433,2.6326) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.9405,3.8433,2.6326) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2180,0.5415,1.2523) mvmt=(-0.0022,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2430,0.3015,1.1473) mvmt=(-0.0022,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2430,-1.9098,-0.2027) mvmt=(-0.0022,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5945,3.8433,1.1526) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9705,0.5661,-0.3624) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8905,-0.3767,-0.3674) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9405,3.8433,2.6526) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9405,3.8433,1.8826) mvmt=(-0.1062,0.0022,-0.8599) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.559,7.657,95.903) lpos=(1.941,3.843,1.883) lprev=(2.047,3.841,2.743) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2180,0.5415,0.5023) mvmt=(-0.0022,-0.1062,-0.8599) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2430,0.3015,0.3973) mvmt=(-0.0022,-0.1062,-0.8599) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2430,0.3015,0.3973) out=(-0.2430,0.3015,1.1473) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.9405,3.8433,2.6326) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.559,7.657,96.653) lpos=(1.941,3.843,2.633) lprev=(2.047,3.841,2.743) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9405,3.8433,2.6326) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.9405,3.8433,2.6326) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2180,0.5415,1.2523) mvmt=(-0.0022,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2430,0.3015,1.1473) mvmt=(-0.0022,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2430,-1.9098,-0.2027) mvmt=(-0.0022,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5945,3.8433,1.1526) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9705,0.5661,-0.3624) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8905,-0.3767,-0.3674) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9405,3.8433,2.6526) mvmt=(-0.1062,0.0022,-0.1099) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.8354,3.8455,2.5239) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.665,7.655,96.544) lpos=(1.835,3.845,2.524) lprev=(1.941,3.843,2.633) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.8354,3.8455,2.5239) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.8354,3.8455,2.5239) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2202,0.4364,1.1436) mvmt=(-0.0022,-0.1051,-0.1087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2452,0.1964,1.0386) mvmt=(-0.0022,-0.1051,-0.1087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2452,-2.0149,-0.3114) mvmt=(-0.0022,-0.1051,-0.1087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6996,3.8455,1.0439) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8654,0.5682,-0.4711) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7854,-0.3745,-0.4761) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8354,3.8455,2.5439) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8354,3.8455,1.7739) mvmt=(-0.1051,0.0022,-0.8587) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.665,7.655,95.794) lpos=(1.835,3.845,1.774) lprev=(1.941,3.843,2.633) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2202,0.4364,0.3936) mvmt=(-0.0022,-0.1051,-0.8587) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2452,0.1964,0.2886) mvmt=(-0.0022,-0.1051,-0.8587) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2452,0.1964,0.2886) out=(-0.2452,0.1964,1.0386) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.8354,3.8455,2.5239) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.665,7.655,96.544) lpos=(1.835,3.845,2.524) lprev=(1.941,3.843,2.633) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.8354,3.8455,2.5239) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.8354,3.8455,2.5239) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2202,0.4364,1.1436) mvmt=(-0.0022,-0.1051,-0.1087) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2452,0.1964,1.0386) mvmt=(-0.0022,-0.1051,-0.1087) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2452,-2.0149,-0.3114) mvmt=(-0.0022,-0.1051,-0.1087) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6996,3.8455,1.0439) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8654,0.5682,-0.4711) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7854,-0.3745,-0.4761) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8354,3.8455,2.5439) mvmt=(-0.1051,0.0022,-0.1087) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementStrafeRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7273,3.7106,2.4121) mvmt=(-0.1081,-0.1349,-0.1118) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.773,7.789,96.432) lpos=(1.727,3.711,2.412) lprev=(1.835,3.845,2.524) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7273,3.7106,2.4121) mvmt=(-0.1081,-0.1349,-0.1118) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0853,0.3283,1.0318) mvmt=(0.1349,-0.1081,-0.1118) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1103,0.0883,0.9268) mvmt=(0.1349,-0.1081,-0.1118) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1103,-2.1230,-0.4232) mvmt=(0.1349,-0.1081,-0.1118) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8077,3.7106,0.9321) mvmt=(-0.1081,-0.1349,-0.1118) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7573,0.4334,-0.5829) mvmt=(-0.1081,-0.1349,-0.1118) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6773,-0.5094,-0.5879) mvmt=(-0.1081,-0.1349,-0.1118) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7178,1.9153,2.4246) mvmt=(0.1121,0.1316,-0.1118) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7273,3.7106,2.4321) mvmt=(-0.1081,-0.1349,-0.1118) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7273,3.7106,1.6621) mvmt=(-0.1081,-0.1349,-0.8618) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.773,7.789,95.682) lpos=(1.727,3.711,1.662) lprev=(1.835,3.845,2.524) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0853,0.3283,0.2818) mvmt=(0.1349,-0.1081,-0.8618) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1103,0.0883,0.1768) mvmt=(0.1349,-0.1081,-0.8618) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1103,0.0883,0.1768) out=(-0.1103,0.0883,0.9268) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.7273,3.7106,2.4121) mvmt=(-0.1081,-0.1349,-0.1118) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.773,7.789,96.432) lpos=(1.727,3.711,2.412) lprev=(1.835,3.845,2.524) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7273,3.7106,2.4121) mvmt=(-0.1081,-0.1349,-0.1118) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0853,0.3283,1.0318) mvmt=(0.1349,-0.1081,-0.1118) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1103,0.0883,0.9268) mvmt=(0.1349,-0.1081,-0.1118) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1103,-2.1230,-0.4232) mvmt=(0.1349,-0.1081,-0.1118) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8077,3.7106,0.9321) mvmt=(-0.1081,-0.1349,-0.1118) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7573,0.4334,-0.5829) mvmt=(-0.1081,-0.1349,-0.1118) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6773,-0.5094,-0.5879) mvmt=(-0.1081,-0.1349,-0.1118) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7178,1.9153,2.4246) mvmt=(0.1121,0.1316,-0.1118) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7273,3.7106,2.4321) mvmt=(-0.1081,-0.1349,-0.1118) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.6228,3.5802,2.3040) mvmt=(-0.1045,-0.1304,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.877,7.920,96.324) lpos=(1.623,3.580,2.304) lprev=(1.727,3.711,2.412) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6228,3.5802,2.3040) mvmt=(-0.1045,-0.1304,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9550,0.2238,0.9237) mvmt=(0.1304,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0200,-0.0162,0.8187) mvmt=(0.1304,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0200,-2.2274,-0.5313) mvmt=(0.1304,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9122,3.5802,0.8240) mvmt=(-0.1045,-0.1304,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8262,2.0425,2.3165) mvmt=(0.1084,0.1271,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6228,3.5802,2.3240) mvmt=(-0.1045,-0.1304,-0.1081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6228,3.5802,1.5540) mvmt=(-0.1045,-0.1304,-0.8581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.877,7.920,95.574) lpos=(1.623,3.580,1.554) lprev=(1.727,3.711,2.412) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9550,0.2238,0.1737) mvmt=(0.1304,-0.1045,-0.8581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0200,-0.0162,0.0687) mvmt=(0.1304,-0.1045,-0.8581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0200,-0.0162,0.0687) out=(0.0200,-0.0162,0.8187) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.6228,3.5802,2.3040) mvmt=(-0.1045,-0.1304,-0.1081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.877,7.920,96.324) lpos=(1.623,3.580,2.304) lprev=(1.727,3.711,2.412) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6228,3.5802,2.3040) mvmt=(-0.1045,-0.1304,-0.1081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9550,0.2238,0.9237) mvmt=(0.1304,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0200,-0.0162,0.8187) mvmt=(0.1304,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0200,-2.2274,-0.5313) mvmt=(0.1304,-0.1045,-0.1081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9122,3.5802,0.8240) mvmt=(-0.1045,-0.1304,-0.1081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8262,2.0425,2.3165) mvmt=(0.1084,0.1271,-0.1081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6228,3.5802,2.3240) mvmt=(-0.1045,-0.1304,-0.1081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.6222,3.4467,2.3034) mvmt=(-0.0006,-0.1335,-0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.878,8.053,96.323) lpos=(1.622,3.447,2.303) lprev=(1.623,3.580,2.304) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6222,3.4467,2.3034) mvmt=(-0.0006,-0.1335,-0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8215,0.2232,0.9230) mvmt=(0.1335,-0.0006,-0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1535,-0.0168,0.8181) mvmt=(0.1335,-0.0006,-0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1535,-2.2281,-0.5320) mvmt=(0.1335,-0.0006,-0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9128,3.4467,0.8233) mvmt=(-0.0006,-0.1335,-0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6222,3.4467,2.3233) mvmt=(-0.0006,-0.1335,-0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6222,3.4467,1.5534) mvmt=(-0.0006,-0.1335,-0.7507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.878,8.053,95.573) lpos=(1.622,3.447,1.553) lprev=(1.623,3.580,2.304) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8215,0.2232,0.1730) mvmt=(0.1335,-0.0006,-0.7507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1535,-0.0168,0.0681) mvmt=(0.1335,-0.0006,-0.7507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1535,-0.0168,0.0681) out=(0.1535,-0.0168,0.8181) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.6222,3.4467,2.3034) mvmt=(-0.0006,-0.1335,-0.0007) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.878,8.053,96.323) lpos=(1.622,3.447,2.303) lprev=(1.623,3.580,2.304) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6222,3.4467,2.3034) mvmt=(-0.0006,-0.1335,-0.0007) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8215,0.2232,0.9230) mvmt=(0.1335,-0.0006,-0.0007) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1535,-0.0168,0.8181) mvmt=(0.1335,-0.0006,-0.0007) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1535,-2.2281,-0.5320) mvmt=(0.1335,-0.0006,-0.0007) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9128,3.4467,0.8233) mvmt=(-0.0006,-0.1335,-0.0007) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6222,3.4467,2.3233) mvmt=(-0.0006,-0.1335,-0.0007) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.6216,3.3128,2.3027) mvmt=(-0.0006,-0.1339,-0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.878,8.187,96.323) lpos=(1.622,3.313,2.303) lprev=(1.622,3.447,2.303) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6216,3.3128,2.3027) mvmt=(-0.0006,-0.1339,-0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6875,0.2225,0.9224) mvmt=(0.1339,-0.0006,-0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2875,-0.0175,0.8174) mvmt=(0.1339,-0.0006,-0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2875,-2.2287,-0.5326) mvmt=(0.1339,-0.0006,-0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9135,3.3128,0.8227) mvmt=(-0.0006,-0.1339,-0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6216,3.3128,2.3227) mvmt=(-0.0006,-0.1339,-0.0007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6216,3.3128,1.5527) mvmt=(-0.0006,-0.1339,-0.7507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.878,8.187,95.573) lpos=(1.622,3.313,1.553) lprev=(1.622,3.447,2.303) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6875,0.2225,0.1724) mvmt=(0.1339,-0.0006,-0.7507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2875,-0.0175,0.0674) mvmt=(0.1339,-0.0006,-0.7507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2875,-0.0175,0.0674) out=(0.2875,-0.0175,0.8174) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.6216,3.3128,2.3027) mvmt=(-0.0006,-0.1339,-0.0007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.878,8.187,96.323) lpos=(1.622,3.313,2.303) lprev=(1.622,3.447,2.303) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6216,3.3128,2.3027) mvmt=(-0.0006,-0.1339,-0.0007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6875,0.2225,0.9224) mvmt=(0.1339,-0.0006,-0.0007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2875,-0.0175,0.8174) mvmt=(0.1339,-0.0006,-0.0007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2875,-2.2287,-0.5326) mvmt=(0.1339,-0.0006,-0.0007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9135,3.3128,0.8227) mvmt=(-0.0006,-0.1339,-0.0007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6216,3.3128,2.3227) mvmt=(-0.0006,-0.1339,-0.0007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.6209,3.1864,2.3021) mvmt=(-0.0006,-0.1264,-0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.879,8.314,96.322) lpos=(1.621,3.186,2.302) lprev=(1.622,3.313,2.303) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6209,3.1864,2.3021) mvmt=(-0.0006,-0.1264,-0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6209,3.1864,2.3021) mvmt=(-0.0006,-0.1264,-0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.879,8.314,96.322) lpos=(1.621,3.186,2.302) lprev=(1.622,3.313,2.303) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6209,3.1864,2.3021) mvmt=(-0.0006,-0.1264,-0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5611,0.2219,0.9218) mvmt=(0.1264,-0.0006,-0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5611,0.2219,0.9218) out=(-0.5611,0.2219,1.2508) delta=(0.0000,0.0000,0.3290) deltaMag=0.3290 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4517 dpPos=0.2474 dpMove=-0.4243 iDist=0.5483 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.707,0.000,0.707) D=-158.994 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.6209,3.1864,2.6311) mvmt=(-0.0006,-0.1264,0.3284) collide=False insertType=0 objState=0x303 winterp=0.4517 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.879,8.314,96.651) lpos=(1.621,3.186,2.631) lprev=(1.622,3.313,2.303) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6209,3.1864,2.6311) mvmt=(-0.0006,-0.1264,0.3284) collide=False insertType=0 objState=0x303 winterp=0.4517 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.6209,3.1864,2.6311) mvmt=(-0.0006,-0.1264,0.3284) collide=False insertType=0 objState=0x303 winterp=0.4517 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5611,0.2219,1.2508) mvmt=(0.1264,-0.0006,0.3284) collide=False insertType=0 objState=0x303 winterp=0.4517 return=-1 +[push-back-disp] site=dispatch center=(0.4139,-0.0181,1.1458) mvmt=(0.1264,-0.0006,0.3284) collide=False insertType=0 objState=0x303 winterp=0.4517 return=-1 +[push-back-disp] site=dispatch center=(0.4139,-2.2293,-0.2042) mvmt=(0.1264,-0.0006,0.3284) collide=False insertType=0 objState=0x303 winterp=0.4517 return=-1 +[push-back-disp] site=dispatch center=(-3.9141,3.1864,1.1511) mvmt=(-0.0006,-0.1264,0.3284) collide=False insertType=0 objState=0x303 winterp=0.4517 return=-1 +[push-back-disp] site=dispatch center=(1.6209,3.1864,2.6511) mvmt=(-0.0006,-0.1264,0.3284) collide=False insertType=0 objState=0x303 winterp=0.4517 return=-1 +[push-back-disp] site=dispatch center=(1.6209,3.1864,2.6311) mvmt=(-0.0006,-0.1264,0.3284) collide=False insertType=1 objState=0x303 winterp=0.4517 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.879,8.314,96.651) lpos=(1.621,3.186,2.631) lprev=(1.622,3.313,2.303) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=Slid +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=4 halted=False +[push-back-disp] site=dispatch center=(1.6209,3.3128,2.3021) mvmt=(-0.0006,0.0000,-0.0006) collide=False insertType=0 objState=0x303 winterp=0.4517 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.879,8.187,96.322) lpos=(1.621,3.313,2.302) lprev=(1.622,3.313,2.303) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6209,3.3128,2.3021) mvmt=(-0.0006,0.0000,-0.0006) collide=False insertType=0 objState=0x303 winterp=0.4517 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6875,0.2219,0.9218) mvmt=(-0.0000,-0.0006,-0.0006) collide=False insertType=0 objState=0x303 winterp=0.4517 return=-1 +[push-back-disp] site=dispatch center=(0.2875,-0.0181,0.8168) mvmt=(0.0000,-0.0006,-0.0006) collide=False insertType=0 objState=0x303 winterp=0.4517 return=-1 +[push-back-disp] site=dispatch center=(0.2875,-2.2293,-0.5332) mvmt=(-0.0000,-0.0006,-0.0006) collide=False insertType=0 objState=0x303 winterp=0.4517 return=-1 +[push-back-disp] site=dispatch center=(-3.9141,3.3128,0.8221) mvmt=(-0.0006,0.0000,-0.0006) collide=False insertType=0 objState=0x303 winterp=0.4517 return=-1 +[push-back-disp] site=dispatch center=(1.6209,3.3128,2.3221) mvmt=(-0.0006,0.0000,-0.0006) collide=False insertType=0 objState=0x303 winterp=0.4517 return=-1 +[push-back-disp] site=dispatch center=(1.6209,3.3128,1.5521) mvmt=(-0.0006,0.0000,-0.7506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.879,8.187,95.572) lpos=(1.621,3.313,1.552) lprev=(1.622,3.313,2.303) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6875,0.2219,0.1718) mvmt=(-0.0000,-0.0006,-0.7506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2875,-0.0181,0.0668) mvmt=(0.0000,-0.0006,-0.7506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2875,-0.0181,0.0668) out=(0.2875,-0.0181,0.8168) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.707,0.000,0.707) D=-158.994 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.6209,3.3128,2.3021) mvmt=(-0.0006,0.0000,-0.0006) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.879,8.187,96.322) lpos=(1.621,3.313,2.302) lprev=(1.622,3.313,2.303) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6209,3.3128,2.3021) mvmt=(-0.0006,0.0000,-0.0006) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6875,0.2219,0.9218) mvmt=(-0.0000,-0.0006,-0.0006) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2875,-0.0181,0.8168) mvmt=(0.0000,-0.0006,-0.0006) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2875,-2.2293,-0.5332) mvmt=(-0.0000,-0.0006,-0.0006) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9141,3.3128,0.8221) mvmt=(-0.0006,0.0000,-0.0006) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6209,3.3128,2.3221) mvmt=(-0.0006,0.0000,-0.0006) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.6203,3.3128,2.3014) mvmt=(-0.0006,0.0000,-0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.880,8.187,96.321) lpos=(1.620,3.313,2.301) lprev=(1.621,3.313,2.302) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6203,3.3128,2.3014) mvmt=(-0.0006,0.0000,-0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6875,0.2213,0.9211) mvmt=(0.0000,-0.0006,-0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2875,-0.0187,0.8161) mvmt=(0.0000,-0.0006,-0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2875,-2.2299,-0.5339) mvmt=(0.0000,-0.0006,-0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9147,3.3128,0.8214) mvmt=(-0.0006,0.0000,-0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6203,3.3128,2.3214) mvmt=(-0.0006,0.0000,-0.0006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6203,3.3128,1.5514) mvmt=(-0.0006,0.0000,-0.7506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.880,8.187,95.571) lpos=(1.620,3.313,1.551) lprev=(1.621,3.313,2.302) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6875,0.2213,0.1711) mvmt=(0.0000,-0.0006,-0.7506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2875,-0.0187,0.0661) mvmt=(0.0000,-0.0006,-0.7506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2875,-0.0187,0.0661) out=(0.2875,-0.0187,0.8161) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.6203,3.3128,2.3014) mvmt=(-0.0006,0.0000,-0.0006) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.880,8.187,96.321) lpos=(1.620,3.313,2.301) lprev=(1.621,3.313,2.302) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6203,3.3128,2.3014) mvmt=(-0.0006,0.0000,-0.0006) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6875,0.2213,0.9211) mvmt=(0.0000,-0.0006,-0.0006) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2875,-0.0187,0.8161) mvmt=(0.0000,-0.0006,-0.0006) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2875,-2.2299,-0.5339) mvmt=(0.0000,-0.0006,-0.0006) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9147,3.3128,0.8214) mvmt=(-0.0006,0.0000,-0.0006) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6203,3.3128,2.3214) mvmt=(-0.0006,0.0000,-0.0006) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementBackup Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.5121,3.3150,2.1894) mvmt=(-0.1083,0.0022,-0.1120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.988,8.185,96.209) lpos=(1.512,3.315,2.189) lprev=(1.620,3.313,2.301) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6898,0.1131,0.8091) mvmt=(-0.0022,-0.1083,-0.1120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2852,-0.1269,0.7041) mvmt=(-0.0022,-0.1083,-0.1120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2852,-2.3382,-0.6459) mvmt=(-0.0022,-0.1083,-0.1120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.0229,3.3150,0.7094) mvmt=(-0.1083,0.0022,-0.1120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5121,3.3150,2.2094) mvmt=(-0.1083,0.0022,-0.1120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5121,3.3150,1.4394) mvmt=(-0.1083,0.0022,-0.8620) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.988,8.185,95.459) lpos=(1.512,3.315,1.439) lprev=(1.620,3.313,2.301) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6898,0.1131,0.0591) mvmt=(-0.0022,-0.1083,-0.8620) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2852,-0.1269,-0.0459) mvmt=(-0.0022,-0.1083,-0.8620) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2852,-0.1269,-0.0459) out=(0.2852,-0.1269,0.7041) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5121,3.3150,2.1894) mvmt=(-0.1083,0.0022,-0.1120) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.988,8.185,96.209) lpos=(1.512,3.315,2.189) lprev=(1.620,3.313,2.301) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6898,0.1131,0.8091) mvmt=(-0.0022,-0.1083,-0.1120) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2852,-0.1269,0.7041) mvmt=(-0.0022,-0.1083,-0.1120) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2852,-2.3382,-0.6459) mvmt=(-0.0022,-0.1083,-0.1120) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.0229,3.3150,0.7094) mvmt=(-0.1083,0.0022,-0.1120) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5121,3.3150,2.2094) mvmt=(-0.1083,0.0022,-0.1120) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.4066,3.3172,2.0803) mvmt=(-0.1055,0.0022,-0.1091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.093,8.183,96.100) lpos=(1.407,3.317,2.080) lprev=(1.512,3.315,2.189) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6919,0.0076,0.7000) mvmt=(-0.0022,-0.1055,-0.1091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2831,-0.2324,0.5950) mvmt=(-0.0022,-0.1055,-0.1091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2831,-2.4437,-0.7550) mvmt=(-0.0022,-0.1055,-0.1091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.1284,3.3172,0.6003) mvmt=(-0.1055,0.0022,-0.1091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4066,3.3172,2.1003) mvmt=(-0.1055,0.0022,-0.1091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4066,3.3172,1.3303) mvmt=(-0.1055,0.0022,-0.8591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.093,8.183,95.350) lpos=(1.407,3.317,1.330) lprev=(1.512,3.315,2.189) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6919,0.0076,-0.0500) mvmt=(-0.0022,-0.1055,-0.8591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2831,-0.2324,-0.1550) mvmt=(-0.0022,-0.1055,-0.8591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2831,-0.2324,-0.1550) out=(0.2831,-0.2324,0.5950) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.4066,3.3172,2.0803) mvmt=(-0.1055,0.0022,-0.1091) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.093,8.183,96.100) lpos=(1.407,3.317,2.080) lprev=(1.512,3.315,2.189) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6919,0.0076,0.7000) mvmt=(-0.0022,-0.1055,-0.1091) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2831,-0.2324,0.5950) mvmt=(-0.0022,-0.1055,-0.1091) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2831,-2.4437,-0.7550) mvmt=(-0.0022,-0.1055,-0.1091) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.1284,3.3172,0.6003) mvmt=(-0.1055,0.0022,-0.1091) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4066,3.3172,2.1003) mvmt=(-0.1055,0.0022,-0.1091) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.3003,3.3194,1.9704) mvmt=(-0.1063,0.0022,-0.1100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.200,8.181,95.990) lpos=(1.300,3.319,1.970) lprev=(1.407,3.317,2.080) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6941,-0.0987,0.5900) mvmt=(-0.0022,-0.1063,-0.1100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2809,-0.3387,0.4851) mvmt=(-0.0022,-0.1063,-0.1100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2809,-2.5500,-0.8650) mvmt=(-0.0022,-0.1063,-0.1100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.2347,3.3194,0.4903) mvmt=(-0.1063,0.0022,-0.1100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3003,3.3194,1.9903) mvmt=(-0.1063,0.0022,-0.1100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3003,3.3194,1.2204) mvmt=(-0.1063,0.0022,-0.8600) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.200,8.181,95.240) lpos=(1.300,3.319,1.220) lprev=(1.407,3.317,2.080) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6941,-0.0987,-0.1600) mvmt=(-0.0022,-0.1063,-0.8600) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2809,-0.3387,-0.2649) mvmt=(-0.0022,-0.1063,-0.8600) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2809,-0.3387,-0.2649) out=(0.2809,-0.3387,0.4851) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.3003,3.3194,1.9704) mvmt=(-0.1063,0.0022,-0.1100) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.200,8.181,95.990) lpos=(1.300,3.319,1.970) lprev=(1.407,3.317,2.080) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6941,-0.0987,0.5901) mvmt=(-0.0022,-0.1063,-0.1100) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2809,-0.3387,0.4851) mvmt=(-0.0022,-0.1063,-0.1100) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2809,-2.5500,-0.8649) mvmt=(-0.0022,-0.1063,-0.1100) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.2347,3.3194,0.4904) mvmt=(-0.1063,0.0022,-0.1100) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3003,3.3194,1.9904) mvmt=(-0.1063,0.0022,-0.1100) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.1961,3.3215,1.8626) mvmt=(-0.1042,0.0021,-0.1077) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.304,8.178,95.883) lpos=(1.196,3.322,1.863) lprev=(1.300,3.319,1.970) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6963,-0.2029,0.4823) mvmt=(-0.0021,-0.1042,-0.1077) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2787,-0.4429,0.3773) mvmt=(-0.0021,-0.1042,-0.1077) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2787,-2.6541,-0.9727) mvmt=(-0.0021,-0.1042,-0.1077) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.3389,3.3215,0.3826) mvmt=(-0.1042,0.0021,-0.1077) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1961,3.3215,1.8826) mvmt=(-0.1042,0.0021,-0.1077) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1961,3.3215,1.1126) mvmt=(-0.1042,0.0021,-0.8577) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.304,8.178,95.133) lpos=(1.196,3.322,1.113) lprev=(1.300,3.319,1.970) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6963,-0.2029,-0.2677) mvmt=(-0.0021,-0.1042,-0.8577) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2787,-0.4429,-0.3727) mvmt=(-0.0021,-0.1042,-0.8577) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2787,-0.4429,-0.3727) out=(0.2787,-0.4429,0.3773) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.1961,3.3215,1.8626) mvmt=(-0.1042,0.0021,-0.1077) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.304,8.178,95.883) lpos=(1.196,3.322,1.863) lprev=(1.300,3.319,1.970) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6963,-0.2029,0.4823) mvmt=(-0.0021,-0.1042,-0.1077) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2787,-0.4429,0.3773) mvmt=(-0.0021,-0.1042,-0.1077) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2787,-2.6541,-0.9727) mvmt=(-0.0021,-0.1042,-0.1077) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.3389,3.3215,0.3826) mvmt=(-0.1042,0.0021,-0.1077) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1961,3.3215,1.8826) mvmt=(-0.1042,0.0021,-0.1077) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.0923,3.3237,1.7552) mvmt=(-0.1038,0.0021,-0.1074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.408,8.176,95.775) lpos=(1.092,3.324,1.755) lprev=(1.196,3.322,1.863) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6984,-0.3067,0.3749) mvmt=(-0.0021,-0.1038,-0.1074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2766,-0.5467,0.2699) mvmt=(-0.0021,-0.1038,-0.1074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2766,-2.7579,-1.0801) mvmt=(-0.0021,-0.1038,-0.1074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0923,3.3237,1.7752) mvmt=(-0.1038,0.0021,-0.1074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0923,3.3237,1.0052) mvmt=(-0.1038,0.0021,-0.8574) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.408,8.176,95.025) lpos=(1.092,3.324,1.005) lprev=(1.196,3.322,1.863) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6984,-0.3067,-0.3751) mvmt=(-0.0021,-0.1038,-0.8574) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2766,-0.5467,-0.4801) mvmt=(-0.0021,-0.1038,-0.8574) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2766,-0.5467,-0.4801) out=(0.2766,-0.5467,0.2699) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.0923,3.3237,1.7552) mvmt=(-0.1038,0.0021,-0.1074) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.408,8.176,95.775) lpos=(1.092,3.324,1.755) lprev=(1.196,3.322,1.863) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6984,-0.3067,0.3749) mvmt=(-0.0021,-0.1038,-0.1074) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2766,-0.5467,0.2699) mvmt=(-0.0021,-0.1038,-0.1074) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2766,-2.7579,-1.0801) mvmt=(-0.0021,-0.1038,-0.1074) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0923,3.3237,1.7752) mvmt=(-0.1038,0.0021,-0.1074) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.9855,3.3259,1.6448) mvmt=(-0.1068,0.0022,-0.1105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.514,8.174,95.665) lpos=(0.986,3.326,1.645) lprev=(1.092,3.324,1.755) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7006,-0.4135,0.2645) mvmt=(-0.0022,-0.1068,-0.1105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2744,-0.6535,0.1595) mvmt=(-0.0022,-0.1068,-0.1105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2744,-2.8647,-1.1905) mvmt=(-0.0022,-0.1068,-0.1105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9855,3.3259,1.6648) mvmt=(-0.1068,0.0022,-0.1105) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9855,3.3259,0.8948) mvmt=(-0.1068,0.0022,-0.8605) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.514,8.174,94.915) lpos=(0.986,3.326,0.895) lprev=(1.092,3.324,1.755) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7006,-0.4135,-0.4855) mvmt=(-0.0022,-0.1068,-0.8605) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2744,-0.6535,-0.5905) mvmt=(-0.0022,-0.1068,-0.8605) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2744,-0.6535,-0.5905) out=(0.2744,-0.6535,0.1595) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.9855,3.3259,1.6448) mvmt=(-0.1068,0.0022,-0.1105) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.514,8.174,95.665) lpos=(0.986,3.326,1.645) lprev=(1.092,3.324,1.755) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7006,-0.4135,0.2645) mvmt=(-0.0022,-0.1068,-0.1105) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2744,-0.6535,0.1595) mvmt=(-0.0022,-0.1068,-0.1105) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2744,-2.8647,-1.1905) mvmt=(-0.0022,-0.1068,-0.1105) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9855,3.3259,1.6648) mvmt=(-0.1068,0.0022,-0.1105) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.8815,3.3280,1.5371) mvmt=(-0.1040,0.0021,-0.1076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.618,8.172,95.557) lpos=(0.882,3.328,1.537) lprev=(0.986,3.326,1.645) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7027,-0.5175,0.1568) mvmt=(-0.0021,-0.1040,-0.1076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2723,-0.7575,0.0518) mvmt=(-0.0021,-0.1040,-0.1076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2723,-2.9688,-1.2982) mvmt=(-0.0021,-0.1040,-0.1076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8815,3.3280,1.5571) mvmt=(-0.1040,0.0021,-0.1076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8815,3.3280,0.7871) mvmt=(-0.1040,0.0021,-0.8576) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.618,8.172,94.807) lpos=(0.882,3.328,0.787) lprev=(0.986,3.326,1.645) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7027,-0.5175,-0.5932) mvmt=(-0.0021,-0.1040,-0.8576) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2723,-0.7575,-0.6982) mvmt=(-0.0021,-0.1040,-0.8576) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2723,-0.7575,-0.6982) out=(0.2723,-0.7575,0.0518) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.8815,3.3280,1.5371) mvmt=(-0.1040,0.0021,-0.1076) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.618,8.172,95.557) lpos=(0.882,3.328,1.537) lprev=(0.986,3.326,1.645) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7027,-0.5175,0.1568) mvmt=(-0.0021,-0.1040,-0.1076) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2723,-0.7575,0.0518) mvmt=(-0.0021,-0.1040,-0.1076) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2723,-2.9688,-1.2982) mvmt=(-0.0021,-0.1040,-0.1076) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8815,3.3280,1.5571) mvmt=(-0.1040,0.0021,-0.1076) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.7771,3.3301,1.4292) mvmt=(-0.1044,0.0021,-0.1080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.723,8.170,95.449) lpos=(0.777,3.330,1.429) lprev=(0.882,3.328,1.537) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7049,-0.6219,0.0489) mvmt=(-0.0021,-0.1044,-0.1080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2701,-0.8619,-0.0561) mvmt=(-0.0021,-0.1044,-0.1080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2701,-3.0731,-1.4061) mvmt=(-0.0021,-0.1044,-0.1080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7771,3.3301,1.4492) mvmt=(-0.1044,0.0021,-0.1080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7771,3.3301,0.6792) mvmt=(-0.1044,0.0021,-0.8580) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.723,8.170,94.699) lpos=(0.777,3.330,0.679) lprev=(0.882,3.328,1.537) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7049,-0.6219,-0.7011) mvmt=(-0.0021,-0.1044,-0.8580) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2701,-0.8619,-0.8061) mvmt=(-0.0021,-0.1044,-0.8580) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2701,-0.8619,-0.8061) out=(0.2701,-0.8619,-0.0561) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.7771,3.3301,1.4292) mvmt=(-0.1044,0.0021,-0.1080) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.723,8.170,95.449) lpos=(0.777,3.330,1.429) lprev=(0.882,3.328,1.537) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7049,-0.6219,0.0489) mvmt=(-0.0021,-0.1044,-0.1080) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2701,-0.8619,-0.0561) mvmt=(-0.0021,-0.1044,-0.1080) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2701,-3.0731,-1.4061) mvmt=(-0.0021,-0.1044,-0.1080) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7771,3.3301,1.4492) mvmt=(-0.1044,0.0021,-0.1080) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.6717,3.3323,1.3201) mvmt=(-0.1054,0.0022,-0.1091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.828,8.168,95.340) lpos=(0.672,3.332,1.320) lprev=(0.777,3.330,1.429) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7071,-0.7273,-0.0602) mvmt=(-0.0022,-0.1054,-0.1091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2679,-0.9673,-0.1652) mvmt=(-0.0022,-0.1054,-0.1091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2679,-3.1786,-1.5152) mvmt=(-0.0022,-0.1054,-0.1091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6717,3.3323,1.3401) mvmt=(-0.1054,0.0022,-0.1091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6717,3.3323,0.5701) mvmt=(-0.1054,0.0022,-0.8591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.828,8.168,94.590) lpos=(0.672,3.332,0.570) lprev=(0.777,3.330,1.429) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7071,-0.7273,-0.8102) mvmt=(-0.0022,-0.1054,-0.8591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2679,-0.9673,-0.9152) mvmt=(-0.0022,-0.1054,-0.8591) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2679,-0.9673,-0.9152) out=(0.2679,-0.9673,-0.1652) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.6717,3.3323,1.3201) mvmt=(-0.1054,0.0022,-0.1091) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.828,8.168,95.340) lpos=(0.672,3.332,1.320) lprev=(0.777,3.330,1.429) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7071,-0.7273,-0.0602) mvmt=(-0.0022,-0.1054,-0.1091) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2679,-0.9673,-0.1652) mvmt=(-0.0022,-0.1054,-0.1091) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2679,-3.1786,-1.5152) mvmt=(-0.0022,-0.1054,-0.1091) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6717,3.3323,1.3401) mvmt=(-0.1054,0.0022,-0.1091) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] SelectLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.8835,3.3279,1.5392) mvmt=(0.2118,-0.0044,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.617,8.172,95.559) lpos=(0.883,3.328,1.539) lprev=(0.672,3.332,1.320) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7027,-0.5155,0.1589) mvmt=(0.0044,0.2118,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2723,-0.7555,0.0539) mvmt=(0.0044,0.2118,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2723,-2.9668,-1.2961) mvmt=(0.0044,0.2118,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5728,2.2723,1.5516) mvmt=(-0.2116,0.0108,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8835,3.3279,1.5592) mvmt=(0.2118,-0.0044,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8835,3.3279,0.7892) mvmt=(0.2118,-0.0044,-0.5309) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.617,8.172,94.809) lpos=(0.883,3.328,0.789) lprev=(0.672,3.332,1.320) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7027,-0.5155,-0.5911) mvmt=(0.0044,0.2118,-0.5309) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2723,-0.7555,-0.6961) mvmt=(0.0044,0.2118,-0.5309) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2723,-0.7555,-0.6961) out=(0.2723,-0.7555,0.0539) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.8835,3.3279,1.5392) mvmt=(0.2118,-0.0044,0.2191) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.617,8.172,95.559) lpos=(0.883,3.328,1.539) lprev=(0.672,3.332,1.320) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7027,-0.5155,0.1589) mvmt=(0.0044,0.2118,0.2191) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2723,-0.7555,0.0539) mvmt=(0.0044,0.2118,0.2191) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2723,-2.9668,-1.2961) mvmt=(0.0044,0.2118,0.2191) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5728,2.2723,1.5517) mvmt=(-0.2116,0.0108,0.2191) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8835,3.3279,1.5592) mvmt=(0.2118,-0.0044,0.2191) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.0817,3.3239,1.7442) mvmt=(0.1982,-0.0041,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.418,8.176,95.764) lpos=(1.082,3.324,1.744) lprev=(0.883,3.328,1.539) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6986,-0.3173,0.3639) mvmt=(0.0041,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2764,-0.5573,0.2589) mvmt=(0.0041,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2764,-2.7686,-1.0911) mvmt=(0.0041,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3749,2.2824,1.7567) mvmt=(-0.1980,0.0101,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0817,3.3239,1.7642) mvmt=(0.1982,-0.0041,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0817,3.3239,0.9942) mvmt=(0.1982,-0.0041,-0.5450) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.418,8.176,95.014) lpos=(1.082,3.324,0.994) lprev=(0.883,3.328,1.539) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6986,-0.3173,-0.3861) mvmt=(0.0041,0.1982,-0.5450) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2764,-0.5573,-0.4911) mvmt=(0.0041,0.1982,-0.5450) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2764,-0.5573,-0.4911) out=(0.2764,-0.5573,0.2589) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.0817,3.3239,1.7442) mvmt=(0.1982,-0.0041,0.2050) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.418,8.176,95.764) lpos=(1.082,3.324,1.744) lprev=(0.883,3.328,1.539) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6986,-0.3173,0.3639) mvmt=(0.0041,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2764,-0.5573,0.2589) mvmt=(0.0041,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2764,-2.7686,-1.0911) mvmt=(0.0041,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3749,2.2824,1.7566) mvmt=(-0.1980,0.0101,0.2050) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0817,3.3239,1.7642) mvmt=(0.1982,-0.0041,0.2050) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.2942,3.3195,1.9641) mvmt=(0.2126,-0.0044,0.2199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.206,8.180,95.984) lpos=(1.294,3.320,1.964) lprev=(1.082,3.324,1.744) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6943,-0.1048,0.5838) mvmt=(0.0044,0.2126,0.2199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2807,-0.3448,0.4788) mvmt=(0.0044,0.2126,0.2199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2807,-2.5560,-0.8712) mvmt=(0.0044,0.2126,0.2199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1625,2.2932,1.9765) mvmt=(-0.2123,0.0108,0.2199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2942,3.3195,1.9841) mvmt=(0.2126,-0.0044,0.2199) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2942,3.3195,1.2141) mvmt=(0.2126,-0.0044,-0.5301) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.206,8.180,95.234) lpos=(1.294,3.320,1.214) lprev=(1.082,3.324,1.744) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6943,-0.1048,-0.1662) mvmt=(0.0044,0.2126,-0.5301) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2807,-0.3448,-0.2712) mvmt=(0.0044,0.2126,-0.5301) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2807,-0.3448,-0.2712) out=(0.2807,-0.3448,0.4788) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.2942,3.3195,1.9641) mvmt=(0.2126,-0.0044,0.2199) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.206,8.180,95.984) lpos=(1.294,3.320,1.964) lprev=(1.082,3.324,1.744) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6943,-0.1048,0.5838) mvmt=(0.0044,0.2126,0.2199) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2807,-0.3448,0.4788) mvmt=(0.0044,0.2126,0.2199) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2807,-2.5560,-0.8712) mvmt=(0.0044,0.2126,0.2199) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1625,2.2932,1.9765) mvmt=(-0.2123,0.0108,0.2199) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2942,3.3195,1.9841) mvmt=(0.2126,-0.0044,0.2199) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.5071,3.3151,2.1843) mvmt=(0.2128,-0.0044,0.2202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.993,8.185,96.204) lpos=(1.507,3.315,2.184) lprev=(1.294,3.320,1.964) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6899,0.1081,0.8040) mvmt=(0.0044,0.2128,0.2202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2851,-0.1319,0.6990) mvmt=(0.0044,0.2128,0.2202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2851,-2.3432,-0.6510) mvmt=(0.0044,0.2128,0.2202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.0279,3.3151,0.7043) mvmt=(0.2128,-0.0044,0.2202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9499,2.3040,2.1967) mvmt=(-0.2126,0.0108,0.2202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5071,3.3151,2.2043) mvmt=(0.2128,-0.0044,0.2202) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5071,3.3151,1.4343) mvmt=(0.2128,-0.0044,-0.5298) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.993,8.185,95.454) lpos=(1.507,3.315,1.434) lprev=(1.294,3.320,1.964) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6899,0.1081,0.0540) mvmt=(0.0044,0.2128,-0.5298) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2851,-0.1319,-0.0510) mvmt=(0.0044,0.2128,-0.5298) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2851,-0.1319,-0.0510) out=(0.2851,-0.1319,0.6990) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5071,3.3151,2.1843) mvmt=(0.2128,-0.0044,0.2202) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.993,8.185,96.204) lpos=(1.507,3.315,2.184) lprev=(1.294,3.320,1.964) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6899,0.1081,0.8040) mvmt=(0.0044,0.2128,0.2202) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2851,-0.1319,0.6990) mvmt=(0.0044,0.2128,0.2202) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2851,-2.3432,-0.6510) mvmt=(0.0044,0.2128,0.2202) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.0279,3.3151,0.7043) mvmt=(0.2128,-0.0044,0.2202) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9499,2.3040,2.1967) mvmt=(-0.2126,0.0108,0.2202) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5071,3.3151,2.2043) mvmt=(0.2128,-0.0044,0.2202) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7171,3.3108,2.4016) mvmt=(0.2100,-0.0043,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.783,8.189,96.422) lpos=(1.717,3.311,2.402) lprev=(1.507,3.315,2.184) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7171,3.3108,2.4016) mvmt=(0.2100,-0.0043,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6856,0.3181,1.0212) mvmt=(0.0043,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2894,0.0781,0.9163) mvmt=(0.0043,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2894,-2.1331,-0.4338) mvmt=(0.0043,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8179,3.3108,0.9215) mvmt=(0.2100,-0.0043,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7171,3.3108,2.4215) mvmt=(0.2100,-0.0043,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7171,3.3108,1.6516) mvmt=(0.2100,-0.0043,-0.5327) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.783,8.189,95.672) lpos=(1.717,3.311,1.652) lprev=(1.507,3.315,2.184) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6856,0.3181,0.2712) mvmt=(0.0043,0.2100,-0.5327) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2894,0.0781,0.1663) mvmt=(0.0043,0.2100,-0.5327) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2894,0.0781,0.1663) out=(0.2894,0.0781,0.9163) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.7171,3.3108,2.4016) mvmt=(0.2100,-0.0043,0.2173) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.783,8.189,96.422) lpos=(1.717,3.311,2.402) lprev=(1.507,3.315,2.184) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7171,3.3108,2.4016) mvmt=(0.2100,-0.0043,0.2173) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6856,0.3181,1.0213) mvmt=(0.0043,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2894,0.0781,0.9163) mvmt=(0.0043,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2894,-2.1331,-0.4337) mvmt=(0.0043,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8179,3.3108,0.9216) mvmt=(0.2100,-0.0043,0.2173) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7171,3.3108,2.4216) mvmt=(0.2100,-0.0043,0.2173) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.9289,3.3064,2.6207) mvmt=(0.2118,-0.0044,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.571,8.194,96.641) lpos=(1.929,3.306,2.621) lprev=(1.717,3.311,2.402) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9289,3.3064,2.6207) mvmt=(0.2118,-0.0044,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.9289,3.3064,2.6207) mvmt=(0.2118,-0.0044,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6812,0.5299,1.2403) mvmt=(0.0044,0.2118,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2938,0.2899,1.1354) mvmt=(0.0044,0.2118,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2938,-1.9214,-0.2147) mvmt=(0.0044,0.2118,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6061,3.3064,1.1406) mvmt=(0.2118,-0.0044,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9289,3.3064,2.6406) mvmt=(0.2118,-0.0044,0.2191) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9289,3.3064,1.8707) mvmt=(0.2118,-0.0044,-0.5309) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.571,8.194,95.891) lpos=(1.929,3.306,1.871) lprev=(1.717,3.311,2.402) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6812,0.5299,0.4903) mvmt=(0.0044,0.2118,-0.5309) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2938,0.2899,0.3854) mvmt=(0.0044,0.2118,-0.5309) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2938,0.2899,0.3854) out=(0.2938,0.2899,1.1354) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.9289,3.3064,2.6207) mvmt=(0.2118,-0.0044,0.2191) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.571,8.194,96.641) lpos=(1.929,3.306,2.621) lprev=(1.717,3.311,2.402) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9289,3.3064,2.6207) mvmt=(0.2118,-0.0044,0.2191) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.9289,3.3064,2.6207) mvmt=(0.2118,-0.0044,0.2191) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6812,0.5299,1.2403) mvmt=(0.0044,0.2118,0.2191) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2938,0.2899,1.1354) mvmt=(0.0044,0.2118,0.2191) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2938,-1.9214,-0.2147) mvmt=(0.0044,0.2118,0.2191) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6061,3.3064,1.1406) mvmt=(0.2118,-0.0044,0.2191) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9289,3.3064,2.6406) mvmt=(0.2118,-0.0044,0.2191) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.1384,3.3021,2.8373) mvmt=(0.2095,-0.0043,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.362,8.198,96.857) lpos=(2.138,3.302,2.837) lprev=(1.929,3.306,2.621) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1384,3.3021,2.8373) mvmt=(0.2095,-0.0043,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.1384,3.3021,2.8373) mvmt=(0.2095,-0.0043,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6769,0.7394,1.4570) mvmt=(0.0043,0.2095,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2981,0.4994,1.3520) mvmt=(0.0043,0.2095,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2981,-1.7119,0.0020) mvmt=(0.0043,0.2095,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3966,3.3021,1.3573) mvmt=(0.2095,-0.0043,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3966,3.3021,-1.6477) mvmt=(0.2095,-0.0043,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1684,0.0249,-0.1577) mvmt=(0.2095,-0.0043,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0904,2.7146,-4.5077) mvmt=(0.2095,-0.0043,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0884,-0.9179,-0.1627) mvmt=(0.2095,-0.0043,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1384,3.3021,2.8573) mvmt=(0.2095,-0.0043,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1384,3.3021,2.0873) mvmt=(0.2095,-0.0043,-0.5333) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.362,8.198,96.107) lpos=(2.138,3.302,2.087) lprev=(1.929,3.306,2.621) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6769,0.7394,0.7070) mvmt=(0.0043,0.2095,-0.5333) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2981,0.4994,0.6020) mvmt=(0.0043,0.2095,-0.5333) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2981,0.4994,0.6020) out=(0.2981,0.4994,1.3520) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.1384,3.3021,2.8373) mvmt=(0.2095,-0.0043,0.2167) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.362,8.198,96.857) lpos=(2.138,3.302,2.837) lprev=(1.929,3.306,2.621) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1384,3.3021,2.8373) mvmt=(0.2095,-0.0043,0.2167) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.1384,3.3021,2.8373) mvmt=(0.2095,-0.0043,0.2167) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6769,0.7394,1.4570) mvmt=(0.0043,0.2095,0.2167) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2981,0.4994,1.3520) mvmt=(0.0043,0.2095,0.2167) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2981,-1.7119,0.0020) mvmt=(0.0043,0.2095,0.2167) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3966,3.3021,1.3573) mvmt=(0.2095,-0.0043,0.2167) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3966,3.3021,-1.6477) mvmt=(0.2095,-0.0043,0.2167) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1684,0.0249,-0.1577) mvmt=(0.2095,-0.0043,0.2167) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0904,2.7146,-4.5077) mvmt=(0.2095,-0.0043,0.2167) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0884,-0.9179,-0.1627) mvmt=(0.2095,-0.0043,0.2167) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1384,3.3021,2.8573) mvmt=(0.2095,-0.0043,0.2167) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cell-transit] 0xA9B4013F -> 0xA9B4014A pos=(128.362,8.198,96.377) reason=resolver +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.3497,3.2978,3.0560) mvmt=(0.2114,-0.0043,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.150,8.202,97.076) lpos=(2.350,3.298,3.056) lprev=(2.138,3.302,2.837) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3497,3.2978,3.0560) mvmt=(0.2114,-0.0043,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3497,3.2978,3.0560) mvmt=(0.2114,-0.0043,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.1853,3.2978,-1.4290) mvmt=(0.2114,-0.0043,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3797,0.0206,0.0610) mvmt=(0.2114,-0.0043,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3017,2.7103,-4.2890) mvmt=(0.2114,-0.0043,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9333,2.7103,-4.2890) mvmt=(0.2114,-0.0043,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2997,-0.9222,0.0560) mvmt=(0.2114,-0.0043,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6725,0.9507,1.6757) mvmt=(0.0043,0.2114,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3025,0.7107,1.5707) mvmt=(0.0043,0.2114,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3025,-1.5005,0.2207) mvmt=(0.0043,0.2114,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1853,3.2978,1.5760) mvmt=(0.2114,-0.0043,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3497,3.2978,3.0760) mvmt=(0.2114,-0.0043,0.2187) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3497,3.2978,2.3060) mvmt=(0.2114,-0.0043,-0.5313) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.150,8.202,96.326) lpos=(2.350,3.298,2.306) lprev=(2.138,3.302,2.837) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3497,3.2978,2.3060) mvmt=(0.2114,-0.0043,-0.5313) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6725,0.9507,0.9257) mvmt=(0.0043,0.2114,-0.5313) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3025,0.7107,0.8207) mvmt=(0.0043,0.2114,-0.5313) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3025,0.7107,0.8207) out=(0.3025,0.7107,1.5707) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.3497,3.2978,3.0560) mvmt=(0.2114,-0.0043,0.2187) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.150,8.202,97.076) lpos=(2.350,3.298,3.056) lprev=(2.138,3.302,2.837) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3497,3.2978,3.0560) mvmt=(0.2114,-0.0043,0.2187) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3497,3.2978,3.0560) mvmt=(0.2114,-0.0043,0.2187) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.1853,3.2978,-1.4290) mvmt=(0.2114,-0.0043,0.2187) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3797,0.0206,0.0610) mvmt=(0.2114,-0.0043,0.2187) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3017,2.7103,-4.2890) mvmt=(0.2114,-0.0043,0.2187) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9333,2.7103,-4.2890) mvmt=(0.2114,-0.0043,0.2187) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2997,-0.9222,0.0560) mvmt=(0.2114,-0.0043,0.2187) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6725,0.9507,1.6757) mvmt=(0.0043,0.2114,0.2187) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3025,0.7107,1.5707) mvmt=(0.0043,0.2114,0.2187) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3025,-1.5005,0.2207) mvmt=(0.0043,0.2114,0.2187) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1853,3.2978,1.5760) mvmt=(0.2114,-0.0043,0.2187) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3497,3.2978,3.0760) mvmt=(0.2114,-0.0043,0.2187) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cell-transit] 0xA9B4014A -> 0xA9B4014B pos=(128.150,8.202,96.596) reason=resolver +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.5589,3.2935,3.2723) mvmt=(0.2091,-0.0043,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.941,8.207,97.292) lpos=(2.559,3.293,3.272) lprev=(2.350,3.298,3.056) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5589,3.2935,3.2723) mvmt=(0.2091,-0.0043,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5589,3.2935,3.2723) mvmt=(0.2091,-0.0043,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.9761,3.2935,-1.2127) mvmt=(0.2091,-0.0043,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5889,0.0163,0.2773) mvmt=(0.2091,-0.0043,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5109,2.7060,-4.0727) mvmt=(0.2091,-0.0043,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7241,2.7060,-4.0727) mvmt=(0.2091,-0.0043,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5089,-0.9265,0.2723) mvmt=(0.2091,-0.0043,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6682,1.1599,1.8920) mvmt=(0.0043,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3068,0.9199,1.7870) mvmt=(0.0043,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3068,-1.2914,0.4370) mvmt=(0.0043,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9761,3.2935,1.7923) mvmt=(0.2091,-0.0043,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5589,3.2935,3.2923) mvmt=(0.2091,-0.0043,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5589,3.2935,2.5223) mvmt=(0.2091,-0.0043,-0.5337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.941,8.207,96.542) lpos=(2.559,3.293,2.522) lprev=(2.350,3.298,3.056) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5589,3.2935,2.5223) mvmt=(0.2091,-0.0043,-0.5337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5589,3.2935,2.5223) mvmt=(0.2091,-0.0043,-0.5337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6682,1.1599,1.1420) mvmt=(0.0043,0.2091,-0.5337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3068,0.9199,1.0370) mvmt=(0.0043,0.2091,-0.5337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3068,0.9199,1.0370) out=(0.3068,0.9199,1.7870) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.5589,3.2935,3.2723) mvmt=(0.2091,-0.0043,0.2163) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.941,8.207,97.292) lpos=(2.559,3.293,3.272) lprev=(2.350,3.298,3.056) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5589,3.2935,3.2723) mvmt=(0.2091,-0.0043,0.2163) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.5589,3.2935,3.2723) mvmt=(0.2091,-0.0043,0.2163) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.9761,3.2935,-1.2127) mvmt=(0.2091,-0.0043,0.2163) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5889,0.0163,0.2773) mvmt=(0.2091,-0.0043,0.2163) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5109,2.7060,-4.0727) mvmt=(0.2091,-0.0043,0.2163) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7241,2.7060,-4.0727) mvmt=(0.2091,-0.0043,0.2163) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5089,-0.9265,0.2723) mvmt=(0.2091,-0.0043,0.2163) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6682,1.1599,1.8920) mvmt=(0.0043,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3068,0.9199,1.7870) mvmt=(0.0043,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3068,-1.2914,0.4370) mvmt=(0.0043,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9761,3.2935,1.7923) mvmt=(0.2091,-0.0043,0.2163) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5589,3.2935,3.2923) mvmt=(0.2091,-0.0043,0.2163) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.7630,3.2893,3.4835) mvmt=(0.2041,-0.0042,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.737,8.211,97.503) lpos=(2.763,3.289,3.483) lprev=(2.559,3.293,3.272) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7630,3.2893,3.4835) mvmt=(0.2041,-0.0042,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7720,3.2893,-1.0015) mvmt=(0.2041,-0.0042,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7150,2.7018,-3.8615) mvmt=(0.2041,-0.0042,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5200,2.7018,-3.8615) mvmt=(0.2041,-0.0042,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6640,1.3640,2.1032) mvmt=(0.0042,0.2041,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3110,1.1240,1.9982) mvmt=(0.0042,0.2041,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3110,-1.0873,0.6482) mvmt=(0.0042,0.2041,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7720,3.2893,2.0035) mvmt=(0.2041,-0.0042,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7630,3.2893,3.5035) mvmt=(0.2041,-0.0042,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7630,3.2893,2.7335) mvmt=(0.2041,-0.0042,-0.5389) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.737,8.211,96.753) lpos=(2.763,3.289,2.733) lprev=(2.559,3.293,3.272) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7630,3.2893,2.7335) mvmt=(0.2041,-0.0042,-0.5389) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7630,3.2893,2.7335) mvmt=(0.2041,-0.0042,-0.5389) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6640,1.3640,1.3532) mvmt=(0.0042,0.2041,-0.5389) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3110,1.1240,1.2482) mvmt=(0.0042,0.2041,-0.5389) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3110,1.1240,1.2482) out=(0.3110,1.1240,1.9800) delta=(0.0000,0.0000,0.7318) deltaMag=0.7318 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.0242 dpPos=-0.2518 dpMove=-0.7500 iDist=0.9758 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.7630,3.2893,3.4653) mvmt=(0.2041,-0.0042,0.1930) collide=False insertType=0 objState=0x303 winterp=0.0242 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.737,8.211,97.485) lpos=(2.763,3.289,3.465) lprev=(2.559,3.293,3.272) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7630,3.2893,3.4653) mvmt=(0.2041,-0.0042,0.1930) collide=False insertType=0 objState=0x303 winterp=0.0242 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7720,3.2893,-1.0197) mvmt=(0.2041,-0.0042,0.1930) collide=False insertType=0 objState=0x303 winterp=0.0242 return=-1 +[push-back-disp] site=dispatch center=(3.7150,2.7018,-3.8797) mvmt=(0.2041,-0.0042,0.1930) collide=False insertType=0 objState=0x303 winterp=0.0242 return=-1 +[push-back-disp] site=dispatch center=(-2.5200,2.7018,-3.8797) mvmt=(0.2041,-0.0042,0.1930) collide=False insertType=0 objState=0x303 winterp=0.0242 return=-1 +[push-back-disp] site=dispatch center=(-0.6640,1.3640,2.0850) mvmt=(0.0042,0.2041,0.1930) collide=False insertType=0 objState=0x303 winterp=0.0242 return=-1 +[push-back-disp] site=dispatch center=(0.3110,1.1240,1.9800) mvmt=(0.0042,0.2041,0.1930) collide=False insertType=0 objState=0x303 winterp=0.0242 return=-1 +[push-back-disp] site=dispatch center=(0.3110,-1.0873,0.6300) mvmt=(0.0042,0.2041,0.1930) collide=False insertType=0 objState=0x303 winterp=0.0242 return=-1 +[push-back-disp] site=dispatch center=(-2.7720,3.2893,1.9853) mvmt=(0.2041,-0.0042,0.1930) collide=False insertType=0 objState=0x303 winterp=0.0242 return=-1 +[push-back-disp] site=dispatch center=(2.7630,3.2893,3.4853) mvmt=(0.2041,-0.0042,0.1930) collide=False insertType=0 objState=0x303 winterp=0.0242 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.1899,3.2850,3.4653) mvmt=(0.4269,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.310,8.215,97.485) lpos=(3.190,3.285,3.465) lprev=(2.763,3.289,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1899,3.2850,3.4653) mvmt=(0.4269,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.3451,3.2850,-1.0197) mvmt=(0.4269,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1419,2.6976,-3.8797) mvmt=(0.4269,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0931,2.6975,-3.8797) mvmt=(0.4269,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1899,3.2850,3.4853) mvmt=(0.4269,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1899,3.2850,2.7153) mvmt=(0.4269,-0.0042,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.310,8.215,96.735) lpos=(3.190,3.285,2.715) lprev=(2.763,3.289,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1899,3.2850,2.7153) mvmt=(0.4269,-0.0042,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.1899,3.2850,2.7153) mvmt=(0.4269,-0.0042,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6598,1.7909,1.3350) mvmt=(0.0042,0.4269,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3152,1.5509,1.2300) mvmt=(0.0042,0.4269,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3152,1.5509,1.2300) out=(0.3152,1.5509,1.9800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(3.1899,3.2850,3.4653) mvmt=(0.4269,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.310,8.215,97.485) lpos=(3.190,3.285,3.465) lprev=(2.763,3.289,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1899,3.2850,3.4653) mvmt=(0.4269,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.3451,3.2850,-1.0197) mvmt=(0.4269,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1419,2.6976,-3.8797) mvmt=(0.4269,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0931,2.6975,-3.8797) mvmt=(0.4269,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1899,3.2850,3.4853) mvmt=(0.4269,-0.0042,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.6244,3.2807,3.4653) mvmt=(0.4344,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.876,8.219,97.485) lpos=(3.624,3.281,3.465) lprev=(3.190,3.285,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.6244,3.2807,3.4653) mvmt=(0.4344,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.9107,3.2807,-1.0197) mvmt=(0.4344,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5763,2.6932,-3.8797) mvmt=(0.4344,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6586,2.6932,-3.8797) mvmt=(0.4344,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6244,3.2807,3.4853) mvmt=(0.4344,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6244,3.2807,2.7153) mvmt=(0.4344,-0.0043,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.876,8.219,96.735) lpos=(3.624,3.281,2.715) lprev=(3.190,3.285,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.6244,3.2807,2.7153) mvmt=(0.4344,-0.0043,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.6244,3.2807,2.7153) mvmt=(0.4344,-0.0043,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6555,2.2253,1.3350) mvmt=(0.0043,0.4344,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3195,1.9853,1.2300) mvmt=(0.0043,0.4344,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3195,1.9853,1.2300) out=(0.3195,1.9853,1.9800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(3.6244,3.2807,3.4653) mvmt=(0.4344,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.876,8.219,97.485) lpos=(3.624,3.281,3.465) lprev=(3.190,3.285,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.6244,3.2807,3.4653) mvmt=(0.4344,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.9107,3.2807,-1.0197) mvmt=(0.4344,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5763,2.6932,-3.8797) mvmt=(0.4344,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6586,2.6932,-3.8797) mvmt=(0.4344,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6244,3.2807,3.4853) mvmt=(0.4344,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.0524,3.2765,3.4653) mvmt=(0.4280,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.448,8.224,97.485) lpos=(4.052,3.276,3.465) lprev=(3.624,3.281,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.0524,3.2765,3.4653) mvmt=(0.4280,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4826,3.2765,-1.0197) mvmt=(0.4280,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2306,2.6890,-3.8797) mvmt=(0.4280,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0524,3.2765,3.4853) mvmt=(0.4280,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0524,3.2765,2.7153) mvmt=(0.4280,-0.0043,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.448,8.224,96.735) lpos=(4.052,3.276,2.715) lprev=(3.624,3.281,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.0524,3.2765,2.7153) mvmt=(0.4280,-0.0043,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.0524,3.2765,2.7153) mvmt=(0.4280,-0.0043,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6512,2.6534,1.3350) mvmt=(0.0043,0.4280,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3238,2.4134,1.2300) mvmt=(0.0043,0.4280,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3238,0.2021,-0.1200) mvmt=(0.0043,0.4280,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3238,0.2021,-0.1200) out=(0.3238,0.2021,0.6300) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.1500 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(4.0524,3.2765,3.4653) mvmt=(0.4280,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.448,8.224,97.485) lpos=(4.052,3.276,3.465) lprev=(3.624,3.281,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.0524,3.2765,3.4653) mvmt=(0.4280,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4826,3.2765,-1.0197) mvmt=(0.4280,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2306,2.6890,-3.8797) mvmt=(0.4280,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0524,3.2765,3.4853) mvmt=(0.4280,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.4918,3.2721,3.4653) mvmt=(0.4394,-0.0044,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.008,8.228,97.485) lpos=(4.492,3.272,3.465) lprev=(4.052,3.276,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.4918,3.2721,3.4653) mvmt=(0.4394,-0.0044,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0432,3.2721,-1.0197) mvmt=(0.4394,-0.0044,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7912,2.6846,-3.8797) mvmt=(0.4394,-0.0044,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4918,3.2721,3.4853) mvmt=(0.4394,-0.0044,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4918,3.2721,2.7153) mvmt=(0.4394,-0.0044,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.008,8.228,96.735) lpos=(4.492,3.272,2.715) lprev=(4.052,3.276,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.4918,3.2721,2.7153) mvmt=(0.4394,-0.0044,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.4918,3.2721,2.7153) mvmt=(0.4394,-0.0044,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.4918,3.2721,2.7153) out=(4.4918,3.2721,3.4800) delta=(0.0000,0.0000,0.7647) deltaMag=0.7647 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->-0.0196 dpPos=-0.2847 dpMove=-0.7500 iDist=1.0196 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(4.4918,3.2721,3.4800) mvmt=(0.4394,-0.0044,0.0147) collide=False insertType=0 objState=0x303 winterp=-0.0196 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.008,8.228,97.500) lpos=(4.492,3.272,3.480) lprev=(4.052,3.276,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.4918,3.2721,3.4800) mvmt=(0.4394,-0.0044,0.0147) collide=False insertType=0 objState=0x303 winterp=-0.0196 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0432,3.2721,-1.0050) mvmt=(0.4394,-0.0044,0.0147) collide=False insertType=0 objState=0x303 winterp=-0.0196 return=-1 +[push-back-disp] site=dispatch center=(-0.7912,2.6846,-3.8650) mvmt=(0.4394,-0.0044,0.0147) collide=False insertType=0 objState=0x303 winterp=-0.0196 return=-1 +[push-back-disp] site=dispatch center=(4.4918,3.2721,3.5000) mvmt=(0.4394,-0.0044,0.0147) collide=False insertType=0 objState=0x303 winterp=-0.0196 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.9299,3.2678,3.4800) mvmt=(0.4381,-0.0044,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.570,8.232,97.500) lpos=(4.930,3.268,3.480) lprev=(4.492,3.272,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.9299,3.2678,3.4800) mvmt=(0.4381,-0.0044,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6051,3.2678,-1.0050) mvmt=(0.4381,-0.0044,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3531,2.6803,-3.8650) mvmt=(0.4381,-0.0044,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9299,3.2678,3.5000) mvmt=(0.4381,-0.0044,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9299,3.2678,2.7300) mvmt=(0.4381,-0.0044,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.570,8.232,96.750) lpos=(4.930,3.268,2.730) lprev=(4.492,3.272,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.9299,3.2678,2.7300) mvmt=(0.4381,-0.0044,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.9299,3.2678,2.7300) mvmt=(0.4381,-0.0044,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.9299,3.2678,2.7300) out=(4.9299,3.2678,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(4.9299,3.2678,3.4800) mvmt=(0.4381,-0.0044,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.570,8.232,97.500) lpos=(4.930,3.268,3.480) lprev=(4.492,3.272,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.9299,3.2678,3.4800) mvmt=(0.4381,-0.0044,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6051,3.2678,-1.0050) mvmt=(0.4381,-0.0044,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3531,2.6803,-3.8650) mvmt=(0.4381,-0.0044,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9299,3.2678,3.5000) mvmt=(0.4381,-0.0044,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.3604,3.2635,3.4800) mvmt=(0.4304,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.140,8.237,97.500) lpos=(5.360,3.263,3.480) lprev=(4.930,3.268,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(5.3604,3.2635,3.4800) mvmt=(0.4304,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.1746,3.2635,-1.0050) mvmt=(0.4304,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0774,2.6760,-3.8650) mvmt=(0.4304,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.3604,3.2635,3.5000) mvmt=(0.4304,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9719,1.6318,3.4950) mvmt=(-0.0399,-0.4286,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.3604,3.2635,2.7300) mvmt=(0.4304,-0.0043,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.140,8.237,96.750) lpos=(5.360,3.263,2.730) lprev=(4.930,3.268,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(5.3604,3.2635,2.7300) mvmt=(0.4304,-0.0043,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(5.3604,3.2635,2.7300) mvmt=(0.4304,-0.0043,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(5.3604,3.2635,2.7300) out=(5.3604,3.2635,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(5.3604,3.2635,3.4800) mvmt=(0.4304,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.140,8.237,97.500) lpos=(5.360,3.263,3.480) lprev=(4.930,3.268,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(5.3604,3.2635,3.4800) mvmt=(0.4304,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.1746,3.2635,-1.0050) mvmt=(0.4304,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0774,2.6760,-3.8650) mvmt=(0.4304,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(5.3604,3.2635,3.5000) mvmt=(0.4304,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9719,1.6318,3.4950) mvmt=(-0.0399,-0.4286,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.7960,3.2592,3.4800) mvmt=(0.4356,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.7960,3.2592,3.4800) mvmt=(0.4356,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(124.704,8.241,97.500) lpos=(5.796,3.259,3.480) lprev=(5.360,3.263,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(5.7960,3.2592,3.4800) mvmt=(0.4356,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.2610,3.2592,-1.0050) mvmt=(0.4356,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5130,2.6717,-3.8650) mvmt=(0.4356,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.7960,3.2592,3.5000) mvmt=(0.4356,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9316,1.1981,3.4950) mvmt=(-0.0403,-0.4338,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(124.704,8.241,97.500) lpos=(5.796,3.259,3.480) lprev=(5.360,3.263,3.480) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(5.3604,3.2592,3.4800) mvmt=(0.0000,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.140,8.241,97.500) lpos=(5.360,3.259,3.480) lprev=(5.360,3.263,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(5.3604,3.2592,3.4800) mvmt=(0.0000,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.1746,3.2592,-1.0050) mvmt=(0.0000,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0774,2.6717,-3.8650) mvmt=(0.0000,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.3604,3.2592,3.5000) mvmt=(0.0000,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.3604,3.2592,2.7300) mvmt=(0.0000,-0.0043,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.140,8.241,96.750) lpos=(5.360,3.259,2.730) lprev=(5.360,3.263,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(5.3604,3.2592,2.7300) mvmt=(0.0000,-0.0043,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(5.3604,3.2592,2.7300) mvmt=(0.0000,-0.0043,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(5.3604,3.2592,2.7300) out=(5.3604,3.2592,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(5.3604,3.2592,3.4800) mvmt=(0.0000,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.140,8.241,97.500) lpos=(5.360,3.259,3.480) lprev=(5.360,3.263,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(5.3604,3.2592,3.4800) mvmt=(0.0000,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.1746,3.2592,-1.0050) mvmt=(0.0000,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0774,2.6717,-3.8650) mvmt=(0.0000,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(5.3604,3.2592,3.5000) mvmt=(0.0000,-0.0043,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.9625,3.1698,3.4800) mvmt=(-0.3978,-0.0894,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.537,8.330,97.500) lpos=(4.963,3.170,3.480) lprev=(5.360,3.259,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.9625,3.1698,3.4800) mvmt=(-0.3978,-0.0894,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5725,3.1698,-1.0050) mvmt=(-0.3978,-0.0894,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3205,2.5823,-3.8650) mvmt=(-0.3978,-0.0894,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9625,3.1698,3.5000) mvmt=(-0.3978,-0.0894,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9114,2.0361,3.4950) mvmt=(-0.0562,0.4039,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9625,3.1698,2.7300) mvmt=(-0.3978,-0.0894,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.537,8.330,96.750) lpos=(4.963,3.170,2.730) lprev=(5.360,3.259,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.9625,3.1698,2.7300) mvmt=(-0.3978,-0.0894,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.9625,3.1698,2.7300) mvmt=(-0.3978,-0.0894,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.9625,3.1698,2.7300) out=(4.9625,3.1698,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(4.9625,3.1698,3.4800) mvmt=(-0.3978,-0.0894,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.537,8.330,97.500) lpos=(4.963,3.170,3.480) lprev=(5.360,3.259,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.9625,3.1698,3.4800) mvmt=(-0.3978,-0.0894,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5725,3.1698,-1.0050) mvmt=(-0.3978,-0.0894,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3205,2.5823,-3.8650) mvmt=(-0.3978,-0.0894,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9625,3.1698,3.5000) mvmt=(-0.3978,-0.0894,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9114,2.0361,3.4950) mvmt=(-0.0562,0.4039,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.5704,3.0816,3.4800) mvmt=(-0.3921,-0.0881,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.930,8.418,97.500) lpos=(4.570,3.082,3.480) lprev=(4.963,3.170,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5704,3.0816,3.4800) mvmt=(-0.3921,-0.0881,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9646,3.0816,-1.0050) mvmt=(-0.3921,-0.0881,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7126,2.4942,-3.8650) mvmt=(-0.3921,-0.0881,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5704,3.0817,3.5000) mvmt=(-0.3921,-0.0881,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8560,2.4342,3.4950) mvmt=(-0.0554,0.3981,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5704,3.0816,2.7300) mvmt=(-0.3921,-0.0881,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.930,8.418,96.750) lpos=(4.570,3.082,2.730) lprev=(4.963,3.170,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5704,3.0816,2.7300) mvmt=(-0.3921,-0.0881,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.5704,3.0816,2.7300) mvmt=(-0.3921,-0.0881,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.5704,3.0816,2.7300) out=(4.5704,3.0816,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(4.5704,3.0816,3.4800) mvmt=(-0.3921,-0.0881,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.930,8.418,97.500) lpos=(4.570,3.082,3.480) lprev=(4.963,3.170,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5704,3.0816,3.4800) mvmt=(-0.3921,-0.0881,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9646,3.0816,-1.0050) mvmt=(-0.3921,-0.0881,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7126,2.4942,-3.8650) mvmt=(-0.3921,-0.0881,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5704,3.0817,3.5000) mvmt=(-0.3921,-0.0881,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8560,2.4342,3.4950) mvmt=(-0.0554,0.3981,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.1753,2.9929,3.4800) mvmt=(-0.3951,-0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.325,8.507,97.500) lpos=(4.175,2.993,3.480) lprev=(4.570,3.082,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.1753,2.9929,3.4800) mvmt=(-0.3951,-0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3597,2.9929,-1.0050) mvmt=(-0.3951,-0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1077,2.4054,-3.8650) mvmt=(-0.3951,-0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1753,2.9929,3.5000) mvmt=(-0.3951,-0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1753,2.9929,2.7300) mvmt=(-0.3951,-0.0888,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.325,8.507,96.750) lpos=(4.175,2.993,2.730) lprev=(4.570,3.082,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.1753,2.9929,2.7300) mvmt=(-0.3951,-0.0888,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.1753,2.9929,2.7300) mvmt=(-0.3951,-0.0888,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.1753,2.9929,2.7300) out=(4.1753,2.9929,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(4.1753,2.9929,3.4800) mvmt=(-0.3951,-0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.325,8.507,97.500) lpos=(4.175,2.993,3.480) lprev=(4.570,3.082,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.1753,2.9929,3.4800) mvmt=(-0.3951,-0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3597,2.9929,-1.0050) mvmt=(-0.3951,-0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1077,2.4054,-3.8650) mvmt=(-0.3951,-0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1753,2.9929,3.5000) mvmt=(-0.3951,-0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.7265,2.8920,3.4800) mvmt=(-0.4488,-0.1008,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.773,8.608,97.500) lpos=(3.727,2.892,3.480) lprev=(4.175,2.993,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.7265,2.8920,3.4800) mvmt=(-0.4488,-0.1008,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.8085,2.8920,-1.0050) mvmt=(-0.4488,-0.1008,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5565,2.3045,-3.8650) mvmt=(-0.4488,-0.1008,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7265,2.8920,3.5000) mvmt=(-0.4488,-0.1008,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7265,2.8920,2.7300) mvmt=(-0.4488,-0.1008,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.773,8.608,96.750) lpos=(3.727,2.892,2.730) lprev=(4.175,2.993,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.7265,2.8920,2.7300) mvmt=(-0.4488,-0.1008,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.7265,2.8920,2.7300) mvmt=(-0.4488,-0.1008,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.7265,2.8920,2.7300) out=(3.7265,2.8920,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.7265,2.8920,3.4800) mvmt=(-0.4488,-0.1008,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.773,8.608,97.500) lpos=(3.727,2.892,3.480) lprev=(4.175,2.993,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.7265,2.8920,3.4800) mvmt=(-0.4488,-0.1008,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.8085,2.8920,-1.0050) mvmt=(-0.4488,-0.1008,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5565,2.3045,-3.8650) mvmt=(-0.4488,-0.1008,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7265,2.8920,3.5000) mvmt=(-0.4488,-0.1008,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.2815,2.7920,3.4800) mvmt=(-0.4450,-0.1000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.218,8.708,97.500) lpos=(3.282,2.792,3.480) lprev=(3.727,2.892,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.2815,2.7920,3.4800) mvmt=(-0.4450,-0.1000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.2535,2.7920,-1.0050) mvmt=(-0.4450,-0.1000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0015,2.2045,-3.8650) mvmt=(-0.4450,-0.1000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2815,2.7920,3.5000) mvmt=(-0.4450,-0.1000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2815,2.7920,2.7300) mvmt=(-0.4450,-0.1000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.218,8.708,96.750) lpos=(3.282,2.792,2.730) lprev=(3.727,2.892,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.2815,2.7920,2.7300) mvmt=(-0.4450,-0.1000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.2815,2.7920,2.7300) mvmt=(-0.4450,-0.1000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.2815,2.7920,2.7300) out=(3.2815,2.7920,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.2815,2.7920,3.4800) mvmt=(-0.4450,-0.1000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.218,8.708,97.500) lpos=(3.282,2.792,3.480) lprev=(3.727,2.892,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.2815,2.7920,3.4800) mvmt=(-0.4450,-0.1000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.2535,2.7920,-1.0050) mvmt=(-0.4450,-0.1000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0015,2.2045,-3.8650) mvmt=(-0.4450,-0.1000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2815,2.7920,3.5000) mvmt=(-0.4450,-0.1000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.8839,2.7027,3.4800) mvmt=(-0.3976,-0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.616,8.797,97.500) lpos=(2.884,2.703,3.480) lprev=(3.282,2.792,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8839,2.7027,3.4800) mvmt=(-0.3976,-0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6511,2.7027,-1.0050) mvmt=(-0.3976,-0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8359,2.1152,-3.8650) mvmt=(-0.3976,-0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3991,2.1152,-3.8650) mvmt=(-0.3976,-0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8839,2.7027,3.5000) mvmt=(-0.3976,-0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8839,2.7027,2.7300) mvmt=(-0.3976,-0.0893,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.616,8.797,96.750) lpos=(2.884,2.703,2.730) lprev=(3.282,2.792,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8839,2.7027,2.7300) mvmt=(-0.3976,-0.0893,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8839,2.7027,2.7300) mvmt=(-0.3976,-0.0893,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.8839,2.7027,2.7300) out=(2.8839,2.7027,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(2.8839,2.7027,3.4800) mvmt=(-0.3976,-0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.616,8.797,97.500) lpos=(2.884,2.703,3.480) lprev=(3.282,2.792,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8839,2.7027,3.4800) mvmt=(-0.3976,-0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6511,2.7027,-1.0050) mvmt=(-0.3976,-0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8359,2.1152,-3.8650) mvmt=(-0.3976,-0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3991,2.1152,-3.8650) mvmt=(-0.3976,-0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8839,2.7027,3.5000) mvmt=(-0.3976,-0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.4627,2.6081,3.4800) mvmt=(-0.4212,-0.0946,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.037,8.892,97.500) lpos=(2.463,2.608,3.480) lprev=(2.884,2.703,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4627,2.6081,3.4800) mvmt=(-0.4212,-0.0946,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0723,2.6081,-1.0050) mvmt=(-0.4212,-0.0946,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4147,2.0206,-3.8650) mvmt=(-0.4212,-0.0946,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8203,2.0206,-3.8650) mvmt=(-0.4212,-0.0946,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4627,2.6081,3.5000) mvmt=(-0.4212,-0.0946,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4627,2.6081,2.7300) mvmt=(-0.4212,-0.0946,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.037,8.892,96.750) lpos=(2.463,2.608,2.730) lprev=(2.884,2.703,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4627,2.6081,2.7300) mvmt=(-0.4212,-0.0946,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.4627,2.6081,2.7300) mvmt=(-0.4212,-0.0946,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.4627,2.6081,2.7300) out=(2.4627,2.6081,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(2.4627,2.6081,3.4800) mvmt=(-0.4212,-0.0946,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.037,8.892,97.500) lpos=(2.463,2.608,3.480) lprev=(2.884,2.703,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4627,2.6081,3.4800) mvmt=(-0.4212,-0.0946,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.0723,2.6081,-1.0050) mvmt=(-0.4212,-0.0946,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4147,2.0206,-3.8650) mvmt=(-0.4212,-0.0946,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8203,2.0206,-3.8650) mvmt=(-0.4212,-0.0946,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4627,2.6081,3.5000) mvmt=(-0.4212,-0.0946,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.0561,2.5167,3.4800) mvmt=(-0.4067,-0.0914,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.444,8.983,97.500) lpos=(2.056,2.517,3.480) lprev=(2.463,2.608,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0561,2.5167,3.4800) mvmt=(-0.4067,-0.0914,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.4789,2.5167,-1.0050) mvmt=(-0.4067,-0.0914,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0861,-0.7605,0.4850) mvmt=(-0.4067,-0.0914,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0081,1.9292,-3.8650) mvmt=(-0.4067,-0.0914,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2269,1.9292,-3.8650) mvmt=(-0.4067,-0.0914,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0561,2.5167,3.5000) mvmt=(-0.4067,-0.0914,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0561,2.5167,2.7300) mvmt=(-0.4067,-0.0914,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.444,8.983,96.750) lpos=(2.056,2.517,2.730) lprev=(2.463,2.608,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0561,2.5167,2.7300) mvmt=(-0.4067,-0.0914,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.0561,2.5167,2.7300) mvmt=(-0.4067,-0.0914,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.0561,2.5167,2.7300) out=(2.0561,2.5167,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(2.0561,2.5167,3.4800) mvmt=(-0.4067,-0.0914,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.444,8.983,97.500) lpos=(2.056,2.517,3.480) lprev=(2.463,2.608,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0561,2.5167,3.4800) mvmt=(-0.4067,-0.0914,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.4789,2.5167,-1.0050) mvmt=(-0.4067,-0.0914,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0861,-0.7605,0.4850) mvmt=(-0.4067,-0.0914,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0081,1.9292,-3.8650) mvmt=(-0.4067,-0.0914,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2269,1.9292,-3.8650) mvmt=(-0.4067,-0.0914,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0561,2.5167,3.5000) mvmt=(-0.4067,-0.0914,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.6518,2.4259,3.4800) mvmt=(-0.4043,-0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.848,9.074,97.500) lpos=(1.652,2.426,3.480) lprev=(2.056,2.517,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6518,2.4259,3.4800) mvmt=(-0.4043,-0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.8832,2.4259,-1.0050) mvmt=(-0.4043,-0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6818,-0.8514,0.4850) mvmt=(-0.4043,-0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6038,1.8384,-3.8650) mvmt=(-0.4043,-0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6312,1.8384,-3.8650) mvmt=(-0.4043,-0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6018,-1.7941,0.4800) mvmt=(-0.4043,-0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6518,2.4259,3.5000) mvmt=(-0.4043,-0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6518,2.4259,2.7300) mvmt=(-0.4043,-0.0908,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.848,9.074,96.750) lpos=(1.652,2.426,2.730) lprev=(2.056,2.517,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6518,2.4259,2.7300) mvmt=(-0.4043,-0.0908,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.6518,2.4259,2.7300) mvmt=(-0.4043,-0.0908,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(1.6518,2.4259,2.7300) out=(1.6518,2.4259,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(1.6518,2.4259,3.4800) mvmt=(-0.4043,-0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.848,9.074,97.500) lpos=(1.652,2.426,3.480) lprev=(2.056,2.517,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6518,2.4259,3.4800) mvmt=(-0.4043,-0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.8832,2.4259,-1.0050) mvmt=(-0.4043,-0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6818,-0.8514,0.4850) mvmt=(-0.4043,-0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6038,1.8384,-3.8650) mvmt=(-0.4043,-0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6312,1.8384,-3.8650) mvmt=(-0.4043,-0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6018,-1.7941,0.4800) mvmt=(-0.4043,-0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6518,2.4259,3.5000) mvmt=(-0.4043,-0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.6275,2.0312,3.4800) mvmt=(-0.0242,-0.3947,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.872,9.469,97.500) lpos=(1.628,2.031,3.480) lprev=(1.652,2.426,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6275,2.0312,3.4800) mvmt=(-0.0242,-0.3947,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.9075,2.0312,-1.0050) mvmt=(-0.0242,-0.3947,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6575,-1.2461,0.4850) mvmt=(-0.0242,-0.3947,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5795,1.4437,-3.8650) mvmt=(-0.0242,-0.3947,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6555,1.4437,-3.8650) mvmt=(-0.0242,-0.3947,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5775,-2.1888,0.4800) mvmt=(-0.0242,-0.3947,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6275,2.0312,3.5000) mvmt=(-0.0242,-0.3947,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6275,2.0312,2.7300) mvmt=(-0.0242,-0.3947,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.872,9.469,96.750) lpos=(1.628,2.031,2.730) lprev=(1.652,2.426,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6275,2.0312,2.7300) mvmt=(-0.0242,-0.3947,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.6275,2.0312,2.7300) mvmt=(-0.0242,-0.3947,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(1.6275,2.0312,2.7300) out=(1.6275,2.0312,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(1.6275,2.0312,3.4800) mvmt=(-0.0242,-0.3947,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.872,9.469,97.500) lpos=(1.628,2.031,3.480) lprev=(1.652,2.426,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6275,2.0312,3.4800) mvmt=(-0.0242,-0.3947,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.9075,2.0312,-1.0050) mvmt=(-0.0242,-0.3947,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6575,-1.2461,0.4850) mvmt=(-0.0242,-0.3947,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5795,1.4437,-3.8650) mvmt=(-0.0242,-0.3947,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6555,1.4437,-3.8650) mvmt=(-0.0242,-0.3947,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5775,-2.1888,0.4800) mvmt=(-0.0242,-0.3947,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6275,2.0312,3.5000) mvmt=(-0.0242,-0.3947,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.6413,1.5721,3.4800) mvmt=(0.0138,-0.4590,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.859,9.928,97.500) lpos=(1.641,1.572,3.480) lprev=(1.628,2.031,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6413,1.5721,3.4800) mvmt=(0.0138,-0.4590,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.8937,1.5721,-1.0050) mvmt=(0.0138,-0.4590,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6713,-1.7051,0.4850) mvmt=(0.0138,-0.4590,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5933,0.9846,-3.8650) mvmt=(0.0138,-0.4590,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6417,0.9846,-3.8650) mvmt=(0.0138,-0.4590,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5913,-2.6479,0.4800) mvmt=(0.0138,-0.4590,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6413,1.5721,3.5000) mvmt=(0.0138,-0.4590,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6413,1.5721,2.7300) mvmt=(0.0138,-0.4590,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.859,9.928,96.750) lpos=(1.641,1.572,2.730) lprev=(1.628,2.031,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6413,1.5721,2.7300) mvmt=(0.0138,-0.4590,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.6413,1.5721,2.7300) mvmt=(0.0138,-0.4590,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(1.6413,1.5721,2.7300) out=(1.6413,1.5721,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(1.6413,1.5721,3.4800) mvmt=(0.0138,-0.4590,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.859,9.928,97.500) lpos=(1.641,1.572,3.480) lprev=(1.628,2.031,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6413,1.5721,3.4800) mvmt=(0.0138,-0.4590,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.8937,1.5721,-1.0050) mvmt=(0.0138,-0.4590,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6713,-1.7051,0.4850) mvmt=(0.0138,-0.4590,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5933,0.9846,-3.8650) mvmt=(0.0138,-0.4590,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6417,0.9846,-3.8650) mvmt=(0.0138,-0.4590,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5913,-2.6479,0.4800) mvmt=(0.0138,-0.4590,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6413,1.5721,3.5000) mvmt=(0.0138,-0.4590,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.6665,1.1196,3.4800) mvmt=(0.0252,-0.4525,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.833,10.380,97.500) lpos=(1.667,1.120,3.480) lprev=(1.641,1.572,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6665,1.1196,3.4800) mvmt=(0.0252,-0.4525,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.8685,1.1196,-1.0050) mvmt=(0.0252,-0.4525,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6965,-2.1576,0.4850) mvmt=(0.0252,-0.4525,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6185,0.5321,-3.8650) mvmt=(0.0252,-0.4525,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6165,0.5321,-3.8650) mvmt=(0.0252,-0.4525,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6165,-3.1004,0.4800) mvmt=(0.0252,-0.4525,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6665,1.1196,3.5000) mvmt=(0.0252,-0.4525,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6665,1.1196,2.7300) mvmt=(0.0252,-0.4525,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.833,10.380,96.750) lpos=(1.667,1.120,2.730) lprev=(1.641,1.572,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6665,1.1196,2.7300) mvmt=(0.0252,-0.4525,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.6665,1.1196,2.7300) mvmt=(0.0252,-0.4525,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(1.6665,1.1196,2.7300) out=(1.6665,1.1196,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(1.6665,1.1196,3.4800) mvmt=(0.0252,-0.4525,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.833,10.380,97.500) lpos=(1.667,1.120,3.480) lprev=(1.641,1.572,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6665,1.1196,3.4800) mvmt=(0.0252,-0.4525,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.8685,1.1196,-1.0050) mvmt=(0.0252,-0.4525,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6965,-2.1576,0.4850) mvmt=(0.0252,-0.4525,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6185,0.5321,-3.8650) mvmt=(0.0252,-0.4525,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6165,0.5321,-3.8650) mvmt=(0.0252,-0.4525,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6165,-3.1004,0.4800) mvmt=(0.0252,-0.4525,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6665,1.1196,3.5000) mvmt=(0.0252,-0.4525,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.6885,0.7249,3.4800) mvmt=(0.0220,-0.3948,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.811,10.775,97.500) lpos=(1.689,0.725,3.480) lprev=(1.667,1.120,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6885,0.7249,3.4800) mvmt=(0.0220,-0.3948,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.8465,0.7249,-1.0050) mvmt=(0.0220,-0.3948,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7185,-2.5523,0.4850) mvmt=(0.0220,-0.3948,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6405,0.1374,-3.8650) mvmt=(0.0220,-0.3948,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5945,0.1374,-3.8650) mvmt=(0.0220,-0.3948,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6885,0.7249,3.5000) mvmt=(0.0220,-0.3948,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6885,0.7249,2.7300) mvmt=(0.0220,-0.3948,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.811,10.775,96.750) lpos=(1.689,0.725,2.730) lprev=(1.667,1.120,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6885,0.7249,2.7300) mvmt=(0.0220,-0.3948,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.6885,0.7249,2.7300) mvmt=(0.0220,-0.3948,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(1.6885,0.7249,2.7300) out=(1.6885,0.7249,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(1.6885,0.7249,3.4800) mvmt=(0.0220,-0.3948,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.811,10.775,97.500) lpos=(1.689,0.725,3.480) lprev=(1.667,1.120,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6885,0.7249,3.4800) mvmt=(0.0220,-0.3948,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.8465,0.7249,-1.0050) mvmt=(0.0220,-0.3948,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7185,-2.5523,0.4850) mvmt=(0.0220,-0.3948,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6405,0.1374,-3.8650) mvmt=(0.0220,-0.3948,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5945,0.1374,-3.8650) mvmt=(0.0220,-0.3948,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6885,0.7249,3.5000) mvmt=(0.0220,-0.3948,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7134,0.2782,3.4800) mvmt=(0.0249,-0.4467,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.787,11.222,97.500) lpos=(1.713,0.278,3.480) lprev=(1.689,0.725,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7134,0.2782,3.4800) mvmt=(0.0249,-0.4467,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.8216,0.2782,-1.0050) mvmt=(0.0249,-0.4467,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7434,-2.9990,0.4850) mvmt=(0.0249,-0.4467,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6654,-0.3093,-3.8650) mvmt=(0.0249,-0.4467,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5696,-0.3093,-3.8650) mvmt=(0.0249,-0.4467,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7134,0.2782,3.5000) mvmt=(0.0249,-0.4467,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7134,0.2782,2.7300) mvmt=(0.0249,-0.4467,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.787,11.222,96.750) lpos=(1.713,0.278,2.730) lprev=(1.689,0.725,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7134,0.2782,2.7300) mvmt=(0.0249,-0.4467,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7134,0.2782,2.7300) mvmt=(0.0249,-0.4467,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(1.7134,0.2782,2.7300) out=(1.7134,0.2782,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(1.7134,0.2782,3.4800) mvmt=(0.0249,-0.4467,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.787,11.222,97.500) lpos=(1.713,0.278,3.480) lprev=(1.689,0.725,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7134,0.2782,3.4800) mvmt=(0.0249,-0.4467,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.8216,0.2782,-1.0050) mvmt=(0.0249,-0.4467,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7434,-2.9990,0.4850) mvmt=(0.0249,-0.4467,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6654,-0.3093,-3.8650) mvmt=(0.0249,-0.4467,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5696,-0.3093,-3.8650) mvmt=(0.0249,-0.4467,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7134,0.2782,3.5000) mvmt=(0.0249,-0.4467,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7379,-0.1603,3.4800) mvmt=(0.0244,-0.4385,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.762,11.660,97.500) lpos=(1.738,-0.160,3.480) lprev=(1.713,0.278,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7379,-0.1603,3.4800) mvmt=(0.0244,-0.4385,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.7971,-0.1603,-1.0050) mvmt=(0.0244,-0.4385,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6899,-0.7478,-3.8650) mvmt=(0.0244,-0.4385,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5451,-0.7478,-3.8650) mvmt=(0.0244,-0.4385,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7379,-0.1603,3.5000) mvmt=(0.0244,-0.4385,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7379,-0.1603,2.7300) mvmt=(0.0244,-0.4385,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.762,11.660,96.750) lpos=(1.738,-0.160,2.730) lprev=(1.713,0.278,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7379,-0.1603,2.7300) mvmt=(0.0244,-0.4385,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7379,-0.1603,2.7300) mvmt=(0.0244,-0.4385,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(1.7379,-0.1603,2.7300) out=(1.7379,-0.1603,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(1.7379,-0.1603,3.4800) mvmt=(0.0244,-0.4385,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.762,11.660,97.500) lpos=(1.738,-0.160,3.480) lprev=(1.713,0.278,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7379,-0.1603,3.4800) mvmt=(0.0244,-0.4385,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.7971,-0.1603,-1.0050) mvmt=(0.0244,-0.4385,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6899,-0.7478,-3.8650) mvmt=(0.0244,-0.4385,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5451,-0.7478,-3.8650) mvmt=(0.0244,-0.4385,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7379,-0.1603,3.5000) mvmt=(0.0244,-0.4385,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7633,-0.6173,3.4800) mvmt=(0.0255,-0.4569,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.737,12.117,97.500) lpos=(1.763,-0.617,3.480) lprev=(1.738,-0.160,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7633,-0.6173,3.4800) mvmt=(0.0255,-0.4569,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.7717,-0.6173,-1.0050) mvmt=(0.0255,-0.4569,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7153,-1.2048,-3.8650) mvmt=(0.0255,-0.4569,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5197,-1.2048,-3.8650) mvmt=(0.0255,-0.4569,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7633,-0.6173,3.5000) mvmt=(0.0255,-0.4569,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7633,-0.6173,2.7300) mvmt=(0.0255,-0.4569,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.737,12.117,96.750) lpos=(1.763,-0.617,2.730) lprev=(1.738,-0.160,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7633,-0.6173,2.7300) mvmt=(0.0255,-0.4569,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7633,-0.6173,2.7300) mvmt=(0.0255,-0.4569,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(1.7633,-0.6173,2.7300) out=(1.7633,-0.6173,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(1.7633,-0.6173,3.4800) mvmt=(0.0255,-0.4569,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.737,12.117,97.500) lpos=(1.763,-0.617,3.480) lprev=(1.738,-0.160,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7633,-0.6173,3.4800) mvmt=(0.0255,-0.4569,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.7717,-0.6173,-1.0050) mvmt=(0.0255,-0.4569,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7153,-1.2048,-3.8650) mvmt=(0.0255,-0.4569,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5197,-1.2048,-3.8650) mvmt=(0.0255,-0.4569,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7633,-0.6173,3.5000) mvmt=(0.0255,-0.4569,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7883,-1.0655,3.4800) mvmt=(0.0250,-0.4482,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.712,12.565,97.500) lpos=(1.788,-1.065,3.480) lprev=(1.763,-0.617,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7883,-1.0655,3.4800) mvmt=(0.0250,-0.4482,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.7467,-1.0655,-1.0050) mvmt=(0.0250,-0.4482,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7403,-1.6530,-3.8650) mvmt=(0.0250,-0.4482,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.4947,-1.6530,-3.8650) mvmt=(0.0250,-0.4482,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7883,-1.0655,3.5000) mvmt=(0.0250,-0.4482,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7883,-1.0655,2.7300) mvmt=(0.0250,-0.4482,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.712,12.565,96.750) lpos=(1.788,-1.065,2.730) lprev=(1.763,-0.617,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7883,-1.0655,2.7300) mvmt=(0.0250,-0.4482,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.7883,-1.0655,2.7300) mvmt=(0.0250,-0.4482,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(1.7883,-1.0655,2.7300) out=(1.7883,-1.0655,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(1.7883,-1.0655,3.4800) mvmt=(0.0250,-0.4482,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.712,12.565,97.500) lpos=(1.788,-1.065,3.480) lprev=(1.763,-0.617,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7883,-1.0655,3.4800) mvmt=(0.0250,-0.4482,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.7467,-1.0655,-1.0050) mvmt=(0.0250,-0.4482,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7403,-1.6530,-3.8650) mvmt=(0.0250,-0.4482,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.4947,-1.6530,-3.8650) mvmt=(0.0250,-0.4482,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7883,-1.0655,3.5000) mvmt=(0.0250,-0.4482,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.2238,-1.1313,3.4800) mvmt=(0.4355,-0.0659,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.276,12.631,97.500) lpos=(2.224,-1.131,3.480) lprev=(1.788,-1.065,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2238,-1.1313,3.4800) mvmt=(0.4355,-0.0659,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.3112,-1.1313,-1.0050) mvmt=(0.4355,-0.0659,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8710,-1.6002,0.4910) mvmt=(0.0659,0.4355,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1758,-1.7188,-3.8650) mvmt=(0.4355,-0.0659,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0592,-1.7188,-3.8650) mvmt=(0.4355,-0.0659,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2238,-1.1313,3.5000) mvmt=(0.4355,-0.0659,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2238,-1.1313,2.7300) mvmt=(0.4355,-0.0659,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.276,12.631,96.750) lpos=(2.224,-1.131,2.730) lprev=(1.788,-1.065,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2238,-1.1313,2.7300) mvmt=(0.4355,-0.0659,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.2238,-1.1313,2.7300) mvmt=(0.4355,-0.0659,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.2238,-1.1313,2.7300) out=(2.2238,-1.1313,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(2.2238,-1.1313,3.4800) mvmt=(0.4355,-0.0659,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.276,12.631,97.500) lpos=(2.224,-1.131,3.480) lprev=(1.788,-1.065,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2238,-1.1313,3.4800) mvmt=(0.4355,-0.0659,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.3112,-1.1313,-1.0050) mvmt=(0.4355,-0.0659,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8710,-1.6002,0.4910) mvmt=(0.0659,0.4355,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1758,-1.7188,-3.8650) mvmt=(0.4355,-0.0659,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0592,-1.7188,-3.8650) mvmt=(0.4355,-0.0659,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2238,-1.1313,3.5000) mvmt=(0.4355,-0.0659,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.6494,-1.1591,3.4800) mvmt=(0.4256,-0.0278,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.851,12.659,97.500) lpos=(2.649,-1.159,3.480) lprev=(2.224,-1.131,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6494,-1.1591,3.4800) mvmt=(0.4256,-0.0278,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.8856,-1.1591,-1.0050) mvmt=(0.4256,-0.0278,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8432,-1.1746,0.4910) mvmt=(0.0278,0.4256,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6014,-1.7466,-3.8650) mvmt=(0.4256,-0.0278,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6336,-1.7466,-3.8650) mvmt=(0.4256,-0.0278,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4832,-1.9646,0.4910) mvmt=(0.0278,0.4256,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6494,-1.1591,3.5000) mvmt=(0.4256,-0.0278,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6494,-1.1591,2.7300) mvmt=(0.4256,-0.0278,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.851,12.659,96.750) lpos=(2.649,-1.159,2.730) lprev=(2.224,-1.131,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6494,-1.1591,2.7300) mvmt=(0.4256,-0.0278,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.6494,-1.1591,2.7300) mvmt=(0.4256,-0.0278,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.6494,-1.1591,2.7300) out=(2.6494,-1.1591,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(2.6494,-1.1591,3.4800) mvmt=(0.4256,-0.0278,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.851,12.659,97.500) lpos=(2.649,-1.159,3.480) lprev=(2.224,-1.131,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6494,-1.1591,3.4800) mvmt=(0.4256,-0.0278,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.8856,-1.1591,-1.0050) mvmt=(0.4256,-0.0278,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8432,-1.1746,0.4910) mvmt=(0.0278,0.4256,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6014,-1.7466,-3.8650) mvmt=(0.4256,-0.0278,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6336,-1.7466,-3.8650) mvmt=(0.4256,-0.0278,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4832,-1.9646,0.4910) mvmt=(0.0278,0.4256,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6494,-1.1591,3.5000) mvmt=(0.4256,-0.0278,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.0788,-1.1505,3.4800) mvmt=(0.4293,0.0087,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.421,12.650,97.500) lpos=(3.079,-1.150,3.480) lprev=(2.649,-1.159,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.0788,-1.1505,3.4800) mvmt=(0.4293,0.0087,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.4562,-1.1505,-1.0050) mvmt=(0.4293,0.0087,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8518,-0.7452,0.4910) mvmt=(-0.0087,0.4293,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0308,-1.7380,-3.8650) mvmt=(0.4293,0.0087,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.2042,-1.7380,-3.8650) mvmt=(0.4293,0.0087,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4918,-1.5352,0.4910) mvmt=(-0.0087,0.4293,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0788,-1.1505,3.5000) mvmt=(0.4293,0.0087,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0788,-1.1505,2.7300) mvmt=(0.4293,0.0087,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.421,12.650,96.750) lpos=(3.079,-1.150,2.730) lprev=(2.649,-1.159,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.0788,-1.1505,2.7300) mvmt=(0.4293,0.0087,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.0788,-1.1505,2.7300) mvmt=(0.4293,0.0087,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.0788,-1.1505,2.7300) out=(3.0788,-1.1505,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.0788,-1.1505,3.4800) mvmt=(0.4293,0.0087,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.421,12.650,97.500) lpos=(3.079,-1.150,3.480) lprev=(2.649,-1.159,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.0788,-1.1505,3.4800) mvmt=(0.4293,0.0087,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.4562,-1.1505,-1.0050) mvmt=(0.4293,0.0087,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8518,-0.7452,0.4910) mvmt=(-0.0087,0.4293,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0308,-1.7380,-3.8650) mvmt=(0.4293,0.0087,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.2042,-1.7380,-3.8650) mvmt=(0.4293,0.0087,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4918,-1.5352,0.4910) mvmt=(-0.0087,0.4293,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0788,-1.1505,3.5000) mvmt=(0.4293,0.0087,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.5049,-1.1054,3.4800) mvmt=(0.4261,0.0451,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.995,12.605,97.500) lpos=(3.505,-1.105,3.480) lprev=(3.079,-1.150,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.5049,-1.1054,3.4800) mvmt=(0.4261,0.0451,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.0301,-1.1054,-1.0050) mvmt=(0.4261,0.0451,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8969,-0.3191,0.4910) mvmt=(-0.0451,0.4261,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0951,-1.1054,-2.8050) mvmt=(0.4261,0.0451,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4569,-1.6929,-3.8650) mvmt=(0.4261,0.0451,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7781,-1.6929,-3.8650) mvmt=(0.4261,0.0451,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5369,-1.1091,0.4910) mvmt=(-0.0451,0.4261,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5049,-1.1054,3.5000) mvmt=(0.4261,0.0451,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5049,-1.1054,2.7300) mvmt=(0.4261,0.0451,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.995,12.605,96.750) lpos=(3.505,-1.105,2.730) lprev=(3.079,-1.150,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.5049,-1.1054,2.7300) mvmt=(0.4261,0.0451,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.5049,-1.1054,2.7300) mvmt=(0.4261,0.0451,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.5049,-1.1054,2.7300) out=(3.5049,-1.1054,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.5049,-1.1054,3.4800) mvmt=(0.4261,0.0451,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.995,12.605,97.500) lpos=(3.505,-1.105,3.480) lprev=(3.079,-1.150,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.5049,-1.1054,3.4800) mvmt=(0.4261,0.0451,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.0301,-1.1054,-1.0050) mvmt=(0.4261,0.0451,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8969,-0.3191,0.4910) mvmt=(-0.0451,0.4261,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0951,-1.1054,-2.8050) mvmt=(0.4261,0.0451,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4569,-1.6929,-3.8650) mvmt=(0.4261,0.0451,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7781,-1.6929,-3.8650) mvmt=(0.4261,0.0451,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5369,-1.1091,0.4910) mvmt=(-0.0451,0.4261,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5049,-1.1054,3.5000) mvmt=(0.4261,0.0451,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.9297,-1.0231,3.4800) mvmt=(0.4248,0.0823,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,12.523,97.500) lpos=(3.930,-1.023,3.480) lprev=(3.505,-1.105,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-1.0231,3.4800) mvmt=(0.4248,0.0823,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-1.0231,-1.0050) mvmt=(0.4248,0.0823,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9792,0.1057,0.4910) mvmt=(-0.0823,0.4248,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-1.0231,-2.8050) mvmt=(0.4248,0.0823,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8817,-1.6106,-3.8650) mvmt=(0.4248,0.0823,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-1.6106,-3.8650) mvmt=(0.4248,0.0823,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6192,-0.6843,0.4910) mvmt=(-0.0823,0.4248,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-1.0231,3.5000) mvmt=(0.4248,0.0823,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-1.0231,2.7300) mvmt=(0.4248,0.0823,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.570,12.523,96.750) lpos=(3.930,-1.023,2.730) lprev=(3.505,-1.105,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-1.0231,2.7300) mvmt=(0.4248,0.0823,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.9297,-1.0231,2.7300) mvmt=(0.4248,0.0823,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9297,-1.0231,2.7300) out=(3.9297,-1.0231,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.9297,-1.0231,3.4800) mvmt=(0.4248,0.0823,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,12.523,97.500) lpos=(3.930,-1.023,3.480) lprev=(3.505,-1.105,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-1.0231,3.4800) mvmt=(0.4248,0.0823,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-1.0231,-1.0050) mvmt=(0.4248,0.0823,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9792,0.1057,0.4910) mvmt=(-0.0823,0.4248,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-1.0231,-2.8050) mvmt=(0.4248,0.0823,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8817,-1.6106,-3.8650) mvmt=(0.4248,0.0823,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-1.6106,-3.8650) mvmt=(0.4248,0.0823,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6192,-0.6843,0.4910) mvmt=(-0.0823,0.4248,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-1.0231,3.5000) mvmt=(0.4248,0.0823,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.3494,-0.9032,3.4800) mvmt=(0.4197,0.1199,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.151,12.403,97.500) lpos=(4.349,-0.903,3.480) lprev=(3.930,-1.023,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.3494,-0.9032,3.4800) mvmt=(0.4197,0.1199,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1856,-0.9032,-1.0050) mvmt=(0.4197,0.1199,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3494,-0.9032,3.4800) mvmt=(0.4197,0.1199,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.151,12.403,97.500) lpos=(4.349,-0.903,3.480) lprev=(3.930,-1.023,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.3494,-0.9032,3.4800) mvmt=(0.4197,0.1199,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1856,-0.9032,-1.0050) mvmt=(0.4197,0.1199,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.1856,-0.9032,-1.0050) out=(-1.1856,-0.9032,-0.8200) delta=(0.0000,0.0000,0.1850) deltaMag=0.1850 n=(0.0000,0.0000,1.0000) d=1.3000 r=0.4800 winterp=1.0000->0.6917 dpPos=0.2950 dpMove=-0.6000 iDist=0.3083 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.205 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4013F -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.205 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4013F -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(4.3494,-0.9032,3.6650) mvmt=(0.4197,0.1199,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.151,12.403,97.685) lpos=(4.349,-0.903,3.665) lprev=(3.930,-1.023,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1856,-0.9032,-0.8200) mvmt=(0.4197,0.1199,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-3.0991,0.5254,0.6760) mvmt=(-0.1199,0.4197,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.2506,-0.9032,-2.6200) mvmt=(0.4197,0.1199,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(5.3014,-1.4907,-3.6800) mvmt=(0.4197,0.1199,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-0.9336,-1.4907,-3.6800) mvmt=(0.4197,0.1199,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-2.7391,-0.2646,0.6760) mvmt=(-0.1199,0.4197,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(4.3494,-0.9032,3.6850) mvmt=(0.4197,0.1199,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(4.3494,-0.9032,3.6650) mvmt=(0.4197,0.1199,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.151,12.403,97.685) lpos=(4.349,-0.903,3.665) lprev=(3.930,-1.023,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1856,-0.9032,-0.8200) mvmt=(0.4197,0.1199,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-3.0991,0.5254,0.6760) mvmt=(-0.1199,0.4197,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.2506,-0.9032,-2.6200) mvmt=(0.4197,0.1199,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(5.3014,-1.4907,-3.6800) mvmt=(0.4197,0.1199,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-0.9336,-1.4907,-3.6800) mvmt=(0.4197,0.1199,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-2.7391,-0.2646,0.6760) mvmt=(-0.1199,0.4197,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(4.3494,-0.9032,3.6850) mvmt=(0.4197,0.1199,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(3.9297,-0.9032,3.4800) mvmt=(0.0000,0.1199,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,12.403,97.500) lpos=(3.930,-0.903,3.480) lprev=(3.930,-1.023,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.9032,3.4800) mvmt=(0.0000,0.1199,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-0.9032,-1.0050) mvmt=(0.0000,0.1199,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-3.0991,0.1057,0.4910) mvmt=(-0.1199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-0.9032,-2.8050) mvmt=(0.0000,0.1199,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-1.4907,-3.8650) mvmt=(0.0000,0.1199,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-2.7391,-0.6843,0.4910) mvmt=(-0.1199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.9032,3.5000) mvmt=(0.0000,0.1199,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.9032,2.7300) mvmt=(0.0000,0.1199,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.570,12.403,96.750) lpos=(3.930,-0.903,2.730) lprev=(3.930,-1.023,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.9032,2.7300) mvmt=(0.0000,0.1199,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.9297,-0.9032,2.7300) mvmt=(0.0000,0.1199,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9297,-0.9032,2.7300) out=(3.9297,-0.9032,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.205 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.205 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.9297,-0.9032,3.4800) mvmt=(0.0000,0.1199,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,12.403,97.500) lpos=(3.930,-0.903,3.480) lprev=(3.930,-1.023,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.9032,3.4800) mvmt=(0.0000,0.1199,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-0.9032,-1.0050) mvmt=(0.0000,0.1199,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0991,0.1057,0.4910) mvmt=(-0.1199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-0.9032,-2.8050) mvmt=(0.0000,0.1199,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-1.4907,-3.8650) mvmt=(0.0000,0.1199,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7391,-0.6843,0.4910) mvmt=(-0.1199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.9032,3.5000) mvmt=(0.0000,0.1199,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.9297,-0.7854,3.4800) mvmt=(0.0000,0.1178,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,12.285,97.500) lpos=(3.930,-0.785,3.480) lprev=(3.930,-0.903,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.7854,3.4800) mvmt=(0.0000,0.1178,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-0.7854,-1.0050) mvmt=(0.0000,0.1178,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2169,0.1057,0.4910) mvmt=(-0.1178,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-0.7854,-2.8050) mvmt=(0.0000,0.1178,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-1.3729,-3.8650) mvmt=(0.0000,0.1178,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8569,-0.6843,0.4910) mvmt=(-0.1178,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.7854,3.5000) mvmt=(0.0000,0.1178,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.7854,2.7300) mvmt=(0.0000,0.1178,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.570,12.285,96.750) lpos=(3.930,-0.785,2.730) lprev=(3.930,-0.903,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.7854,2.7300) mvmt=(0.0000,0.1178,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.9297,-0.7854,2.7300) mvmt=(0.0000,0.1178,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9297,-0.7854,2.7300) out=(3.9297,-0.7854,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.9297,-0.7854,3.4800) mvmt=(0.0000,0.1178,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,12.285,97.500) lpos=(3.930,-0.785,3.480) lprev=(3.930,-0.903,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.7854,3.4800) mvmt=(0.0000,0.1178,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-0.7854,-1.0050) mvmt=(0.0000,0.1178,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2169,0.1057,0.4910) mvmt=(-0.1178,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-0.7854,-2.8050) mvmt=(0.0000,0.1178,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-1.3729,-3.8650) mvmt=(0.0000,0.1178,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8569,-0.6843,0.4910) mvmt=(-0.1178,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.7854,3.5000) mvmt=(0.0000,0.1178,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.3567,-0.6537,3.4800) mvmt=(0.4270,0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.143,12.154,97.500) lpos=(4.357,-0.654,3.480) lprev=(3.930,-0.785,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.3567,-0.6537,3.4800) mvmt=(0.4270,0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1783,-0.6537,-1.0050) mvmt=(0.4270,0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3567,-0.6537,3.4800) mvmt=(0.4270,0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.143,12.154,97.500) lpos=(4.357,-0.654,3.480) lprev=(3.930,-0.785,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.3567,-0.6537,3.4800) mvmt=(0.4270,0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1783,-0.6537,-1.0050) mvmt=(0.4270,0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.1783,-0.6537,-1.0050) out=(-1.1783,-0.6537,-0.8200) delta=(0.0000,0.0000,0.1850) deltaMag=0.1850 n=(0.0000,0.0000,1.0000) d=1.3000 r=0.4800 winterp=1.0000->0.6917 dpPos=0.2950 dpMove=-0.6000 iDist=0.3083 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.205 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4013F -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.205 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4013F -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(4.3567,-0.6537,3.6650) mvmt=(0.4270,0.1317,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.143,12.154,97.685) lpos=(4.357,-0.654,3.665) lprev=(3.930,-0.785,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1783,-0.6537,-0.8200) mvmt=(0.4270,0.1317,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-3.3486,0.5327,0.6760) mvmt=(-0.1317,0.4270,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.2433,-0.6537,-2.6200) mvmt=(0.4270,0.1317,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(5.3087,-1.2412,-3.6800) mvmt=(0.4270,0.1317,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-0.9263,-1.2412,-3.6800) mvmt=(0.4270,0.1317,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-2.9886,-0.2573,0.6760) mvmt=(-0.1317,0.4270,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(4.3567,-0.6537,3.6850) mvmt=(0.4270,0.1317,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(4.3567,-0.6537,3.6650) mvmt=(0.4270,0.1317,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.143,12.154,97.685) lpos=(4.357,-0.654,3.665) lprev=(3.930,-0.785,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1783,-0.6537,-0.8200) mvmt=(0.4270,0.1317,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-3.3486,0.5327,0.6760) mvmt=(-0.1317,0.4270,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.2433,-0.6537,-2.6200) mvmt=(0.4270,0.1317,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(5.3087,-1.2412,-3.6800) mvmt=(0.4270,0.1317,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-0.9263,-1.2412,-3.6800) mvmt=(0.4270,0.1317,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-2.9886,-0.2573,0.6760) mvmt=(-0.1317,0.4270,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(4.3567,-0.6537,3.6850) mvmt=(0.4270,0.1317,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(3.9297,-0.6537,3.4800) mvmt=(0.0000,0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,12.154,97.500) lpos=(3.930,-0.654,3.480) lprev=(3.930,-0.785,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.6537,3.4800) mvmt=(0.0000,0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-0.6537,-1.0050) mvmt=(0.0000,0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-3.3486,0.1057,0.4910) mvmt=(-0.1317,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-0.6537,-2.8050) mvmt=(0.0000,0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-1.2412,-3.8650) mvmt=(-0.0000,0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-2.9886,-0.6843,0.4910) mvmt=(-0.1317,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.6537,3.5000) mvmt=(0.0000,0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.6537,2.7300) mvmt=(0.0000,0.1317,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.570,12.154,96.750) lpos=(3.930,-0.654,2.730) lprev=(3.930,-0.785,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.6537,2.7300) mvmt=(0.0000,0.1317,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.9297,-0.6537,2.7300) mvmt=(0.0000,0.1317,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9297,-0.6537,2.7300) out=(3.9297,-0.6537,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.205 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.205 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.9297,-0.6537,3.4800) mvmt=(0.0000,0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,12.154,97.500) lpos=(3.930,-0.654,3.480) lprev=(3.930,-0.785,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.6537,3.4800) mvmt=(0.0000,0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-0.6537,-1.0050) mvmt=(0.0000,0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3486,0.1057,0.4910) mvmt=(-0.1317,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-0.6537,-2.8050) mvmt=(0.0000,0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-1.2412,-3.8650) mvmt=(-0.0000,0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9886,-0.6843,0.4910) mvmt=(-0.1317,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.6537,3.5000) mvmt=(0.0000,0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.9297,-0.5243,3.4800) mvmt=(0.0000,0.1295,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,12.024,97.500) lpos=(3.930,-0.524,3.480) lprev=(3.930,-0.654,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.5243,3.4800) mvmt=(0.0000,0.1295,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-0.5243,-1.0050) mvmt=(0.0000,0.1295,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-0.5243,-2.8050) mvmt=(0.0000,0.1295,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-1.1118,-3.8650) mvmt=(0.0000,0.1295,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1180,-0.6843,0.4910) mvmt=(-0.1295,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.5243,3.5000) mvmt=(0.0000,0.1295,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.5243,2.7300) mvmt=(0.0000,0.1295,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.570,12.024,96.750) lpos=(3.930,-0.524,2.730) lprev=(3.930,-0.654,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.5243,2.7300) mvmt=(0.0000,0.1295,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.9297,-0.5243,2.7300) mvmt=(0.0000,0.1295,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9297,-0.5243,2.7300) out=(3.9297,-0.5243,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.9297,-0.5243,3.4800) mvmt=(0.0000,0.1295,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,12.024,97.500) lpos=(3.930,-0.524,3.480) lprev=(3.930,-0.654,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.5243,3.4800) mvmt=(0.0000,0.1295,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-0.5243,-1.0050) mvmt=(0.0000,0.1295,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-0.5243,-2.8050) mvmt=(0.0000,0.1295,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-1.1118,-3.8650) mvmt=(0.0000,0.1295,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1180,-0.6843,0.4910) mvmt=(-0.1295,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.5243,3.5000) mvmt=(0.0000,0.1295,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.3368,-0.3987,3.4800) mvmt=(0.4071,0.1256,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.163,11.899,97.500) lpos=(4.337,-0.399,3.480) lprev=(3.930,-0.524,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.3368,-0.3987,3.4800) mvmt=(0.4071,0.1256,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1982,-0.3987,-1.0050) mvmt=(0.4071,0.1256,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3368,-0.3987,3.4800) mvmt=(0.4071,0.1256,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.163,11.899,97.500) lpos=(4.337,-0.399,3.480) lprev=(3.930,-0.524,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.3368,-0.3987,3.4800) mvmt=(0.4071,0.1256,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1982,-0.3987,-1.0050) mvmt=(0.4071,0.1256,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.1982,-0.3987,-1.0050) out=(-1.1982,-0.3987,-0.8200) delta=(0.0000,0.0000,0.1850) deltaMag=0.1850 n=(0.0000,0.0000,1.0000) d=1.3000 r=0.4800 winterp=1.0000->0.6917 dpPos=0.2950 dpMove=-0.6000 iDist=0.3083 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.205 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4013F -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.205 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4013F -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(4.3368,-0.3987,3.6650) mvmt=(0.4071,0.1256,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.163,11.899,97.685) lpos=(4.337,-0.399,3.665) lprev=(3.930,-0.524,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1982,-0.3987,-0.8200) mvmt=(0.4071,0.1256,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-3.6036,0.5128,0.6760) mvmt=(-0.1256,0.4071,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.2632,-0.3987,-2.6200) mvmt=(0.4071,0.1256,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(5.2888,-0.9862,-3.6800) mvmt=(0.4071,0.1256,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-0.9462,-0.9862,-3.6800) mvmt=(0.4071,0.1256,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-3.2436,-0.2772,0.6760) mvmt=(-0.1256,0.4071,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(4.3368,-0.3987,3.6850) mvmt=(0.4071,0.1256,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(4.3368,-0.3987,3.6650) mvmt=(0.4071,0.1256,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.163,11.899,97.685) lpos=(4.337,-0.399,3.665) lprev=(3.930,-0.524,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1982,-0.3987,-0.8200) mvmt=(0.4071,0.1256,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-3.6036,0.5128,0.6760) mvmt=(-0.1256,0.4071,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.2632,-0.3987,-2.6200) mvmt=(0.4071,0.1256,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(5.2888,-0.9862,-3.6800) mvmt=(0.4071,0.1256,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-0.9462,-0.9862,-3.6800) mvmt=(0.4071,0.1256,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-3.2436,-0.2772,0.6760) mvmt=(-0.1256,0.4071,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(4.3368,-0.3987,3.6850) mvmt=(0.4071,0.1256,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(3.9297,-0.3987,3.4800) mvmt=(0.0000,0.1256,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,11.899,97.500) lpos=(3.930,-0.399,3.480) lprev=(3.930,-0.524,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.3987,3.4800) mvmt=(0.0000,0.1256,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-0.3987,-1.0050) mvmt=(0.0000,0.1256,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-0.3987,-2.8050) mvmt=(0.0000,0.1256,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-0.9862,-3.8650) mvmt=(0.0000,0.1256,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-3.2436,-0.6843,0.4910) mvmt=(-0.1256,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.3987,3.5000) mvmt=(0.0000,0.1256,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.3987,2.7300) mvmt=(0.0000,0.1256,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.570,11.899,96.750) lpos=(3.930,-0.399,2.730) lprev=(3.930,-0.524,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.3987,2.7300) mvmt=(0.0000,0.1256,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.9297,-0.3987,2.7300) mvmt=(0.0000,0.1256,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9297,-0.3987,2.7300) out=(3.9297,-0.3987,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.205 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.205 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.9297,-0.3987,3.4800) mvmt=(0.0000,0.1256,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,11.899,97.500) lpos=(3.930,-0.399,3.480) lprev=(3.930,-0.524,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.3987,3.4800) mvmt=(0.0000,0.1256,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-0.3987,-1.0050) mvmt=(0.0000,0.1256,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-0.3987,-2.8050) mvmt=(0.0000,0.1256,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-0.9862,-3.8650) mvmt=(0.0000,0.1256,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2436,-0.6843,0.4910) mvmt=(-0.1256,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.3987,3.5000) mvmt=(0.0000,0.1256,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.9297,-0.2698,3.4800) mvmt=(0.0000,0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,11.770,97.500) lpos=(3.930,-0.270,3.480) lprev=(3.930,-0.399,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.2698,3.4800) mvmt=(0.0000,0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-0.2698,-1.0050) mvmt=(0.0000,0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-0.2698,-2.8050) mvmt=(0.0000,0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-0.8573,-3.8650) mvmt=(0.0000,0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.2698,3.5000) mvmt=(0.0000,0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.2698,2.7300) mvmt=(0.0000,0.1289,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.570,11.770,96.750) lpos=(3.930,-0.270,2.730) lprev=(3.930,-0.399,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.2698,2.7300) mvmt=(0.0000,0.1289,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.9297,-0.2698,2.7300) mvmt=(0.0000,0.1289,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9297,-0.2698,2.7300) out=(3.9297,-0.2698,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.9297,-0.2698,3.4800) mvmt=(0.0000,0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,11.770,97.500) lpos=(3.930,-0.270,3.480) lprev=(3.930,-0.399,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.2698,3.4800) mvmt=(0.0000,0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-0.2698,-1.0050) mvmt=(0.0000,0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-0.2698,-2.8050) mvmt=(0.0000,0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-0.8573,-3.8650) mvmt=(0.0000,0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.2698,3.5000) mvmt=(0.0000,0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.3372,-0.1441,3.4800) mvmt=(0.4074,0.1257,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.163,11.644,97.500) lpos=(4.337,-0.144,3.480) lprev=(3.930,-0.270,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.3372,-0.1441,3.4800) mvmt=(0.4074,0.1257,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1978,-0.1441,-1.0050) mvmt=(0.4074,0.1257,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3372,-0.1441,3.4800) mvmt=(0.4074,0.1257,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.163,11.644,97.500) lpos=(4.337,-0.144,3.480) lprev=(3.930,-0.270,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.3372,-0.1441,3.4800) mvmt=(0.4074,0.1257,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1978,-0.1441,-1.0050) mvmt=(0.4074,0.1257,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.1978,-0.1441,-1.0050) out=(-1.1978,-0.1441,-0.8200) delta=(0.0000,0.0000,0.1850) deltaMag=0.1850 n=(0.0000,0.0000,1.0000) d=1.3000 r=0.4800 winterp=1.0000->0.6917 dpPos=0.2950 dpMove=-0.6000 iDist=0.3083 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.205 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4013F -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.205 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4013F -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(4.3372,-0.1441,3.6650) mvmt=(0.4074,0.1257,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.163,11.644,97.685) lpos=(4.337,-0.144,3.665) lprev=(3.930,-0.270,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1978,-0.1441,-0.8200) mvmt=(0.4074,0.1257,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.2628,-0.1441,-2.6200) mvmt=(0.4074,0.1257,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(5.2892,-0.7316,-3.6800) mvmt=(0.4074,0.1257,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-0.9458,-0.7316,-3.6800) mvmt=(0.4074,0.1257,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-3.4982,-0.2768,0.6760) mvmt=(-0.1257,0.4074,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(4.3372,-0.1441,3.6850) mvmt=(0.4074,0.1257,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(4.3372,-0.1441,3.6650) mvmt=(0.4074,0.1257,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.163,11.644,97.685) lpos=(4.337,-0.144,3.665) lprev=(3.930,-0.270,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1978,-0.1441,-0.8200) mvmt=(0.4074,0.1257,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.2628,-0.1441,-2.6200) mvmt=(0.4074,0.1257,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(5.2892,-0.7316,-3.6800) mvmt=(0.4074,0.1257,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-0.9458,-0.7316,-3.6800) mvmt=(0.4074,0.1257,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-3.4982,-0.2768,0.6760) mvmt=(-0.1257,0.4074,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(4.3372,-0.1441,3.6850) mvmt=(0.4074,0.1257,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(3.9297,-0.1441,3.4800) mvmt=(0.0000,0.1257,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,11.644,97.500) lpos=(3.930,-0.144,3.480) lprev=(3.930,-0.270,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.1441,3.4800) mvmt=(0.0000,0.1257,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-0.1441,-1.0050) mvmt=(0.0000,0.1257,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-0.1441,-2.8050) mvmt=(0.0000,0.1257,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-0.7316,-3.8650) mvmt=(0.0000,0.1257,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.1441,3.5000) mvmt=(0.0000,0.1257,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.1441,2.7300) mvmt=(0.0000,0.1257,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.570,11.644,96.750) lpos=(3.930,-0.144,2.730) lprev=(3.930,-0.270,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.1441,2.7300) mvmt=(0.0000,0.1257,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.9297,-0.1441,2.7300) mvmt=(0.0000,0.1257,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9297,-0.1441,2.7300) out=(3.9297,-0.1441,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.205 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.205 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.9297,-0.1441,3.4800) mvmt=(0.0000,0.1257,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,11.644,97.500) lpos=(3.930,-0.144,3.480) lprev=(3.930,-0.270,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.1441,3.4800) mvmt=(0.0000,0.1257,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-0.1441,-1.0050) mvmt=(0.0000,0.1257,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-0.1441,-2.8050) mvmt=(0.0000,0.1257,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-0.7316,-3.8650) mvmt=(0.0000,0.1257,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.1441,3.5000) mvmt=(0.0000,0.1257,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.9297,-0.5350,3.4800) mvmt=(0.0000,-0.3909,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,12.035,97.500) lpos=(3.930,-0.535,3.480) lprev=(3.930,-0.144,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.5350,3.4800) mvmt=(0.0000,-0.3909,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-0.5350,-1.0050) mvmt=(0.0000,-0.3909,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-0.5350,-2.8050) mvmt=(0.0000,-0.3909,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8817,-1.1225,-3.8650) mvmt=(0.0000,-0.3909,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-1.1225,-3.8650) mvmt=(0.0000,-0.3909,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1073,-0.6843,0.4910) mvmt=(0.3909,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.5350,3.5000) mvmt=(0.0000,-0.3909,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.5350,2.7300) mvmt=(0.0000,-0.3909,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.570,12.035,96.750) lpos=(3.930,-0.535,2.730) lprev=(3.930,-0.144,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.5350,2.7300) mvmt=(0.0000,-0.3909,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.9297,-0.5350,2.7300) mvmt=(0.0000,-0.3909,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9297,-0.5350,2.7300) out=(3.9297,-0.5350,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.9297,-0.5350,3.4800) mvmt=(0.0000,-0.3909,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,12.035,97.500) lpos=(3.930,-0.535,3.480) lprev=(3.930,-0.144,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.5350,3.4800) mvmt=(0.0000,-0.3909,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-0.5350,-1.0050) mvmt=(0.0000,-0.3909,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-0.5350,-2.8050) mvmt=(0.0000,-0.3909,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8817,-1.1225,-3.8650) mvmt=(0.0000,-0.3909,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-1.1225,-3.8650) mvmt=(0.0000,-0.3909,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1073,-0.6843,0.4910) mvmt=(0.3909,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.5350,3.5000) mvmt=(0.0000,-0.3909,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.1339,-0.9314,3.4800) mvmt=(0.2041,-0.3964,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.366,12.431,97.500) lpos=(4.134,-0.931,3.480) lprev=(3.930,-0.535,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.1339,-0.9314,3.4800) mvmt=(0.2041,-0.3964,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4012,-0.9314,-1.0050) mvmt=(0.2041,-0.3964,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1339,-0.9314,3.4800) mvmt=(0.2041,-0.3964,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.366,12.431,97.500) lpos=(4.134,-0.931,3.480) lprev=(3.930,-0.535,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.1339,-0.9314,3.4800) mvmt=(0.2041,-0.3964,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4012,-0.9314,-1.0050) mvmt=(0.2041,-0.3964,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.4012,-0.9314,-1.0050) out=(-1.4012,-0.9314,-0.8200) delta=(0.0000,0.0000,0.1850) deltaMag=0.1850 n=(0.0000,0.0000,1.0000) d=1.3000 r=0.4800 winterp=1.0000->0.6917 dpPos=0.2950 dpMove=-0.6000 iDist=0.3083 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.205 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4013F -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.205 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4013F -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(4.1339,-0.9314,3.6650) mvmt=(0.2041,-0.3964,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.366,12.431,97.685) lpos=(4.134,-0.931,3.665) lprev=(3.930,-0.535,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.4012,-0.9314,-0.8200) mvmt=(0.2041,-0.3964,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-3.0709,0.3099,0.6760) mvmt=(0.3964,0.2041,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.4661,-0.9314,-2.6200) mvmt=(0.2041,-0.3964,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(5.0858,-1.5189,-3.6800) mvmt=(0.2041,-0.3964,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.1491,-1.5189,-3.6800) mvmt=(0.2041,-0.3964,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-2.7109,-0.4801,0.6760) mvmt=(0.3964,0.2041,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(4.1339,-0.9314,3.6850) mvmt=(0.2041,-0.3964,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(4.1339,-0.9314,3.6650) mvmt=(0.2041,-0.3964,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.366,12.431,97.685) lpos=(4.134,-0.931,3.665) lprev=(3.930,-0.535,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.4012,-0.9314,-0.8200) mvmt=(0.2041,-0.3964,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-3.0709,0.3099,0.6760) mvmt=(0.3964,0.2041,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.4661,-0.9314,-2.6200) mvmt=(0.2041,-0.3964,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(5.0858,-1.5189,-3.6800) mvmt=(0.2041,-0.3964,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.1491,-1.5189,-3.6800) mvmt=(0.2041,-0.3964,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-2.7109,-0.4801,0.6760) mvmt=(0.3964,0.2041,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(4.1339,-0.9314,3.6850) mvmt=(0.2041,-0.3964,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(3.9297,-0.9314,3.4800) mvmt=(0.0000,-0.3964,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,12.431,97.500) lpos=(3.930,-0.931,3.480) lprev=(3.930,-0.535,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.9314,3.4800) mvmt=(0.0000,-0.3964,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-0.9314,-1.0050) mvmt=(0.0000,-0.3964,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-3.0709,0.1057,0.4910) mvmt=(0.3964,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-0.9314,-2.8050) mvmt=(0.0000,-0.3964,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(4.8817,-1.5189,-3.8650) mvmt=(0.0000,-0.3964,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-1.5189,-3.8650) mvmt=(0.0000,-0.3964,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-2.7109,-0.6843,0.4910) mvmt=(0.3964,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.9314,3.5000) mvmt=(0.0000,-0.3964,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.9314,2.7300) mvmt=(0.0000,-0.3964,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.570,12.431,96.750) lpos=(3.930,-0.931,2.730) lprev=(3.930,-0.535,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.9314,2.7300) mvmt=(0.0000,-0.3964,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.9297,-0.9314,2.7300) mvmt=(0.0000,-0.3964,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9297,-0.9314,2.7300) out=(3.9297,-0.9314,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.205 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.205 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.9297,-0.9314,3.4800) mvmt=(0.0000,-0.3964,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,12.431,97.500) lpos=(3.930,-0.931,3.480) lprev=(3.930,-0.535,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-0.9314,3.4800) mvmt=(0.0000,-0.3964,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-0.9314,-1.0050) mvmt=(0.0000,-0.3964,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0709,0.1057,0.4910) mvmt=(0.3964,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-0.9314,-2.8050) mvmt=(0.0000,-0.3964,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8817,-1.5189,-3.8650) mvmt=(0.0000,-0.3964,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-1.5189,-3.8650) mvmt=(0.0000,-0.3964,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7109,-0.6843,0.4910) mvmt=(0.3964,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-0.9314,3.5000) mvmt=(0.0000,-0.3964,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.9297,-1.3195,3.4800) mvmt=(0.0000,-0.3880,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,12.819,97.500) lpos=(3.930,-1.319,3.480) lprev=(3.930,-0.931,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-1.3195,3.4800) mvmt=(0.0000,-0.3880,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-1.3195,-1.0050) mvmt=(0.0000,-0.3880,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6828,0.1057,0.4910) mvmt=(0.3880,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-1.3195,-2.8050) mvmt=(0.0000,-0.3880,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8817,-1.9070,-3.8650) mvmt=(0.0000,-0.3880,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-1.9070,-3.8650) mvmt=(0.0000,-0.3880,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3228,-0.6843,0.4910) mvmt=(0.3880,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-1.3195,3.5000) mvmt=(0.0000,-0.3880,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-1.3195,2.7300) mvmt=(0.0000,-0.3880,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.570,12.819,96.750) lpos=(3.930,-1.319,2.730) lprev=(3.930,-0.931,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-1.3195,2.7300) mvmt=(0.0000,-0.3880,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.9297,-1.3195,2.7300) mvmt=(0.0000,-0.3880,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9297,-1.3195,2.7300) out=(3.9297,-1.3195,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.9297,-1.3195,3.4800) mvmt=(0.0000,-0.3880,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,12.819,97.500) lpos=(3.930,-1.319,3.480) lprev=(3.930,-0.931,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-1.3195,3.4800) mvmt=(0.0000,-0.3880,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-1.3195,-1.0050) mvmt=(0.0000,-0.3880,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6828,0.1057,0.4910) mvmt=(0.3880,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-1.3195,-2.8050) mvmt=(0.0000,-0.3880,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8817,-1.9070,-3.8650) mvmt=(0.0000,-0.3880,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-1.9070,-3.8650) mvmt=(0.0000,-0.3880,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3228,-0.6843,0.4910) mvmt=(0.3880,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-1.3195,3.5000) mvmt=(0.0000,-0.3880,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.1300,-1.7084,3.4800) mvmt=(0.2003,-0.3890,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.370,13.208,97.500) lpos=(4.130,-1.708,3.480) lprev=(3.930,-1.319,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.1300,-1.7084,3.4800) mvmt=(0.2003,-0.3890,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4050,-1.7084,-1.0050) mvmt=(0.2003,-0.3890,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1300,-1.7084,3.4800) mvmt=(0.2003,-0.3890,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.370,13.208,97.500) lpos=(4.130,-1.708,3.480) lprev=(3.930,-1.319,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.1300,-1.7084,3.4800) mvmt=(0.2003,-0.3890,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4050,-1.7084,-1.0050) mvmt=(0.2003,-0.3890,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.4050,-1.7084,-1.0050) out=(-1.4050,-1.7084,-0.8200) delta=(0.0000,0.0000,0.1850) deltaMag=0.1850 n=(0.0000,0.0000,1.0000) d=1.3000 r=0.4800 winterp=1.0000->0.6917 dpPos=0.2950 dpMove=-0.6000 iDist=0.3083 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.205 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4013F -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.205 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4013F -> 0xA9B4014B caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(4.1300,-1.7084,3.6650) mvmt=(0.2003,-0.3890,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.370,13.208,97.685) lpos=(4.130,-1.708,3.665) lprev=(3.930,-1.319,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.4050,-1.7084,-0.8200) mvmt=(0.2003,-0.3890,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-2.2939,0.3060,0.6760) mvmt=(0.3890,0.2003,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.4700,-1.7084,-2.6200) mvmt=(0.2003,-0.3890,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.1530,-2.2959,-3.6800) mvmt=(0.2003,-0.3890,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.9339,-0.4840,0.6760) mvmt=(0.3890,0.2003,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(4.1300,-1.7084,3.6850) mvmt=(0.2003,-0.3890,0.1850) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(4.1300,-1.7084,3.6650) mvmt=(0.2003,-0.3890,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.370,13.208,97.685) lpos=(4.130,-1.708,3.665) lprev=(3.930,-1.319,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.4050,-1.7084,-0.8200) mvmt=(0.2003,-0.3890,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-2.2939,0.3060,0.6760) mvmt=(0.3890,0.2003,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.4700,-1.7084,-2.6200) mvmt=(0.2003,-0.3890,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.1530,-2.2959,-3.6800) mvmt=(0.2003,-0.3890,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.9339,-0.4840,0.6760) mvmt=(0.3890,0.2003,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(4.1300,-1.7084,3.6850) mvmt=(0.2003,-0.3890,0.1850) collide=False insertType=1 objState=0x303 winterp=0.6917 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(3.9297,-1.7084,3.4800) mvmt=(0.0000,-0.3890,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,13.208,97.500) lpos=(3.930,-1.708,3.480) lprev=(3.930,-1.319,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-1.7084,3.4800) mvmt=(0.0000,-0.3890,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-1.7084,-1.0050) mvmt=(0.0000,-0.3890,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-2.2939,0.1057,0.4910) mvmt=(0.3890,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-1.7084,-2.8050) mvmt=(0.0000,-0.3890,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-2.2959,-3.8650) mvmt=(0.0000,-0.3890,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(-1.9339,-0.6843,0.4910) mvmt=(0.3890,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-1.7084,3.5000) mvmt=(0.0000,-0.3890,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6917 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-1.7084,2.7300) mvmt=(0.0000,-0.3890,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.570,13.208,96.750) lpos=(3.930,-1.708,2.730) lprev=(3.930,-1.319,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-1.7084,2.7300) mvmt=(0.0000,-0.3890,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.9297,-1.7084,2.7300) mvmt=(0.0000,-0.3890,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9297,-1.7084,2.7300) out=(3.9297,-1.7084,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.205 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.205 -> n=(0.000,0.000,1.000) D=-97.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4014B -> 0xA9B4013F caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.9297,-1.7084,3.4800) mvmt=(0.0000,-0.3890,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,13.208,97.500) lpos=(3.930,-1.708,3.480) lprev=(3.930,-1.319,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-1.7084,3.4800) mvmt=(0.0000,-0.3890,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-1.7084,-1.0050) mvmt=(0.0000,-0.3890,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.2939,0.1057,0.4910) mvmt=(0.3890,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-1.7084,-2.8050) mvmt=(0.0000,-0.3890,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-2.2959,-3.8650) mvmt=(0.0000,-0.3890,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9339,-0.6843,0.4910) mvmt=(0.3890,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-1.7084,3.5000) mvmt=(0.0000,-0.3890,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.9297,-2.1000,3.4800) mvmt=(0.0000,-0.3916,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,13.600,97.500) lpos=(3.930,-2.100,3.480) lprev=(3.930,-1.708,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-2.1000,3.4800) mvmt=(0.0000,-0.3916,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-2.1000,-1.0050) mvmt=(0.0000,-0.3916,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9023,0.1057,0.4910) mvmt=(0.3916,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-2.1000,-2.8050) mvmt=(0.0000,-0.3916,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-2.6875,-3.8650) mvmt=(0.0000,-0.3916,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5423,-0.6843,0.4910) mvmt=(0.3916,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-2.1000,3.5000) mvmt=(0.0000,-0.3916,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-2.1000,2.7300) mvmt=(0.0000,-0.3916,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.570,13.600,96.750) lpos=(3.930,-2.100,2.730) lprev=(3.930,-1.708,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-2.1000,2.7300) mvmt=(0.0000,-0.3916,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.9297,-2.1000,2.7300) mvmt=(0.0000,-0.3916,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9297,-2.1000,2.7300) out=(3.9297,-2.1000,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.9297,-2.1000,3.4800) mvmt=(0.0000,-0.3916,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.570,13.600,97.500) lpos=(3.930,-2.100,3.480) lprev=(3.930,-1.708,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9297,-2.1000,3.4800) mvmt=(0.0000,-0.3916,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6053,-2.1000,-1.0050) mvmt=(0.0000,-0.3916,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9023,0.1057,0.4910) mvmt=(0.3916,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6703,-2.1000,-2.8050) mvmt=(0.0000,-0.3916,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3533,-2.6875,-3.8650) mvmt=(0.0000,-0.3916,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5423,-0.6843,0.4910) mvmt=(0.3916,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9297,-2.1000,3.5000) mvmt=(0.0000,-0.3916,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.1153,-2.4605,3.4800) mvmt=(0.1856,-0.3605,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.385,13.960,97.500) lpos=(4.115,-2.460,3.480) lprev=(3.930,-2.100,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.1153,-2.4605,3.4800) mvmt=(0.1856,-0.3605,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4197,-2.4605,-1.0050) mvmt=(0.1856,-0.3605,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5418,0.2913,0.4910) mvmt=(0.3605,0.1856,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4847,-2.4605,-2.8050) mvmt=(0.1856,-0.3605,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1677,-3.0480,-3.8650) mvmt=(0.1856,-0.3605,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1818,-0.4987,0.4910) mvmt=(0.3605,0.1856,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1153,-2.4605,3.5000) mvmt=(0.1856,-0.3605,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1153,-2.4605,2.7300) mvmt=(0.1856,-0.3605,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.385,13.960,96.750) lpos=(4.115,-2.460,2.730) lprev=(3.930,-2.100,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.1153,-2.4605,2.7300) mvmt=(0.1856,-0.3605,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.1153,-2.4605,2.7300) mvmt=(0.1856,-0.3605,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.1153,-2.4605,2.7300) out=(4.1153,-2.4605,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(4.1153,-2.4605,3.4800) mvmt=(0.1856,-0.3605,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.385,13.960,97.500) lpos=(4.115,-2.460,3.480) lprev=(3.930,-2.100,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.1153,-2.4605,3.4800) mvmt=(0.1856,-0.3605,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4197,-2.4605,-1.0050) mvmt=(0.1856,-0.3605,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5418,0.2913,0.4910) mvmt=(0.3605,0.1856,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4847,-2.4605,-2.8050) mvmt=(0.1856,-0.3605,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1677,-3.0480,-3.8650) mvmt=(0.1856,-0.3605,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1818,-0.4987,0.4910) mvmt=(0.3605,0.1856,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1153,-2.4605,3.5000) mvmt=(0.1856,-0.3605,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.2987,-2.8165,3.4800) mvmt=(0.1833,-0.3560,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.201,14.316,97.500) lpos=(4.299,-2.816,3.480) lprev=(4.115,-2.460,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.2987,-2.8165,3.4800) mvmt=(0.1833,-0.3560,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2363,-2.8165,-1.0050) mvmt=(0.1833,-0.3560,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1858,0.4747,0.4910) mvmt=(0.3560,0.1833,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9843,-3.4040,-3.8650) mvmt=(0.1833,-0.3560,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8258,-0.3153,0.4910) mvmt=(0.3560,0.1833,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.2987,-2.8165,3.5000) mvmt=(0.1833,-0.3560,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.2987,-2.8165,2.7300) mvmt=(0.1833,-0.3560,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.201,14.316,96.750) lpos=(4.299,-2.816,2.730) lprev=(4.115,-2.460,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.2987,-2.8165,2.7300) mvmt=(0.1833,-0.3560,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.2987,-2.8165,2.7300) mvmt=(0.1833,-0.3560,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.2987,-2.8165,2.7300) out=(4.2987,-2.8165,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(4.2987,-2.8165,3.4800) mvmt=(0.1833,-0.3560,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.201,14.316,97.500) lpos=(4.299,-2.816,3.480) lprev=(4.115,-2.460,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.2987,-2.8165,3.4800) mvmt=(0.1833,-0.3560,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2363,-2.8165,-1.0050) mvmt=(0.1833,-0.3560,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1858,0.4747,0.4910) mvmt=(0.3560,0.1833,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9843,-3.4040,-3.8650) mvmt=(0.1833,-0.3560,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8258,-0.3153,0.4910) mvmt=(0.3560,0.1833,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.2987,-2.8165,3.5000) mvmt=(0.1833,-0.3560,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.5025,-3.2122,3.4800) mvmt=(0.2038,-0.3957,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.998,14.712,97.500) lpos=(4.502,-3.212,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5025,-3.2122,3.4800) mvmt=(0.2038,-0.3957,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0325,-3.2122,-1.0050) mvmt=(0.2038,-0.3957,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7901,0.6785,0.4910) mvmt=(0.3957,0.2038,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7805,-3.7997,-3.8650) mvmt=(0.2038,-0.3957,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4301,-0.1115,0.4910) mvmt=(0.3957,0.2038,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5025,-3.2122,3.4800) mvmt=(0.2038,-0.3957,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.998,14.712,97.500) lpos=(4.502,-3.212,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5025,-3.2122,3.4800) mvmt=(0.2038,-0.3957,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0325,-3.2122,-1.0050) mvmt=(0.2038,-0.3957,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7901,0.6785,0.4910) mvmt=(0.3957,0.2038,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7805,-3.7997,-3.8650) mvmt=(0.2038,-0.3957,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4301,-0.1115,0.4910) mvmt=(0.3957,0.2038,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3934,-2.7919,3.4800) mvmt=(0.0948,0.0246,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.107,14.292,97.500) lpos=(4.393,-2.792,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.3934,-2.7919,3.4800) mvmt=(0.0948,0.0246,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1416,-2.7919,-1.0050) mvmt=(0.0948,0.0246,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2104,0.5695,0.4910) mvmt=(-0.0246,0.0948,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8895,-3.3794,-3.8650) mvmt=(0.0948,0.0246,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8504,-0.2205,0.4910) mvmt=(-0.0246,0.0948,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3934,-2.7919,3.5000) mvmt=(0.0948,0.0246,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6229,-3.0040,3.4800) mvmt=(0.3242,-0.1876,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.877,14.504,97.500) lpos=(4.623,-3.004,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.6229,-3.0040,3.4800) mvmt=(0.3242,-0.1876,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9121,-3.0040,-1.0050) mvmt=(0.3242,-0.1876,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9983,0.7989,0.4910) mvmt=(0.1876,0.3242,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6601,-3.5915,-3.8650) mvmt=(0.3242,-0.1876,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6383,0.0089,0.4910) mvmt=(0.1876,0.3242,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6229,-3.0040,3.4800) mvmt=(0.3242,-0.1876,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.877,14.504,97.500) lpos=(4.623,-3.004,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.6229,-3.0040,3.4800) mvmt=(0.3242,-0.1876,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9121,-3.0040,-1.0050) mvmt=(0.3242,-0.1876,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9983,0.7989,0.4910) mvmt=(0.1876,0.3242,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6601,-3.5915,-3.8650) mvmt=(0.3242,-0.1876,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6383,0.0089,0.4910) mvmt=(0.1876,0.3242,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6254,-2.8210,3.4800) mvmt=(0.3268,-0.0046,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.875,14.321,97.500) lpos=(4.625,-2.821,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.6254,-2.8210,3.4800) mvmt=(0.3268,-0.0046,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9096,-2.8210,-1.0050) mvmt=(0.3268,-0.0046,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1813,0.8014,0.4910) mvmt=(0.0046,0.3268,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6576,-3.4085,-3.8650) mvmt=(0.3268,-0.0046,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8213,0.0114,0.4910) mvmt=(0.0046,0.3268,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6254,-2.8210,3.5000) mvmt=(0.3268,-0.0046,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6229,-3.0040,3.4800) mvmt=(0.3242,-0.1876,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.877,14.504,97.500) lpos=(4.623,-3.004,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.6229,-3.0040,3.4800) mvmt=(0.3242,-0.1876,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9121,-3.0040,-1.0050) mvmt=(0.3242,-0.1876,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9983,0.7989,0.4910) mvmt=(0.1876,0.3242,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6601,-3.5915,-3.8650) mvmt=(0.3242,-0.1876,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6383,0.0089,0.4910) mvmt=(0.1876,0.3242,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6229,-3.0040,3.4800) mvmt=(0.3242,-0.1876,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.877,14.504,97.500) lpos=(4.623,-3.004,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.6229,-3.0040,3.4800) mvmt=(0.3242,-0.1876,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9121,-3.0040,-1.0050) mvmt=(0.3242,-0.1876,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9983,0.7989,0.4910) mvmt=(0.1876,0.3242,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6601,-3.5915,-3.8650) mvmt=(0.3242,-0.1876,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6383,0.0089,0.4910) mvmt=(0.1876,0.3242,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6254,-2.8210,3.4800) mvmt=(0.3268,-0.0046,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.875,14.321,97.500) lpos=(4.625,-2.821,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.6254,-2.8210,3.4800) mvmt=(0.3268,-0.0046,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9096,-2.8210,-1.0050) mvmt=(0.3268,-0.0046,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1813,0.8014,0.4910) mvmt=(0.0046,0.3268,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6576,-3.4085,-3.8650) mvmt=(0.3268,-0.0046,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8213,0.0114,0.4910) mvmt=(0.0046,0.3268,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6254,-2.8210,3.5000) mvmt=(0.3268,-0.0046,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.5907,-2.9854,3.4800) mvmt=(0.2920,-0.1689,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.909,14.485,97.500) lpos=(4.591,-2.985,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5907,-2.9854,3.4800) mvmt=(0.2920,-0.1689,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9443,-2.9854,-1.0050) mvmt=(0.2920,-0.1689,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0169,0.7667,0.4910) mvmt=(0.1689,0.2920,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6923,-3.5729,-3.8650) mvmt=(0.2920,-0.1689,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6569,-0.0233,0.4910) mvmt=(0.1689,0.2920,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5907,-2.9854,3.4800) mvmt=(0.2920,-0.1689,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.909,14.485,97.500) lpos=(4.591,-2.985,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5907,-2.9854,3.4800) mvmt=(0.2920,-0.1689,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9443,-2.9854,-1.0050) mvmt=(0.2920,-0.1689,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0169,0.7667,0.4910) mvmt=(0.1689,0.2920,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6923,-3.5729,-3.8650) mvmt=(0.2920,-0.1689,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6569,-0.0233,0.4910) mvmt=(0.1689,0.2920,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5843,-2.8063,3.4800) mvmt=(0.2856,0.0101,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.916,14.306,97.500) lpos=(4.584,-2.806,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5843,-2.8063,3.4800) mvmt=(0.2856,0.0101,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9507,-2.8063,-1.0050) mvmt=(0.2856,0.0101,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1960,0.7603,0.4910) mvmt=(-0.0101,0.2856,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6987,-3.3938,-3.8650) mvmt=(0.2856,0.0101,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8360,-0.0297,0.4910) mvmt=(-0.0101,0.2856,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5843,-2.8063,3.5000) mvmt=(0.2856,0.0101,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5907,-2.9854,3.4800) mvmt=(0.2920,-0.1689,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.909,14.485,97.500) lpos=(4.591,-2.985,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5907,-2.9854,3.4800) mvmt=(0.2920,-0.1689,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9443,-2.9854,-1.0050) mvmt=(0.2920,-0.1689,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0169,0.7667,0.4910) mvmt=(0.1689,0.2920,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6923,-3.5729,-3.8650) mvmt=(0.2920,-0.1689,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6569,-0.0233,0.4910) mvmt=(0.1689,0.2920,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5907,-2.9854,3.4800) mvmt=(0.2920,-0.1689,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.909,14.485,97.500) lpos=(4.591,-2.985,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5907,-2.9854,3.4800) mvmt=(0.2920,-0.1689,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9443,-2.9854,-1.0050) mvmt=(0.2920,-0.1689,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0169,0.7667,0.4910) mvmt=(0.1689,0.2920,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6923,-3.5729,-3.8650) mvmt=(0.2920,-0.1689,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6569,-0.0233,0.4910) mvmt=(0.1689,0.2920,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5843,-2.8063,3.4800) mvmt=(0.2856,0.0101,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.916,14.306,97.500) lpos=(4.584,-2.806,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5843,-2.8063,3.4800) mvmt=(0.2856,0.0101,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9507,-2.8063,-1.0050) mvmt=(0.2856,0.0101,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1960,0.7603,0.4910) mvmt=(-0.0101,0.2856,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6987,-3.3938,-3.8650) mvmt=(0.2856,0.0101,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8360,-0.0297,0.4910) mvmt=(-0.0101,0.2856,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5843,-2.8063,3.5000) mvmt=(0.2856,0.0101,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5907,-2.9854,3.4800) mvmt=(0.2920,-0.1689,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.909,14.485,97.500) lpos=(4.591,-2.985,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5907,-2.9854,3.4800) mvmt=(0.2920,-0.1689,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9443,-2.9854,-1.0050) mvmt=(0.2920,-0.1689,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0169,0.7667,0.4910) mvmt=(0.1689,0.2920,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6923,-3.5729,-3.8650) mvmt=(0.2920,-0.1689,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6569,-0.0233,0.4910) mvmt=(0.1689,0.2920,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5907,-2.9854,3.4800) mvmt=(0.2920,-0.1689,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.909,14.485,97.500) lpos=(4.591,-2.985,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5907,-2.9854,3.4800) mvmt=(0.2920,-0.1689,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9443,-2.9854,-1.0050) mvmt=(0.2920,-0.1689,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0169,0.7667,0.4910) mvmt=(0.1689,0.2920,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6923,-3.5729,-3.8650) mvmt=(0.2920,-0.1689,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6569,-0.0233,0.4910) mvmt=(0.1689,0.2920,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5843,-2.8063,3.4800) mvmt=(0.2856,0.0101,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.916,14.306,97.500) lpos=(4.584,-2.806,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5843,-2.8063,3.4800) mvmt=(0.2856,0.0101,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9507,-2.8063,-1.0050) mvmt=(0.2856,0.0101,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1960,0.7603,0.4910) mvmt=(-0.0101,0.2856,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6987,-3.3938,-3.8650) mvmt=(0.2856,0.0101,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8360,-0.0297,0.4910) mvmt=(-0.0101,0.2856,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5843,-2.8063,3.5000) mvmt=(0.2856,0.0101,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.5989,-2.9902,3.4800) mvmt=(0.3003,-0.1737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.901,14.490,97.500) lpos=(4.599,-2.990,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5989,-2.9902,3.4800) mvmt=(0.3003,-0.1737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9361,-2.9902,-1.0050) mvmt=(0.3003,-0.1737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0121,0.7749,0.4910) mvmt=(0.1737,0.3003,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6841,-3.5777,-3.8650) mvmt=(0.3003,-0.1737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6521,-0.0151,0.4910) mvmt=(0.1737,0.3003,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5989,-2.9902,3.4800) mvmt=(0.3003,-0.1737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.901,14.490,97.500) lpos=(4.599,-2.990,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5989,-2.9902,3.4800) mvmt=(0.3003,-0.1737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9361,-2.9902,-1.0050) mvmt=(0.3003,-0.1737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0121,0.7749,0.4910) mvmt=(0.1737,0.3003,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6841,-3.5777,-3.8650) mvmt=(0.3003,-0.1737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6521,-0.0151,0.4910) mvmt=(0.1737,0.3003,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5947,-2.8096,3.4800) mvmt=(0.2961,0.0068,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.905,14.310,97.500) lpos=(4.595,-2.810,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5947,-2.8096,3.4800) mvmt=(0.2961,0.0068,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9403,-2.8096,-1.0050) mvmt=(0.2961,0.0068,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1927,0.7708,0.4910) mvmt=(-0.0068,0.2961,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6882,-3.3971,-3.8650) mvmt=(0.2961,0.0068,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8327,-0.0192,0.4910) mvmt=(-0.0068,0.2961,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5947,-2.8096,3.5000) mvmt=(0.2961,0.0068,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5989,-2.9902,3.4800) mvmt=(0.3003,-0.1737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.901,14.490,97.500) lpos=(4.599,-2.990,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5989,-2.9902,3.4800) mvmt=(0.3003,-0.1737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9361,-2.9902,-1.0050) mvmt=(0.3003,-0.1737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0121,0.7749,0.4910) mvmt=(0.1737,0.3003,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6841,-3.5777,-3.8650) mvmt=(0.3003,-0.1737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6521,-0.0151,0.4910) mvmt=(0.1737,0.3003,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5989,-2.9902,3.4800) mvmt=(0.3003,-0.1737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.901,14.490,97.500) lpos=(4.599,-2.990,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5989,-2.9902,3.4800) mvmt=(0.3003,-0.1737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9361,-2.9902,-1.0050) mvmt=(0.3003,-0.1737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0121,0.7749,0.4910) mvmt=(0.1737,0.3003,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6841,-3.5777,-3.8650) mvmt=(0.3003,-0.1737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6521,-0.0151,0.4910) mvmt=(0.1737,0.3003,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5947,-2.8096,3.4800) mvmt=(0.2961,0.0068,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.905,14.310,97.500) lpos=(4.595,-2.810,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5947,-2.8096,3.4800) mvmt=(0.2961,0.0068,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9403,-2.8096,-1.0050) mvmt=(0.2961,0.0068,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1927,0.7708,0.4910) mvmt=(-0.0068,0.2961,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6882,-3.3971,-3.8650) mvmt=(0.2961,0.0068,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8327,-0.0192,0.4910) mvmt=(-0.0068,0.2961,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5947,-2.8096,3.5000) mvmt=(0.2961,0.0068,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5989,-2.9902,3.4800) mvmt=(0.3003,-0.1737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.901,14.490,97.500) lpos=(4.599,-2.990,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5989,-2.9902,3.4800) mvmt=(0.3003,-0.1737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9361,-2.9902,-1.0050) mvmt=(0.3003,-0.1737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0121,0.7749,0.4910) mvmt=(0.1737,0.3003,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6841,-3.5777,-3.8650) mvmt=(0.3003,-0.1737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6521,-0.0151,0.4910) mvmt=(0.1737,0.3003,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5989,-2.9902,3.4800) mvmt=(0.3003,-0.1737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.901,14.490,97.500) lpos=(4.599,-2.990,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5989,-2.9902,3.4800) mvmt=(0.3003,-0.1737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9361,-2.9902,-1.0050) mvmt=(0.3003,-0.1737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0121,0.7749,0.4910) mvmt=(0.1737,0.3003,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6841,-3.5777,-3.8650) mvmt=(0.3003,-0.1737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6521,-0.0151,0.4910) mvmt=(0.1737,0.3003,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5947,-2.8096,3.4800) mvmt=(0.2961,0.0068,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.905,14.310,97.500) lpos=(4.595,-2.810,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5947,-2.8096,3.4800) mvmt=(0.2961,0.0068,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9403,-2.8096,-1.0050) mvmt=(0.2961,0.0068,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1927,0.7708,0.4910) mvmt=(-0.0068,0.2961,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6882,-3.3971,-3.8650) mvmt=(0.2961,0.0068,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8327,-0.0192,0.4910) mvmt=(-0.0068,0.2961,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5947,-2.8096,3.5000) mvmt=(0.2961,0.0068,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.2165,-2.4090,3.4800) mvmt=(-0.0821,0.4075,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.283,13.909,97.500) lpos=(4.217,-2.409,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.2165,-2.4090,3.4800) mvmt=(-0.0821,0.4075,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3185,-2.4090,-1.0050) mvmt=(-0.0821,0.4075,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5933,0.3925,0.4910) mvmt=(-0.4075,-0.0821,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0665,-2.9965,-3.8650) mvmt=(-0.0821,0.4075,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2333,-0.3975,0.4910) mvmt=(-0.4075,-0.0821,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.2165,-2.4090,3.5000) mvmt=(-0.0821,0.4075,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.2165,-2.4090,2.7300) mvmt=(-0.0821,0.4075,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.283,13.909,96.750) lpos=(4.217,-2.409,2.730) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.2165,-2.4090,2.7300) mvmt=(-0.0821,0.4075,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.2165,-2.4090,2.7300) mvmt=(-0.0821,0.4075,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.2165,-2.4090,2.7300) out=(4.2165,-2.4090,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(4.2165,-2.4090,3.4800) mvmt=(-0.0821,0.4075,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.283,13.909,97.500) lpos=(4.217,-2.409,3.480) lprev=(4.299,-2.816,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.2165,-2.4090,3.4800) mvmt=(-0.0821,0.4075,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3185,-2.4090,-1.0050) mvmt=(-0.0821,0.4075,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5933,0.3925,0.4910) mvmt=(-0.4075,-0.0821,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0665,-2.9965,-3.8650) mvmt=(-0.0821,0.4075,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2333,-0.3975,0.4910) mvmt=(-0.4075,-0.0821,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.2165,-2.4090,3.5000) mvmt=(-0.0821,0.4075,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.1008,-2.0091,3.4800) mvmt=(-0.1157,0.3999,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.399,13.509,97.500) lpos=(4.101,-2.009,3.480) lprev=(4.217,-2.409,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.1008,-2.0091,3.4800) mvmt=(-0.1157,0.3999,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4342,-2.0091,-1.0050) mvmt=(-0.1157,0.3999,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9932,0.2768,0.4910) mvmt=(-0.3999,-0.1157,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4992,-2.0091,-2.8050) mvmt=(-0.1157,0.3999,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1822,-2.5966,-3.8650) mvmt=(-0.1157,0.3999,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6332,-0.5132,0.4910) mvmt=(-0.3999,-0.1157,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1008,-2.0091,3.5000) mvmt=(-0.1157,0.3999,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1008,-2.0091,2.7300) mvmt=(-0.1157,0.3999,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.399,13.509,96.750) lpos=(4.101,-2.009,2.730) lprev=(4.217,-2.409,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.1008,-2.0091,2.7300) mvmt=(-0.1157,0.3999,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.1008,-2.0091,2.7300) mvmt=(-0.1157,0.3999,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.1008,-2.0091,2.7300) out=(4.1008,-2.0091,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(4.1008,-2.0091,3.4800) mvmt=(-0.1157,0.3999,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.399,13.509,97.500) lpos=(4.101,-2.009,3.480) lprev=(4.217,-2.409,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.1008,-2.0091,3.4800) mvmt=(-0.1157,0.3999,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4342,-2.0091,-1.0050) mvmt=(-0.1157,0.3999,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9932,0.2768,0.4910) mvmt=(-0.3999,-0.1157,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4992,-2.0091,-2.8050) mvmt=(-0.1157,0.3999,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1822,-2.5966,-3.8650) mvmt=(-0.1157,0.3999,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6332,-0.5132,0.4910) mvmt=(-0.3999,-0.1157,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1008,-2.0091,3.5000) mvmt=(-0.1157,0.3999,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.9538,-1.6231,3.4800) mvmt=(-0.1470,0.3860,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.546,13.123,97.500) lpos=(3.954,-1.623,3.480) lprev=(4.101,-2.009,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9538,-1.6231,3.4800) mvmt=(-0.1470,0.3860,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5812,-1.6231,-1.0050) mvmt=(-0.1470,0.3860,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3792,0.1298,0.4910) mvmt=(-0.3860,-0.1470,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6462,-1.6231,-2.8050) mvmt=(-0.1470,0.3860,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3292,-2.2106,-3.8650) mvmt=(-0.1470,0.3860,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0192,-0.6602,0.4910) mvmt=(-0.3860,-0.1470,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9538,-1.6231,3.5000) mvmt=(-0.1470,0.3860,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9538,-1.6231,2.7300) mvmt=(-0.1470,0.3860,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.546,13.123,96.750) lpos=(3.954,-1.623,2.730) lprev=(4.101,-2.009,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9538,-1.6231,2.7300) mvmt=(-0.1470,0.3860,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.9538,-1.6231,2.7300) mvmt=(-0.1470,0.3860,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9538,-1.6231,2.7300) out=(3.9538,-1.6231,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.9538,-1.6231,3.4800) mvmt=(-0.1470,0.3860,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.546,13.123,97.500) lpos=(3.954,-1.623,3.480) lprev=(4.101,-2.009,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.9538,-1.6231,3.4800) mvmt=(-0.1470,0.3860,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5812,-1.6231,-1.0050) mvmt=(-0.1470,0.3860,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3792,0.1298,0.4910) mvmt=(-0.3860,-0.1470,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6462,-1.6231,-2.8050) mvmt=(-0.1470,0.3860,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3292,-2.2106,-3.8650) mvmt=(-0.1470,0.3860,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0192,-0.6602,0.4910) mvmt=(-0.3860,-0.1470,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9538,-1.6231,3.5000) mvmt=(-0.1470,0.3860,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.7672,-1.2361,3.4800) mvmt=(-0.1866,0.3870,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.733,12.736,97.500) lpos=(3.767,-1.236,3.480) lprev=(3.954,-1.623,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.7672,-1.2361,3.4800) mvmt=(-0.1866,0.3870,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.7678,-1.2361,-1.0050) mvmt=(-0.1866,0.3870,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7662,-0.0568,0.4910) mvmt=(-0.3870,-0.1866,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8328,-1.2361,-2.8050) mvmt=(-0.1866,0.3870,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5158,-1.8236,-3.8650) mvmt=(-0.1866,0.3870,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4062,-0.8468,0.4910) mvmt=(-0.3870,-0.1866,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7672,-1.2361,3.5000) mvmt=(-0.1866,0.3870,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7672,-1.2361,2.7300) mvmt=(-0.1866,0.3870,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.733,12.736,96.750) lpos=(3.767,-1.236,2.730) lprev=(3.954,-1.623,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.7672,-1.2361,2.7300) mvmt=(-0.1866,0.3870,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.7672,-1.2361,2.7300) mvmt=(-0.1866,0.3870,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.7672,-1.2361,2.7300) out=(3.7672,-1.2361,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.7672,-1.2361,3.4800) mvmt=(-0.1866,0.3870,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.733,12.736,97.500) lpos=(3.767,-1.236,3.480) lprev=(3.954,-1.623,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.7672,-1.2361,3.4800) mvmt=(-0.1866,0.3870,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.7678,-1.2361,-1.0050) mvmt=(-0.1866,0.3870,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7662,-0.0568,0.4910) mvmt=(-0.3870,-0.1866,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8328,-1.2361,-2.8050) mvmt=(-0.1866,0.3870,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5158,-1.8236,-3.8650) mvmt=(-0.1866,0.3870,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4062,-0.8468,0.4910) mvmt=(-0.3870,-0.1866,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7672,-1.2361,3.5000) mvmt=(-0.1866,0.3870,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.5565,-0.8781,3.4800) mvmt=(-0.2107,0.3580,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.943,12.378,97.500) lpos=(3.557,-0.878,3.480) lprev=(3.767,-1.236,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.5565,-0.8781,3.4800) mvmt=(-0.2107,0.3580,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.9785,-0.8781,-1.0050) mvmt=(-0.2107,0.3580,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1242,-0.2674,0.4910) mvmt=(-0.3580,-0.2107,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0434,-0.8781,-2.8050) mvmt=(-0.2107,0.3580,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5085,-1.4656,-3.8650) mvmt=(-0.2107,0.3580,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7264,-1.4656,-3.8650) mvmt=(-0.2107,0.3580,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7642,-1.0574,0.4910) mvmt=(-0.3580,-0.2107,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5565,-0.8781,3.5000) mvmt=(-0.2107,0.3580,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5565,-0.8781,2.7300) mvmt=(-0.2107,0.3580,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.943,12.378,96.750) lpos=(3.557,-0.878,2.730) lprev=(3.767,-1.236,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.5565,-0.8781,2.7300) mvmt=(-0.2107,0.3580,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.5565,-0.8781,2.7300) mvmt=(-0.2107,0.3580,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.5565,-0.8781,2.7300) out=(3.5565,-0.8781,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.5565,-0.8781,3.4800) mvmt=(-0.2107,0.3580,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.943,12.378,97.500) lpos=(3.557,-0.878,3.480) lprev=(3.767,-1.236,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.5565,-0.8781,3.4800) mvmt=(-0.2107,0.3580,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.9785,-0.8781,-1.0050) mvmt=(-0.2107,0.3580,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1242,-0.2674,0.4910) mvmt=(-0.3580,-0.2107,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0434,-0.8781,-2.8050) mvmt=(-0.2107,0.3580,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5085,-1.4656,-3.8650) mvmt=(-0.2107,0.3580,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7264,-1.4656,-3.8650) mvmt=(-0.2107,0.3580,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7642,-1.0574,0.4910) mvmt=(-0.3580,-0.2107,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5565,-0.8781,3.5000) mvmt=(-0.2107,0.3580,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.3223,-0.5073,3.4800) mvmt=(-0.2342,0.3708,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.178,12.007,97.500) lpos=(3.322,-0.507,3.480) lprev=(3.557,-0.878,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.3223,-0.5073,3.4800) mvmt=(-0.2342,0.3708,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.2127,-0.5073,-1.0050) mvmt=(-0.2342,0.3708,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.4950,-0.5017,0.4910) mvmt=(-0.3708,-0.2342,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.2777,-0.5073,-2.8050) mvmt=(-0.2342,0.3708,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.2743,-1.0948,-3.8650) mvmt=(-0.2342,0.3708,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9607,-1.0948,-3.8650) mvmt=(-0.2342,0.3708,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1350,-1.2917,0.4910) mvmt=(-0.3708,-0.2342,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3223,-0.5073,3.5000) mvmt=(-0.2342,0.3708,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3223,-0.5073,2.7300) mvmt=(-0.2342,0.3708,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.178,12.007,96.750) lpos=(3.322,-0.507,2.730) lprev=(3.557,-0.878,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.3223,-0.5073,2.7300) mvmt=(-0.2342,0.3708,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.3223,-0.5073,2.7300) mvmt=(-0.2342,0.3708,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.3223,-0.5073,2.7300) out=(3.3223,-0.5073,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.3223,-0.5073,3.4800) mvmt=(-0.2342,0.3708,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.178,12.007,97.500) lpos=(3.322,-0.507,3.480) lprev=(3.557,-0.878,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.3223,-0.5073,3.4800) mvmt=(-0.2342,0.3708,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.2127,-0.5073,-1.0050) mvmt=(-0.2342,0.3708,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.4950,-0.5017,0.4910) mvmt=(-0.3708,-0.2342,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.2777,-0.5073,-2.8050) mvmt=(-0.2342,0.3708,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.2743,-1.0948,-3.8650) mvmt=(-0.2342,0.3708,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9607,-1.0948,-3.8650) mvmt=(-0.2342,0.3708,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1350,-1.2917,0.4910) mvmt=(-0.3708,-0.2342,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3223,-0.5073,3.5000) mvmt=(-0.2342,0.3708,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.0897,-0.1391,3.4800) mvmt=(-0.2327,0.3683,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.410,11.639,97.500) lpos=(3.090,-0.139,3.480) lprev=(3.322,-0.507,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.0897,-0.1391,3.4800) mvmt=(-0.2327,0.3683,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.4453,-0.1391,-1.0050) mvmt=(-0.2327,0.3683,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8632,-0.7343,0.4910) mvmt=(-0.3683,-0.2327,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5103,-0.1391,-2.8050) mvmt=(-0.2327,0.3683,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0417,-0.7266,-3.8650) mvmt=(-0.2327,0.3683,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1933,-0.7266,-3.8650) mvmt=(-0.2327,0.3683,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5032,-1.5243,0.4910) mvmt=(-0.3683,-0.2327,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0897,-0.1391,3.5000) mvmt=(-0.2327,0.3683,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0897,-0.1391,2.7300) mvmt=(-0.2327,0.3683,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.410,11.639,96.750) lpos=(3.090,-0.139,2.730) lprev=(3.322,-0.507,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.0897,-0.1391,2.7300) mvmt=(-0.2327,0.3683,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.0897,-0.1391,2.7300) mvmt=(-0.2327,0.3683,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.0897,-0.1391,2.7300) out=(3.0897,-0.1391,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.0897,-0.1391,3.4800) mvmt=(-0.2327,0.3683,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.410,11.639,97.500) lpos=(3.090,-0.139,3.480) lprev=(3.322,-0.507,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.0897,-0.1391,3.4800) mvmt=(-0.2327,0.3683,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.4453,-0.1391,-1.0050) mvmt=(-0.2327,0.3683,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.8632,-0.7343,0.4910) mvmt=(-0.3683,-0.2327,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5103,-0.1391,-2.8050) mvmt=(-0.2327,0.3683,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0417,-0.7266,-3.8650) mvmt=(-0.2327,0.3683,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1933,-0.7266,-3.8650) mvmt=(-0.2327,0.3683,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5032,-1.5243,0.4910) mvmt=(-0.3683,-0.2327,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0897,-0.1391,3.5000) mvmt=(-0.2327,0.3683,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.8534,0.2348,3.4800) mvmt=(-0.2362,0.3739,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.647,11.265,97.500) lpos=(2.853,0.235,3.480) lprev=(3.090,-0.139,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8534,0.2348,3.4800) mvmt=(-0.2362,0.3739,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6816,0.2348,-1.0050) mvmt=(-0.2362,0.3739,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7466,0.2348,-2.8050) mvmt=(-0.2362,0.3739,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8054,-0.3527,-3.8650) mvmt=(-0.2362,0.3739,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4296,-0.3527,-3.8650) mvmt=(-0.2362,0.3739,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8534,0.2348,3.5000) mvmt=(-0.2362,0.3739,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8534,0.2348,2.7300) mvmt=(-0.2362,0.3739,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.647,11.265,96.750) lpos=(2.853,0.235,2.730) lprev=(3.090,-0.139,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8534,0.2348,2.7300) mvmt=(-0.2362,0.3739,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8534,0.2348,2.7300) mvmt=(-0.2362,0.3739,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.8534,0.2348,2.7300) out=(2.8534,0.2348,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(2.8534,0.2348,3.4800) mvmt=(-0.2362,0.3739,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.647,11.265,97.500) lpos=(2.853,0.235,3.480) lprev=(3.090,-0.139,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8534,0.2348,3.4800) mvmt=(-0.2362,0.3739,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6816,0.2348,-1.0050) mvmt=(-0.2362,0.3739,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7466,0.2348,-2.8050) mvmt=(-0.2362,0.3739,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8054,-0.3527,-3.8650) mvmt=(-0.2362,0.3739,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4296,-0.3527,-3.8650) mvmt=(-0.2362,0.3739,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8534,0.2348,3.5000) mvmt=(-0.2362,0.3739,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.6217,0.6017,3.4800) mvmt=(-0.2317,0.3668,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.878,10.898,97.500) lpos=(2.622,0.602,3.480) lprev=(2.853,0.235,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6217,0.6017,3.4800) mvmt=(-0.2317,0.3668,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.9133,0.6017,-1.0050) mvmt=(-0.2317,0.3668,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9783,0.6017,-2.8050) mvmt=(-0.2317,0.3668,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5737,0.0142,-3.8650) mvmt=(-0.2317,0.3668,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6613,0.0142,-3.8650) mvmt=(-0.2317,0.3668,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6217,0.6017,3.5000) mvmt=(-0.2317,0.3668,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6217,0.6017,2.7300) mvmt=(-0.2317,0.3668,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.878,10.898,96.750) lpos=(2.622,0.602,2.730) lprev=(2.853,0.235,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6217,0.6017,2.7300) mvmt=(-0.2317,0.3668,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.6217,0.6017,2.7300) mvmt=(-0.2317,0.3668,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.6217,0.6017,2.7300) out=(2.6217,0.6017,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(2.6217,0.6017,3.4800) mvmt=(-0.2317,0.3668,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.878,10.898,97.500) lpos=(2.622,0.602,3.480) lprev=(2.853,0.235,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6217,0.6017,3.4800) mvmt=(-0.2317,0.3668,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.9133,0.6017,-1.0050) mvmt=(-0.2317,0.3668,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9783,0.6017,-2.8050) mvmt=(-0.2317,0.3668,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5737,0.0142,-3.8650) mvmt=(-0.2317,0.3668,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6613,0.0142,-3.8650) mvmt=(-0.2317,0.3668,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6217,0.6017,3.5000) mvmt=(-0.2317,0.3668,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.3816,0.9817,3.4800) mvmt=(-0.2401,0.3801,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.118,10.518,97.500) lpos=(2.382,0.982,3.480) lprev=(2.622,0.602,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3816,0.9817,3.4800) mvmt=(-0.2401,0.3801,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.1534,0.9817,-1.0050) mvmt=(-0.2401,0.3801,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3336,0.3942,-3.8650) mvmt=(-0.2401,0.3801,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9014,0.3942,-3.8650) mvmt=(-0.2401,0.3801,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3816,0.9817,3.5000) mvmt=(-0.2401,0.3801,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3816,0.9817,2.7300) mvmt=(-0.2401,0.3801,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.118,10.518,96.750) lpos=(2.382,0.982,2.730) lprev=(2.622,0.602,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3816,0.9817,2.7300) mvmt=(-0.2401,0.3801,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3816,0.9817,2.7300) mvmt=(-0.2401,0.3801,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.3816,0.9817,2.7300) out=(2.3816,0.9817,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(2.3816,0.9817,3.4800) mvmt=(-0.2401,0.3801,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.118,10.518,97.500) lpos=(2.382,0.982,3.480) lprev=(2.622,0.602,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3816,0.9817,3.4800) mvmt=(-0.2401,0.3801,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.1534,0.9817,-1.0050) mvmt=(-0.2401,0.3801,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3336,0.3942,-3.8650) mvmt=(-0.2401,0.3801,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9014,0.3942,-3.8650) mvmt=(-0.2401,0.3801,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3816,0.9817,3.5000) mvmt=(-0.2401,0.3801,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.1456,1.3553,3.4800) mvmt=(-0.2360,0.3735,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.354,10.145,97.500) lpos=(2.146,1.355,3.480) lprev=(2.382,0.982,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1456,1.3553,3.4800) mvmt=(-0.2360,0.3735,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.3894,1.3553,-1.0050) mvmt=(-0.2360,0.3735,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0976,0.7678,-3.8650) mvmt=(-0.2360,0.3735,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1374,0.7678,-3.8650) mvmt=(-0.2360,0.3735,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1456,1.3553,3.5000) mvmt=(-0.2360,0.3735,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1456,1.3553,2.7300) mvmt=(-0.2360,0.3735,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.354,10.145,96.750) lpos=(2.146,1.355,2.730) lprev=(2.382,0.982,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1456,1.3553,2.7300) mvmt=(-0.2360,0.3735,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.1456,1.3553,2.7300) mvmt=(-0.2360,0.3735,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.1456,1.3553,2.7300) out=(2.1456,1.3553,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(2.1456,1.3553,3.4800) mvmt=(-0.2360,0.3735,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.354,10.145,97.500) lpos=(2.146,1.355,3.480) lprev=(2.382,0.982,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1456,1.3553,3.4800) mvmt=(-0.2360,0.3735,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.3894,1.3553,-1.0050) mvmt=(-0.2360,0.3735,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0976,0.7678,-3.8650) mvmt=(-0.2360,0.3735,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1374,0.7678,-3.8650) mvmt=(-0.2360,0.3735,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1456,1.3553,3.5000) mvmt=(-0.2360,0.3735,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.9086,1.7305,3.4800) mvmt=(-0.2370,0.3752,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.591,9.770,97.500) lpos=(1.909,1.730,3.480) lprev=(2.146,1.355,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9086,1.7305,3.4800) mvmt=(-0.2370,0.3752,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.6264,1.7305,-1.0050) mvmt=(-0.2370,0.3752,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8605,1.1430,-3.8650) mvmt=(-0.2370,0.3752,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3744,1.1430,-3.8650) mvmt=(-0.2370,0.3752,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9086,1.7305,3.5000) mvmt=(-0.2370,0.3752,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9086,1.7305,2.7300) mvmt=(-0.2370,0.3752,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.591,9.770,96.750) lpos=(1.909,1.730,2.730) lprev=(2.146,1.355,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9086,1.7305,2.7300) mvmt=(-0.2370,0.3752,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.9086,1.7305,2.7300) mvmt=(-0.2370,0.3752,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(1.9086,1.7305,2.7300) out=(1.9086,1.7305,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(1.9086,1.7305,3.4800) mvmt=(-0.2370,0.3752,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.591,9.770,97.500) lpos=(1.909,1.730,3.480) lprev=(2.146,1.355,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9086,1.7305,3.4800) mvmt=(-0.2370,0.3752,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.6264,1.7305,-1.0050) mvmt=(-0.2370,0.3752,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8605,1.1430,-3.8650) mvmt=(-0.2370,0.3752,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3744,1.1430,-3.8650) mvmt=(-0.2370,0.3752,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9086,1.7305,3.5000) mvmt=(-0.2370,0.3752,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementStrafeRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementBackup Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.1525,1.8192,3.4800) mvmt=(0.2439,0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.348,9.681,97.500) lpos=(2.152,1.819,3.480) lprev=(1.909,1.730,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1525,1.8192,3.4800) mvmt=(0.2439,0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.3825,1.8192,-1.0050) mvmt=(0.2439,0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1825,-1.4580,0.4850) mvmt=(0.2439,0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1045,1.2317,-3.8650) mvmt=(0.2439,0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1305,1.2317,-3.8650) mvmt=(0.2439,0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1525,1.8192,3.5000) mvmt=(0.2439,0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1525,1.8192,2.7300) mvmt=(0.2439,0.0888,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.348,9.681,96.750) lpos=(2.152,1.819,2.730) lprev=(1.909,1.730,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1525,1.8192,2.7300) mvmt=(0.2439,0.0888,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.1525,1.8192,2.7300) mvmt=(0.2439,0.0888,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.1525,1.8192,2.7300) out=(2.1525,1.8192,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(2.1525,1.8192,3.4800) mvmt=(0.2439,0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.348,9.681,97.500) lpos=(2.152,1.819,3.480) lprev=(1.909,1.730,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1525,1.8192,3.4800) mvmt=(0.2439,0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.3825,1.8192,-1.0050) mvmt=(0.2439,0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1825,-1.4580,0.4850) mvmt=(0.2439,0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1045,1.2317,-3.8650) mvmt=(0.2439,0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1305,1.2317,-3.8650) mvmt=(0.2439,0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1525,1.8192,3.5000) mvmt=(0.2439,0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.3915,1.9062,3.4800) mvmt=(0.2390,0.0870,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.109,9.594,97.500) lpos=(2.391,1.906,3.480) lprev=(2.152,1.819,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3915,1.9062,3.4800) mvmt=(0.2390,0.0870,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.1435,1.9062,-1.0050) mvmt=(0.2390,0.0870,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3435,1.3187,-3.8650) mvmt=(0.2390,0.0870,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8915,1.3187,-3.8650) mvmt=(0.2390,0.0870,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3915,1.9062,3.5000) mvmt=(0.2390,0.0870,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3915,1.9062,2.7300) mvmt=(0.2390,0.0870,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.109,9.594,96.750) lpos=(2.391,1.906,2.730) lprev=(2.152,1.819,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3915,1.9062,2.7300) mvmt=(0.2390,0.0870,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3915,1.9062,2.7300) mvmt=(0.2390,0.0870,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.3915,1.9062,2.7300) out=(2.3915,1.9062,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(2.3915,1.9062,3.4800) mvmt=(0.2390,0.0870,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.109,9.594,97.500) lpos=(2.391,1.906,3.480) lprev=(2.152,1.819,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3915,1.9062,3.4800) mvmt=(0.2390,0.0870,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.1435,1.9062,-1.0050) mvmt=(0.2390,0.0870,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3435,1.3187,-3.8650) mvmt=(0.2390,0.0870,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8915,1.3187,-3.8650) mvmt=(0.2390,0.0870,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3915,1.9062,3.5000) mvmt=(0.2390,0.0870,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.6312,1.9935,3.4800) mvmt=(0.2398,0.0873,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.869,9.507,97.500) lpos=(2.631,1.993,3.480) lprev=(2.391,1.906,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6312,1.9935,3.4800) mvmt=(0.2398,0.0873,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.9038,1.9935,-1.0050) mvmt=(0.2398,0.0873,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5832,1.4060,-3.8650) mvmt=(0.2398,0.0873,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6518,1.4060,-3.8650) mvmt=(0.2398,0.0873,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6312,1.9935,3.5000) mvmt=(0.2398,0.0873,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6312,1.9935,2.7300) mvmt=(0.2398,0.0873,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.869,9.507,96.750) lpos=(2.631,1.993,2.730) lprev=(2.391,1.906,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6312,1.9935,2.7300) mvmt=(0.2398,0.0873,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.6312,1.9935,2.7300) mvmt=(0.2398,0.0873,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.6312,1.9935,2.7300) out=(2.6312,1.9935,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(2.6312,1.9935,3.4800) mvmt=(0.2398,0.0873,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.869,9.507,97.500) lpos=(2.631,1.993,3.480) lprev=(2.391,1.906,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6312,1.9935,3.4800) mvmt=(0.2398,0.0873,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.9038,1.9935,-1.0050) mvmt=(0.2398,0.0873,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5832,1.4060,-3.8650) mvmt=(0.2398,0.0873,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6518,1.4060,-3.8650) mvmt=(0.2398,0.0873,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6312,1.9935,3.5000) mvmt=(0.2398,0.0873,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.8807,2.0843,3.4800) mvmt=(0.2495,0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.619,9.416,97.500) lpos=(2.881,2.084,3.480) lprev=(2.631,1.993,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8807,2.0843,3.4800) mvmt=(0.2495,0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6543,2.0843,-1.0050) mvmt=(0.2495,0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8327,1.4968,-3.8650) mvmt=(0.2495,0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4023,1.4968,-3.8650) mvmt=(0.2495,0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8807,2.0843,3.5000) mvmt=(0.2495,0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8807,2.0843,2.7300) mvmt=(0.2495,0.0908,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.619,9.416,96.750) lpos=(2.881,2.084,2.730) lprev=(2.631,1.993,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8807,2.0843,2.7300) mvmt=(0.2495,0.0908,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8807,2.0843,2.7300) mvmt=(0.2495,0.0908,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.8807,2.0843,2.7300) out=(2.8807,2.0843,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(2.8807,2.0843,3.4800) mvmt=(0.2495,0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.619,9.416,97.500) lpos=(2.881,2.084,3.480) lprev=(2.631,1.993,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8807,2.0843,3.4800) mvmt=(0.2495,0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.6543,2.0843,-1.0050) mvmt=(0.2495,0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8327,1.4968,-3.8650) mvmt=(0.2495,0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4023,1.4968,-3.8650) mvmt=(0.2495,0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8807,2.0843,3.5000) mvmt=(0.2495,0.0908,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.1230,2.1725,3.4800) mvmt=(0.2423,0.0882,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.377,9.328,97.500) lpos=(3.123,2.172,3.480) lprev=(2.881,2.084,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1230,2.1725,3.4800) mvmt=(0.2423,0.0882,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.4120,2.1725,-1.0050) mvmt=(0.2423,0.0882,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0750,1.5850,-3.8650) mvmt=(0.2423,0.0882,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1600,1.5850,-3.8650) mvmt=(0.2423,0.0882,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1230,2.1725,3.5000) mvmt=(0.2423,0.0882,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1230,2.1725,2.7300) mvmt=(0.2423,0.0882,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.377,9.328,96.750) lpos=(3.123,2.172,2.730) lprev=(2.881,2.084,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1230,2.1725,2.7300) mvmt=(0.2423,0.0882,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.1230,2.1725,2.7300) mvmt=(0.2423,0.0882,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.1230,2.1725,2.7300) out=(3.1230,2.1725,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.1230,2.1725,3.4800) mvmt=(0.2423,0.0882,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.377,9.328,97.500) lpos=(3.123,2.172,3.480) lprev=(2.881,2.084,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1230,2.1725,3.4800) mvmt=(0.2423,0.0882,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.4120,2.1725,-1.0050) mvmt=(0.2423,0.0882,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0750,1.5850,-3.8650) mvmt=(0.2423,0.0882,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1600,1.5850,-3.8650) mvmt=(0.2423,0.0882,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1230,2.1725,3.5000) mvmt=(0.2423,0.0882,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.3687,2.2619,3.4800) mvmt=(0.2457,0.0894,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.131,9.238,97.500) lpos=(3.369,2.262,3.480) lprev=(3.123,2.172,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.3687,2.2619,3.4800) mvmt=(0.2457,0.0894,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.1663,2.2619,-1.0050) mvmt=(0.2457,0.0894,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3207,1.6744,-3.8650) mvmt=(0.2457,0.0894,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9143,1.6744,-3.8650) mvmt=(0.2457,0.0894,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3687,2.2619,3.5000) mvmt=(0.2457,0.0894,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3687,2.2619,2.7300) mvmt=(0.2457,0.0894,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.131,9.238,96.750) lpos=(3.369,2.262,2.730) lprev=(3.123,2.172,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.3687,2.2619,2.7300) mvmt=(0.2457,0.0894,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.3687,2.2619,2.7300) mvmt=(0.2457,0.0894,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.3687,2.2619,2.7300) out=(3.3687,2.2619,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.3687,2.2619,3.4800) mvmt=(0.2457,0.0894,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.131,9.238,97.500) lpos=(3.369,2.262,3.480) lprev=(3.123,2.172,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.3687,2.2619,3.4800) mvmt=(0.2457,0.0894,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.1663,2.2619,-1.0050) mvmt=(0.2457,0.0894,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3207,1.6744,-3.8650) mvmt=(0.2457,0.0894,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9143,1.6744,-3.8650) mvmt=(0.2457,0.0894,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3687,2.2619,3.5000) mvmt=(0.2457,0.0894,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.6100,2.3498,3.4800) mvmt=(0.2413,0.0878,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.890,9.150,97.500) lpos=(3.610,2.350,3.480) lprev=(3.369,2.262,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.6100,2.3498,3.4800) mvmt=(0.2413,0.0878,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.9250,2.3498,-1.0050) mvmt=(0.2413,0.0878,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5620,1.7623,-3.8650) mvmt=(0.2413,0.0878,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6730,1.7623,-3.8650) mvmt=(0.2413,0.0878,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6100,2.3498,3.5000) mvmt=(0.2413,0.0878,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6100,2.3498,2.7300) mvmt=(0.2413,0.0878,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.890,9.150,96.750) lpos=(3.610,2.350,2.730) lprev=(3.369,2.262,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.6100,2.3498,2.7300) mvmt=(0.2413,0.0878,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.6100,2.3498,2.7300) mvmt=(0.2413,0.0878,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.6100,2.3498,2.7300) out=(3.6100,2.3498,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.6100,2.3498,3.4800) mvmt=(0.2413,0.0878,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.890,9.150,97.500) lpos=(3.610,2.350,3.480) lprev=(3.369,2.262,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.6100,2.3498,3.4800) mvmt=(0.2413,0.0878,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.9250,2.3498,-1.0050) mvmt=(0.2413,0.0878,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5620,1.7623,-3.8650) mvmt=(0.2413,0.0878,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6730,1.7623,-3.8650) mvmt=(0.2413,0.0878,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6100,2.3498,3.5000) mvmt=(0.2413,0.0878,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.8566,2.4395,3.4800) mvmt=(0.2466,0.0898,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.643,9.060,97.500) lpos=(3.857,2.440,3.480) lprev=(3.610,2.350,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.8566,2.4395,3.4800) mvmt=(0.2466,0.0898,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6784,2.4395,-1.0050) mvmt=(0.2466,0.0898,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8086,1.8520,-3.8650) mvmt=(0.2466,0.0898,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4264,1.8520,-3.8650) mvmt=(0.2466,0.0898,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8566,2.4395,3.5000) mvmt=(0.2466,0.0898,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8566,2.4395,2.7300) mvmt=(0.2466,0.0898,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.643,9.060,96.750) lpos=(3.857,2.440,2.730) lprev=(3.610,2.350,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.8566,2.4395,2.7300) mvmt=(0.2466,0.0898,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.8566,2.4395,2.7300) mvmt=(0.2466,0.0898,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.8566,2.4395,2.7300) out=(3.8566,2.4395,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(3.8566,2.4395,3.4800) mvmt=(0.2466,0.0898,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.643,9.060,97.500) lpos=(3.857,2.440,3.480) lprev=(3.610,2.350,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.8566,2.4395,3.4800) mvmt=(0.2466,0.0898,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.6784,2.4395,-1.0050) mvmt=(0.2466,0.0898,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8086,1.8520,-3.8650) mvmt=(0.2466,0.0898,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4264,1.8520,-3.8650) mvmt=(0.2466,0.0898,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8566,2.4395,3.5000) mvmt=(0.2466,0.0898,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.0984,2.5275,3.4800) mvmt=(0.2418,0.0880,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.402,8.972,97.500) lpos=(4.098,2.528,3.480) lprev=(3.857,2.440,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.0984,2.5275,3.4800) mvmt=(0.2418,0.0880,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4366,2.5275,-1.0050) mvmt=(0.2418,0.0880,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1846,1.9400,-3.8650) mvmt=(0.2418,0.0880,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0984,2.5275,3.5000) mvmt=(0.2418,0.0880,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0984,2.5275,2.7300) mvmt=(0.2418,0.0880,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.402,8.972,96.750) lpos=(4.098,2.528,2.730) lprev=(3.857,2.440,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.0984,2.5275,2.7300) mvmt=(0.2418,0.0880,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.0984,2.5275,2.7300) mvmt=(0.2418,0.0880,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.0984,2.5275,2.7300) out=(4.0984,2.5275,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(4.0984,2.5275,3.4800) mvmt=(0.2418,0.0880,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.402,8.972,97.500) lpos=(4.098,2.528,3.480) lprev=(3.857,2.440,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.0984,2.5275,3.4800) mvmt=(0.2418,0.0880,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4366,2.5275,-1.0050) mvmt=(0.2418,0.0880,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1846,1.9400,-3.8650) mvmt=(0.2418,0.0880,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0984,2.5275,3.5000) mvmt=(0.2418,0.0880,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.3437,2.6168,3.4800) mvmt=(0.2453,0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.156,8.883,97.500) lpos=(4.344,2.617,3.480) lprev=(4.098,2.528,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.3437,2.6168,3.4800) mvmt=(0.2453,0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1913,2.6168,-1.0050) mvmt=(0.2453,0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9393,2.0293,-3.8650) mvmt=(0.2453,0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3437,2.6168,3.5000) mvmt=(0.2453,0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3437,2.6168,2.7300) mvmt=(0.2453,0.0893,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.156,8.883,96.750) lpos=(4.344,2.617,2.730) lprev=(4.098,2.528,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.3437,2.6168,2.7300) mvmt=(0.2453,0.0893,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.3437,2.6168,2.7300) mvmt=(0.2453,0.0893,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.3437,2.6168,2.7300) out=(4.3437,2.6168,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(4.3437,2.6168,3.4800) mvmt=(0.2453,0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.156,8.883,97.500) lpos=(4.344,2.617,3.480) lprev=(4.098,2.528,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.3437,2.6168,3.4800) mvmt=(0.2453,0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1913,2.6168,-1.0050) mvmt=(0.2453,0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9393,2.0293,-3.8650) mvmt=(0.2453,0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3437,2.6168,3.5000) mvmt=(0.2453,0.0893,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.5851,2.7047,3.4800) mvmt=(0.2414,0.0879,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.915,8.795,97.500) lpos=(4.585,2.705,3.480) lprev=(4.344,2.617,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5851,2.7047,3.4800) mvmt=(0.2414,0.0879,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9499,2.7047,-1.0050) mvmt=(0.2414,0.0879,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6979,2.1172,-3.8650) mvmt=(0.2414,0.0879,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5851,2.7047,3.5000) mvmt=(0.2414,0.0879,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5851,2.7047,2.7300) mvmt=(0.2414,0.0879,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.915,8.795,96.750) lpos=(4.585,2.705,2.730) lprev=(4.344,2.617,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5851,2.7047,2.7300) mvmt=(0.2414,0.0879,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.5851,2.7047,2.7300) mvmt=(0.2414,0.0879,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.5851,2.7047,2.7300) out=(4.5851,2.7047,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(4.5851,2.7047,3.4800) mvmt=(0.2414,0.0879,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.915,8.795,97.500) lpos=(4.585,2.705,3.480) lprev=(4.344,2.617,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5851,2.7047,3.4800) mvmt=(0.2414,0.0879,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9499,2.7047,-1.0050) mvmt=(0.2414,0.0879,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6979,2.1172,-3.8650) mvmt=(0.2414,0.0879,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5851,2.7047,3.5000) mvmt=(0.2414,0.0879,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.8335,2.7951,3.4800) mvmt=(0.2484,0.0904,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.666,8.705,97.500) lpos=(4.834,2.795,3.480) lprev=(4.585,2.705,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.8335,2.7951,3.4800) mvmt=(0.2484,0.0904,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7015,2.7951,-1.0050) mvmt=(0.2484,0.0904,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4495,2.2076,-3.8650) mvmt=(0.2484,0.0904,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8335,2.7951,3.5000) mvmt=(0.2484,0.0904,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8335,2.7951,2.7300) mvmt=(0.2484,0.0904,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.666,8.705,96.750) lpos=(4.834,2.795,2.730) lprev=(4.585,2.705,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.8335,2.7951,2.7300) mvmt=(0.2484,0.0904,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.8335,2.7951,2.7300) mvmt=(0.2484,0.0904,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.8335,2.7951,2.7300) out=(4.8335,2.7951,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(4.8335,2.7951,3.4800) mvmt=(0.2484,0.0904,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.666,8.705,97.500) lpos=(4.834,2.795,3.480) lprev=(4.585,2.705,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.8335,2.7951,3.4800) mvmt=(0.2484,0.0904,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7015,2.7951,-1.0050) mvmt=(0.2484,0.0904,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4495,2.2076,-3.8650) mvmt=(0.2484,0.0904,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8335,2.7951,3.5000) mvmt=(0.2484,0.0904,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.8619,2.9329,3.4800) mvmt=(0.0284,0.1378,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.638,8.567,97.500) lpos=(4.862,2.933,3.480) lprev=(4.834,2.795,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.8619,2.9329,3.4800) mvmt=(0.0284,0.1378,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6731,2.9329,-1.0050) mvmt=(0.0284,0.1378,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4211,2.3454,-3.8650) mvmt=(0.0284,0.1378,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8619,2.9329,3.5000) mvmt=(0.0284,0.1378,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8619,2.9329,2.7300) mvmt=(0.0284,0.1378,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.638,8.567,96.750) lpos=(4.862,2.933,2.730) lprev=(4.834,2.795,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.8619,2.9329,2.7300) mvmt=(0.0284,0.1378,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.8619,2.9329,2.7300) mvmt=(0.0284,0.1378,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.8619,2.9329,2.7300) out=(4.8619,2.9329,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(4.8619,2.9329,3.4800) mvmt=(0.0284,0.1378,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.638,8.567,97.500) lpos=(4.862,2.933,3.480) lprev=(4.834,2.795,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.8619,2.9329,3.4800) mvmt=(0.0284,0.1378,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6731,2.9329,-1.0050) mvmt=(0.0284,0.1378,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4211,2.3454,-3.8650) mvmt=(0.0284,0.1378,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8619,2.9329,3.5000) mvmt=(0.0284,0.1378,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementStrafeRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.8892,3.0651,3.4800) mvmt=(0.0273,0.1322,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.611,8.435,97.500) lpos=(4.889,3.065,3.480) lprev=(4.862,2.933,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.8892,3.0651,3.4800) mvmt=(0.0273,0.1322,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6458,3.0651,-1.0050) mvmt=(0.0273,0.1322,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3938,2.4776,-3.8650) mvmt=(0.0273,0.1322,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8892,3.0651,3.5000) mvmt=(0.0273,0.1322,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8892,3.0651,2.7300) mvmt=(0.0273,0.1322,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.611,8.435,96.750) lpos=(4.889,3.065,2.730) lprev=(4.862,2.933,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.8892,3.0651,2.7300) mvmt=(0.0273,0.1322,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.8892,3.0651,2.7300) mvmt=(0.0273,0.1322,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.8892,3.0651,2.7300) out=(4.8892,3.0651,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(4.8892,3.0651,3.4800) mvmt=(0.0273,0.1322,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.611,8.435,97.500) lpos=(4.889,3.065,3.480) lprev=(4.862,2.933,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.8892,3.0651,3.4800) mvmt=(0.0273,0.1322,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6458,3.0651,-1.0050) mvmt=(0.0273,0.1322,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3938,2.4776,-3.8650) mvmt=(0.0273,0.1322,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8892,3.0651,3.5000) mvmt=(0.0273,0.1322,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.9156,3.1935,3.4800) mvmt=(0.0265,0.1284,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.584,8.306,97.500) lpos=(4.916,3.194,3.480) lprev=(4.889,3.065,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.9156,3.1935,3.4800) mvmt=(0.0265,0.1284,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6194,3.1935,-1.0050) mvmt=(0.0265,0.1284,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3674,2.6060,-3.8650) mvmt=(0.0265,0.1284,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9156,3.1935,3.5000) mvmt=(0.0265,0.1284,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9156,3.1935,2.7300) mvmt=(0.0265,0.1284,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.584,8.306,96.750) lpos=(4.916,3.194,2.730) lprev=(4.889,3.065,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.9156,3.1935,2.7300) mvmt=(0.0265,0.1284,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.9156,3.1935,2.7300) mvmt=(0.0265,0.1284,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.9156,3.1935,2.7300) out=(4.9156,3.1935,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(4.9156,3.1935,3.4800) mvmt=(0.0265,0.1284,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.584,8.306,97.500) lpos=(4.916,3.194,3.480) lprev=(4.889,3.065,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.9156,3.1935,3.4800) mvmt=(0.0265,0.1284,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6194,3.1935,-1.0050) mvmt=(0.0265,0.1284,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3674,2.6060,-3.8650) mvmt=(0.0265,0.1284,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9156,3.1935,3.5000) mvmt=(0.0265,0.1284,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.9421,3.3217,3.4800) mvmt=(0.0264,0.1282,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.558,8.178,97.500) lpos=(4.942,3.322,3.480) lprev=(4.916,3.194,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.9421,3.3217,3.4800) mvmt=(0.0264,0.1282,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5929,3.3217,-1.0050) mvmt=(0.0264,0.1282,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3409,2.7342,-3.8650) mvmt=(0.0264,0.1282,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9421,3.3217,3.5000) mvmt=(0.0264,0.1282,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9421,3.3217,2.7300) mvmt=(0.0264,0.1282,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.558,8.178,96.750) lpos=(4.942,3.322,2.730) lprev=(4.916,3.194,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.9421,3.3217,2.7300) mvmt=(0.0264,0.1282,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.9421,3.3217,2.7300) mvmt=(0.0264,0.1282,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.9421,3.3217,2.7300) out=(4.9421,3.3217,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(4.9421,3.3217,3.4800) mvmt=(0.0264,0.1282,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.558,8.178,97.500) lpos=(4.942,3.322,3.480) lprev=(4.916,3.194,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.9421,3.3217,3.4800) mvmt=(0.0264,0.1282,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5929,3.3217,-1.0050) mvmt=(0.0264,0.1282,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3409,2.7342,-3.8650) mvmt=(0.0264,0.1282,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9421,3.3217,3.5000) mvmt=(0.0264,0.1282,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.5298,3.4067,3.4800) mvmt=(-0.4122,0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.970,8.093,97.500) lpos=(4.530,3.407,3.480) lprev=(4.942,3.322,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5298,3.4067,3.4800) mvmt=(-0.4122,0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0052,3.4067,-1.0050) mvmt=(-0.4122,0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7532,2.8192,-3.8650) mvmt=(-0.4122,0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5298,3.4067,3.5000) mvmt=(-0.4122,0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1833,2.4477,3.4950) mvmt=(0.1188,0.4038,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5298,3.4067,2.7300) mvmt=(-0.4122,0.0850,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.970,8.093,96.750) lpos=(4.530,3.407,2.730) lprev=(4.942,3.322,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5298,3.4067,2.7300) mvmt=(-0.4122,0.0850,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.5298,3.4067,2.7300) mvmt=(-0.4122,0.0850,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.5298,3.4067,2.7300) out=(4.5298,3.4067,3.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-3.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=3 halted=False +[push-back-disp] site=dispatch center=(4.5298,3.4067,3.4800) mvmt=(-0.4122,0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(125.970,8.093,97.500) lpos=(4.530,3.407,3.480) lprev=(4.942,3.322,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5298,3.4067,3.4800) mvmt=(-0.4122,0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0052,3.4067,-1.0050) mvmt=(-0.4122,0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7532,2.8192,-3.8650) mvmt=(-0.4122,0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5298,3.4067,3.5000) mvmt=(-0.4122,0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1833,2.4477,3.4950) mvmt=(0.1188,0.4038,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.1053,3.4942,3.4800) mvmt=(-0.4245,0.0875,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.395,8.006,97.500) lpos=(4.105,3.494,3.480) lprev=(4.530,3.407,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.1053,3.4942,3.4800) mvmt=(-0.4245,0.0875,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4297,3.4942,-1.0050) mvmt=(-0.4245,0.0875,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1777,2.9067,-3.8650) mvmt=(-0.4245,0.0875,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1053,3.4942,3.5000) mvmt=(-0.4245,0.0875,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1053,3.4942,2.7300) mvmt=(-0.4245,0.0875,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.395,8.006,96.750) lpos=(4.105,3.494,2.730) lprev=(4.530,3.407,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.1053,3.4942,2.7300) mvmt=(-0.4245,0.0875,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.1053,3.4942,2.7300) mvmt=(-0.4245,0.0875,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8690,2.7063,1.3497) mvmt=(-0.0875,-0.4245,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1060,2.4663,1.2447) mvmt=(-0.0875,-0.4245,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1060,0.2551,-0.1053) mvmt=(-0.0875,-0.4245,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1060,0.2551,-0.1053) out=(0.1060,0.2551,0.6300) delta=(0.0000,0.0000,0.7353) deltaMag=0.7353 n=(0.0000,0.0000,1.0000) d=-0.1500 r=0.4800 winterp=1.0000->0.0196 dpPos=-0.2553 dpMove=-0.7500 iDist=0.9804 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.020 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(4.1053,3.4942,3.4653) mvmt=(-0.4245,0.0875,-0.0147) collide=False insertType=0 objState=0x303 winterp=0.0196 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.395,8.006,97.485) lpos=(4.105,3.494,3.465) lprev=(4.530,3.407,3.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.1053,3.4942,3.4653) mvmt=(-0.4245,0.0875,-0.0147) collide=False insertType=0 objState=0x303 winterp=0.0196 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4297,3.4942,-1.0197) mvmt=(-0.4245,0.0875,-0.0147) collide=False insertType=0 objState=0x303 winterp=0.0196 return=-1 +[push-back-disp] site=dispatch center=(-1.1777,2.9067,-3.8797) mvmt=(-0.4245,0.0875,-0.0147) collide=False insertType=0 objState=0x303 winterp=0.0196 return=-1 +[push-back-disp] site=dispatch center=(4.1053,3.4942,3.4853) mvmt=(-0.4245,0.0875,-0.0147) collide=False insertType=0 objState=0x303 winterp=0.0196 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.6861,3.5806,3.4653) mvmt=(-0.4193,0.0864,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.814,7.919,97.485) lpos=(3.686,3.581,3.465) lprev=(4.105,3.494,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.6861,3.5806,3.4653) mvmt=(-0.4193,0.0864,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.8489,3.5806,-1.0197) mvmt=(-0.4193,0.0864,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5969,2.9931,-3.8797) mvmt=(-0.4193,0.0864,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6861,3.5806,3.4853) mvmt=(-0.4193,0.0864,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6861,3.5806,2.7153) mvmt=(-0.4193,0.0864,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.814,7.919,96.735) lpos=(3.686,3.581,2.715) lprev=(4.105,3.494,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.6861,3.5806,2.7153) mvmt=(-0.4193,0.0864,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.6861,3.5806,2.7153) mvmt=(-0.4193,0.0864,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9554,2.2871,1.3350) mvmt=(-0.0864,-0.4193,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0196,2.0471,1.2300) mvmt=(-0.0864,-0.4193,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0196,-0.1642,-0.1200) mvmt=(-0.0864,-0.4193,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0196,-0.1642,-0.1200) out=(0.0196,-0.1642,0.6300) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.1500 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(3.6861,3.5806,3.4653) mvmt=(-0.4193,0.0864,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(126.814,7.919,97.485) lpos=(3.686,3.581,3.465) lprev=(4.105,3.494,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.6861,3.5806,3.4653) mvmt=(-0.4193,0.0864,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.8489,3.5806,-1.0197) mvmt=(-0.4193,0.0864,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5969,2.9931,-3.8797) mvmt=(-0.4193,0.0864,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6861,3.5806,3.4853) mvmt=(-0.4193,0.0864,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.2723,3.6659,3.4653) mvmt=(-0.4137,0.0853,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.228,7.834,97.485) lpos=(3.272,3.666,3.465) lprev=(3.686,3.581,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.2723,3.6659,3.4653) mvmt=(-0.4137,0.0853,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.2627,3.6659,-1.0197) mvmt=(-0.4137,0.0853,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0107,3.0784,-3.8797) mvmt=(-0.4137,0.0853,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2723,3.6659,3.4853) mvmt=(-0.4137,0.0853,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2723,3.6659,2.7153) mvmt=(-0.4137,0.0853,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.228,7.834,96.735) lpos=(3.272,3.666,2.715) lprev=(3.686,3.581,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.2723,3.6659,2.7153) mvmt=(-0.4137,0.0853,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.2723,3.6659,2.7153) mvmt=(-0.4137,0.0853,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0407,1.8733,1.3350) mvmt=(-0.0853,-0.4137,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0657,1.6333,1.2300) mvmt=(-0.0853,-0.4137,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0657,1.6333,1.2300) out=(-0.0657,1.6333,1.9800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.000,0.000,1.000) D=-97.005 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(3.2723,3.6659,3.4653) mvmt=(-0.4137,0.0853,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.228,7.834,97.485) lpos=(3.272,3.666,3.465) lprev=(3.686,3.581,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.2723,3.6659,3.4653) mvmt=(-0.4137,0.0853,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.2627,3.6659,-1.0197) mvmt=(-0.4137,0.0853,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0107,3.0784,-3.8797) mvmt=(-0.4137,0.0853,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2723,3.6659,3.4853) mvmt=(-0.4137,0.0853,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.0086,3.7203,3.4653) mvmt=(-0.2638,0.0544,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.491,7.780,97.485) lpos=(3.009,3.720,3.465) lprev=(3.272,3.666,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.0086,3.7203,3.4653) mvmt=(-0.2638,0.0544,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5265,3.7203,-1.0197) mvmt=(-0.2638,0.0544,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.2744,3.1328,-3.8797) mvmt=(-0.2638,0.0544,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0086,3.7203,3.4853) mvmt=(-0.2638,0.0544,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0086,3.7203,2.7153) mvmt=(-0.2638,0.0544,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.491,7.780,96.735) lpos=(3.009,3.720,2.715) lprev=(3.272,3.666,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.0086,3.7203,2.7153) mvmt=(-0.2638,0.0544,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.0086,3.7203,2.7153) mvmt=(-0.2638,0.0544,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0950,1.6095,1.3350) mvmt=(-0.0544,-0.2638,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1200,1.3695,1.2300) mvmt=(-0.0544,-0.2638,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1200,1.3695,1.2300) out=(-0.1200,1.3695,1.9800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(3.0086,3.7203,3.4653) mvmt=(-0.2638,0.0544,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.491,7.780,97.485) lpos=(3.009,3.720,3.465) lprev=(3.272,3.666,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.0086,3.7203,3.4653) mvmt=(-0.2638,0.0544,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.5265,3.7203,-1.0197) mvmt=(-0.2638,0.0544,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.2744,3.1328,-3.8797) mvmt=(-0.2638,0.0544,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0086,3.7203,3.4853) mvmt=(-0.2638,0.0544,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.7448,3.7747,3.4653) mvmt=(-0.2638,0.0544,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.755,7.725,97.485) lpos=(2.745,3.775,3.465) lprev=(3.009,3.720,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7448,3.7747,3.4653) mvmt=(-0.2638,0.0544,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7902,3.7747,-1.0197) mvmt=(-0.2638,0.0544,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5382,3.1872,-3.8797) mvmt=(-0.2638,0.0544,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7448,3.7747,3.4853) mvmt=(-0.2638,0.0544,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7448,3.7747,2.7153) mvmt=(-0.2638,0.0544,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.755,7.725,96.735) lpos=(2.745,3.775,2.715) lprev=(3.009,3.720,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7448,3.7747,2.7153) mvmt=(-0.2638,0.0544,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.7448,3.7747,2.7153) mvmt=(-0.2638,0.0544,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1494,1.3458,1.3350) mvmt=(-0.0544,-0.2638,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1744,1.1058,1.2300) mvmt=(-0.0544,-0.2638,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1744,1.1058,1.2300) out=(-0.1744,1.1058,1.9800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.7448,3.7747,3.4653) mvmt=(-0.2638,0.0544,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(127.755,7.725,97.485) lpos=(2.745,3.775,3.465) lprev=(3.009,3.720,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7448,3.7747,3.4653) mvmt=(-0.2638,0.0544,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.7902,3.7747,-1.0197) mvmt=(-0.2638,0.0544,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5382,3.1872,-3.8797) mvmt=(-0.2638,0.0544,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7448,3.7747,3.4853) mvmt=(-0.2638,0.0544,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-97.005 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.3323,3.8597,3.4653) mvmt=(-0.4125,0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.168,7.640,97.485) lpos=(2.332,3.860,3.465) lprev=(2.745,3.775,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3323,3.8597,3.4653) mvmt=(-0.4125,0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2027,3.8597,-1.0197) mvmt=(-0.4125,0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2843,3.2722,-3.8797) mvmt=(-0.4125,0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9507,3.2722,-3.8797) mvmt=(-0.4125,0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3323,3.8597,3.4853) mvmt=(-0.4125,0.0850,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3323,3.8597,2.7153) mvmt=(-0.4125,0.0850,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.168,7.640,96.735) lpos=(2.332,3.860,2.715) lprev=(2.745,3.775,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3323,3.8597,2.7153) mvmt=(-0.4125,0.0850,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3323,3.8597,2.7153) mvmt=(-0.4125,0.0850,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2344,0.9333,1.3350) mvmt=(-0.0850,-0.4125,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,0.6933,1.2300) mvmt=(-0.0850,-0.4125,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2594,0.6933,1.2300) out=(-0.2594,0.6933,1.5526) delta=(0.0000,0.0000,0.3226) deltaMag=0.3226 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.5698 dpPos=0.2558 dpMove=-0.5213 iDist=0.4302 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-97.005 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.3323,3.8597,3.0379) mvmt=(-0.4125,0.0850,-0.4274) collide=False insertType=0 objState=0x303 winterp=0.5698 return=-1 +[indoor-bsp] cell=0xA9B4014B wpos=(128.168,7.640,97.058) lpos=(2.332,3.860,3.038) lprev=(2.745,3.775,3.465) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3323,3.8597,3.0379) mvmt=(-0.4125,0.0850,-0.4274) collide=False insertType=0 objState=0x303 winterp=0.5698 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3323,3.8597,3.0379) mvmt=(-0.4125,0.0850,-0.4274) collide=False insertType=0 objState=0x303 winterp=0.5698 return=-1 +[other-cells] primary=0xA9B4014B iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4014B other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-3.2027,3.8597,-1.4471) mvmt=(-0.4125,0.0850,-0.4274) collide=False insertType=0 objState=0x303 winterp=0.5698 return=-1 +[push-back-disp] site=dispatch center=(3.2843,3.2722,-4.3071) mvmt=(-0.4125,0.0850,-0.4274) collide=False insertType=0 objState=0x303 winterp=0.5698 return=-1 +[push-back-disp] site=dispatch center=(-2.9507,3.2722,-4.3071) mvmt=(-0.4125,0.0850,-0.4274) collide=False insertType=0 objState=0x303 winterp=0.5698 return=-1 +[push-back-disp] site=dispatch center=(3.2823,-0.3603,0.0379) mvmt=(-0.4125,0.0850,-0.4274) collide=False insertType=0 objState=0x303 winterp=0.5698 return=-1 +[push-back-disp] site=dispatch center=(2.3323,3.8597,3.0579) mvmt=(-0.4125,0.0850,-0.4274) collide=False insertType=0 objState=0x303 winterp=0.5698 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.1336,3.9445,2.8324) mvmt=(-0.1987,0.0848,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1336,3.9445,2.8324) mvmt=(-0.1987,0.0848,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.366,7.556,96.852) lpos=(2.134,3.944,2.832) lprev=(2.332,3.860,3.038) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1336,3.9445,2.8324) mvmt=(-0.1987,0.0848,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.1336,3.9445,2.8324) mvmt=(-0.1987,0.0848,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3192,0.7346,1.4521) mvmt=(-0.0848,-0.1987,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3442,0.4946,1.3471) mvmt=(-0.0848,-0.1987,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3442,-1.7167,-0.0029) mvmt=(-0.0848,-0.1987,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.4014,3.9445,1.3524) mvmt=(-0.1987,0.0848,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.4014,3.9445,-1.6526) mvmt=(-0.1987,0.0848,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1636,0.6673,-0.1626) mvmt=(-0.1987,0.0848,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0856,3.3570,-4.5126) mvmt=(-0.1987,0.0848,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1494,3.3570,-4.5126) mvmt=(-0.1987,0.0848,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0836,-0.2755,-0.1676) mvmt=(-0.1987,0.0848,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1336,3.9445,2.8524) mvmt=(-0.1987,0.0848,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.366,7.556,96.852) lpos=(2.134,3.944,2.832) lprev=(2.332,3.860,3.038) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(2.1336,3.8597,2.8324) mvmt=(-0.1987,-0.0000,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.366,7.640,96.852) lpos=(2.134,3.860,2.832) lprev=(2.332,3.860,3.038) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1336,3.8597,2.8324) mvmt=(-0.1987,-0.0000,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.1336,3.8597,2.8324) mvmt=(-0.1987,-0.0000,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2344,0.7346,1.4521) mvmt=(-0.0000,-0.1987,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,0.4946,1.3471) mvmt=(-0.0000,-0.1987,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-1.7167,-0.0029) mvmt=(-0.0000,-0.1987,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.4014,3.8597,1.3524) mvmt=(-0.1987,0.0000,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.4014,3.8597,-1.6526) mvmt=(-0.1987,0.0000,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1636,0.5825,-0.1626) mvmt=(-0.1987,0.0000,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1494,3.2722,-4.5126) mvmt=(-0.1987,0.0000,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0836,-0.3603,-0.1676) mvmt=(-0.1987,0.0000,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1336,3.8597,2.8524) mvmt=(-0.1987,0.0000,-0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1336,3.8597,2.0824) mvmt=(-0.1987,-0.0000,-0.9555) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.366,7.640,96.102) lpos=(2.134,3.860,2.082) lprev=(2.332,3.860,3.038) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,0.7346,0.7021) mvmt=(-0.0000,-0.1987,-0.9555) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,0.4946,0.5971) mvmt=(-0.0000,-0.1987,-0.9555) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2594,0.4946,0.5971) out=(-0.2594,0.4946,1.3471) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(2.1336,3.8597,2.8324) mvmt=(-0.1987,-0.0000,-0.2055) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4014A wpos=(128.366,7.640,96.852) lpos=(2.134,3.860,2.832) lprev=(2.332,3.860,3.038) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1336,3.8597,2.8324) mvmt=(-0.1987,-0.0000,-0.2055) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.1336,3.8597,2.8324) mvmt=(-0.1987,-0.0000,-0.2055) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4014A iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4014A other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2344,0.7346,1.4521) mvmt=(-0.0000,-0.1987,-0.2055) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,0.4946,1.3471) mvmt=(-0.0000,-0.1987,-0.2055) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-1.7167,-0.0029) mvmt=(-0.0000,-0.1987,-0.2055) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.4014,3.8597,1.3524) mvmt=(-0.1987,0.0000,-0.2055) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.4014,3.8597,-1.6526) mvmt=(-0.1987,0.0000,-0.2055) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1636,0.5825,-0.1626) mvmt=(-0.1987,0.0000,-0.2055) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1494,3.2722,-4.5126) mvmt=(-0.1987,0.0000,-0.2055) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0836,-0.3603,-0.1676) mvmt=(-0.1987,0.0000,-0.2055) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1336,3.8597,2.8524) mvmt=(-0.1987,0.0000,-0.2055) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cell-transit] 0xA9B4014B -> 0xA9B4014A pos=(128.366,7.640,96.372) reason=resolver +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.9444,3.8597,2.6367) mvmt=(-0.1892,0.0000,-0.1958) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.556,7.640,96.657) lpos=(1.944,3.860,2.637) lprev=(2.134,3.860,2.832) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9444,3.8597,2.6367) mvmt=(-0.1892,0.0000,-0.1958) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.9444,3.8597,2.6367) mvmt=(-0.1892,0.0000,-0.1958) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2344,0.5454,1.2563) mvmt=(-0.0000,-0.1892,-0.1958) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,0.3054,1.1514) mvmt=(-0.0000,-0.1892,-0.1958) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-1.9059,-0.1987) mvmt=(-0.0000,-0.1892,-0.1958) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5906,3.8597,1.1566) mvmt=(-0.1892,0.0000,-0.1958) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5906,3.8597,-1.8484) mvmt=(-0.1892,0.0000,-0.1958) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9744,0.5825,-0.3584) mvmt=(-0.1892,0.0000,-0.1958) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8944,-0.3603,-0.3633) mvmt=(-0.1892,-0.0000,-0.1958) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9444,3.8597,2.6566) mvmt=(-0.1892,0.0000,-0.1958) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9444,3.8597,1.8867) mvmt=(-0.1892,0.0000,-0.9458) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.556,7.640,95.907) lpos=(1.944,3.860,1.887) lprev=(2.134,3.860,2.832) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,0.5454,0.5063) mvmt=(-0.0000,-0.1892,-0.9458) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,0.3054,0.4014) mvmt=(-0.0000,-0.1892,-0.9458) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2594,0.3054,0.4014) out=(-0.2594,0.3054,1.1514) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.9444,3.8597,2.6367) mvmt=(-0.1892,0.0000,-0.1957) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.556,7.640,96.657) lpos=(1.944,3.860,2.637) lprev=(2.134,3.860,2.832) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9444,3.8597,2.6367) mvmt=(-0.1892,0.0000,-0.1957) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.9444,3.8597,2.6367) mvmt=(-0.1892,0.0000,-0.1957) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014B result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014B bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2344,0.5454,1.2564) mvmt=(-0.0000,-0.1892,-0.1957) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,0.3054,1.1514) mvmt=(-0.0000,-0.1892,-0.1957) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-1.9059,-0.1986) mvmt=(-0.0000,-0.1892,-0.1957) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5906,3.8597,1.1567) mvmt=(-0.1892,0.0000,-0.1957) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5906,3.8597,-1.8483) mvmt=(-0.1892,0.0000,-0.1957) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9744,0.5825,-0.3583) mvmt=(-0.1892,0.0000,-0.1957) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8944,-0.3603,-0.3633) mvmt=(-0.1892,-0.0000,-0.1957) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9444,3.8597,2.6567) mvmt=(-0.1892,0.0000,-0.1957) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cell-transit] 0xA9B4014A -> 0xA9B4013F pos=(128.556,7.640,96.177) reason=resolver +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7505,3.9424,2.4361) mvmt=(-0.1939,0.0827,-0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7505,3.9424,2.4361) mvmt=(-0.1939,0.0827,-0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.750,7.558,96.456) lpos=(1.750,3.942,2.436) lprev=(1.944,3.860,2.637) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7505,3.9424,2.4361) mvmt=(-0.1939,0.0827,-0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3172,0.3515,1.0558) mvmt=(-0.0827,-0.1939,-0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3422,0.1115,0.9508) mvmt=(-0.0827,-0.1939,-0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3422,-2.0998,-0.3992) mvmt=(-0.0827,-0.1939,-0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.7845,3.9424,0.9561) mvmt=(-0.1939,0.0827,-0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7805,0.6652,-0.5589) mvmt=(-0.1939,0.0827,-0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7005,-0.2776,-0.5639) mvmt=(-0.1939,0.0827,-0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6877,1.6843,2.4485) mvmt=(0.1913,-0.0886,-0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7505,3.9424,2.4561) mvmt=(-0.1939,0.0827,-0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.750,7.558,96.456) lpos=(1.750,3.942,2.436) lprev=(1.944,3.860,2.637) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(1.7505,3.8597,2.4361) mvmt=(-0.1939,0.0000,-0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.750,7.640,96.456) lpos=(1.750,3.860,2.436) lprev=(1.944,3.860,2.637) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7505,3.8597,2.4361) mvmt=(-0.1939,0.0000,-0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2344,0.3515,1.0558) mvmt=(0.0000,-0.1939,-0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,0.1115,0.9508) mvmt=(-0.0000,-0.1939,-0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-2.0998,-0.3992) mvmt=(-0.0000,-0.1939,-0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.7845,3.8597,0.9561) mvmt=(-0.1939,0.0000,-0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7805,0.5825,-0.5589) mvmt=(-0.1939,0.0000,-0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7005,-0.3603,-0.5639) mvmt=(-0.1939,0.0000,-0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6902,1.7670,2.4485) mvmt=(0.1938,-0.0059,-0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7505,3.8597,2.4561) mvmt=(-0.1939,0.0000,-0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7505,3.8597,1.6861) mvmt=(-0.1939,0.0000,-0.9506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.750,7.640,95.706) lpos=(1.750,3.860,1.686) lprev=(1.944,3.860,2.637) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,0.3515,0.3058) mvmt=(0.0000,-0.1939,-0.9506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,0.1115,0.2008) mvmt=(-0.0000,-0.1939,-0.9506) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2594,0.1115,0.2008) out=(-0.2594,0.1115,0.9508) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.7505,3.8597,2.4361) mvmt=(-0.1939,0.0000,-0.2006) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.750,7.640,96.456) lpos=(1.750,3.860,2.436) lprev=(1.944,3.860,2.637) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7505,3.8597,2.4361) mvmt=(-0.1939,0.0000,-0.2006) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014A result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014A bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2344,0.3515,1.0558) mvmt=(0.0000,-0.1939,-0.2006) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,0.1115,0.9508) mvmt=(-0.0000,-0.1939,-0.2006) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-2.0998,-0.3992) mvmt=(-0.0000,-0.1939,-0.2006) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.7845,3.8597,0.9561) mvmt=(-0.1939,0.0000,-0.2006) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7805,0.5825,-0.5589) mvmt=(-0.1939,0.0000,-0.2006) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7005,-0.3603,-0.5639) mvmt=(-0.1939,0.0000,-0.2006) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6902,1.7670,2.4485) mvmt=(0.1938,-0.0059,-0.2006) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7505,3.8597,2.4561) mvmt=(-0.1939,0.0000,-0.2006) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.5592,3.8597,2.2381) mvmt=(-0.1913,0.0000,-0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.941,7.640,96.258) lpos=(1.559,3.860,2.238) lprev=(1.750,3.860,2.436) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,0.1602,0.8578) mvmt=(-0.0000,-0.1913,-0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-0.0798,0.7528) mvmt=(-0.0000,-0.1913,-0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-2.2911,-0.5972) mvmt=(-0.0000,-0.1913,-0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9758,3.8597,0.7581) mvmt=(-0.1913,0.0000,-0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8814,1.7612,2.2506) mvmt=(0.1912,-0.0058,-0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5592,3.8597,2.2581) mvmt=(-0.1913,0.0000,-0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5592,3.8597,1.4881) mvmt=(-0.1913,0.0000,-0.9479) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.941,7.640,95.508) lpos=(1.559,3.860,1.488) lprev=(1.750,3.860,2.436) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,0.1602,0.1078) mvmt=(-0.0000,-0.1913,-0.9479) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-0.0798,0.0028) mvmt=(-0.0000,-0.1913,-0.9479) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2594,-0.0798,0.0028) out=(-0.2594,-0.0798,0.7529) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.5592,3.8597,2.2382) mvmt=(-0.1913,0.0000,-0.1979) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.941,7.640,96.258) lpos=(1.559,3.860,2.238) lprev=(1.750,3.860,2.436) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,0.1602,0.8578) mvmt=(-0.0000,-0.1913,-0.1979) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-0.0798,0.7529) mvmt=(-0.0000,-0.1913,-0.1979) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-2.2911,-0.5972) mvmt=(-0.0000,-0.1913,-0.1979) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9758,3.8597,0.7581) mvmt=(-0.1913,0.0000,-0.1979) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8814,1.7612,2.2506) mvmt=(0.1912,-0.0058,-0.1979) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5592,3.8597,2.2581) mvmt=(-0.1913,0.0000,-0.1979) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.3538,3.9473,2.0257) mvmt=(-0.2054,0.0876,-0.2124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3538,3.9473,2.0257) mvmt=(-0.2054,0.0876,-0.2124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.146,7.553,96.046) lpos=(1.354,3.947,2.026) lprev=(1.559,3.860,2.238) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3221,-0.0452,0.6454) mvmt=(-0.0876,-0.2054,-0.2124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3471,-0.2852,0.5404) mvmt=(-0.0876,-0.2054,-0.2124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3471,-2.4965,-0.8096) mvmt=(-0.0876,-0.2054,-0.2124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0840,1.6674,2.0382) mvmt=(0.2026,-0.0938,-0.2124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3538,3.9473,2.0457) mvmt=(-0.2054,0.0876,-0.2124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.146,7.553,96.046) lpos=(1.354,3.947,2.026) lprev=(1.559,3.860,2.238) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(1.3538,3.8597,2.0257) mvmt=(-0.2054,0.0000,-0.2124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.146,7.640,96.046) lpos=(1.354,3.860,2.026) lprev=(1.559,3.860,2.238) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-0.0452,0.6454) mvmt=(-0.0000,-0.2054,-0.2124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-0.2852,0.5404) mvmt=(-0.0000,-0.2054,-0.2124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-2.4965,-0.8096) mvmt=(0.0000,-0.2054,-0.2124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0867,1.7550,2.0382) mvmt=(0.2053,-0.0062,-0.2124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3538,3.8597,2.0457) mvmt=(-0.2054,0.0000,-0.2124) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3538,3.8597,1.2757) mvmt=(-0.2054,0.0000,-0.9624) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.146,7.640,95.296) lpos=(1.354,3.860,1.276) lprev=(1.559,3.860,2.238) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-0.0452,-0.1046) mvmt=(-0.0000,-0.2054,-0.9624) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-0.2852,-0.2096) mvmt=(-0.0000,-0.2054,-0.9624) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2594,-0.2852,-0.2096) out=(-0.2594,-0.2852,0.5404) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.3538,3.8597,2.0257) mvmt=(-0.2054,0.0000,-0.2125) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.146,7.640,96.046) lpos=(1.354,3.860,2.026) lprev=(1.559,3.860,2.238) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-0.0452,0.6454) mvmt=(-0.0000,-0.2054,-0.2125) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-0.2852,0.5404) mvmt=(-0.0000,-0.2054,-0.2125) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-2.4965,-0.8096) mvmt=(0.0000,-0.2054,-0.2125) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0867,1.7550,2.0382) mvmt=(0.2053,-0.0062,-0.2125) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3538,3.8597,2.0457) mvmt=(-0.2054,0.0000,-0.2125) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.1620,3.8597,1.8273) mvmt=(-0.1918,0.0000,-0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.338,7.640,95.847) lpos=(1.162,3.860,1.827) lprev=(1.354,3.860,2.026) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-0.2370,0.4470) mvmt=(-0.0000,-0.1918,-0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-0.4770,0.3420) mvmt=(-0.0000,-0.1918,-0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-2.6883,-1.0080) mvmt=(-0.0000,-0.1918,-0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2784,1.7492,1.8397) mvmt=(0.1917,-0.0058,-0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1620,3.8597,1.8473) mvmt=(-0.1918,0.0000,-0.1984) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1620,3.8597,1.0773) mvmt=(-0.1918,0.0000,-0.9484) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.338,7.640,95.097) lpos=(1.162,3.860,1.077) lprev=(1.354,3.860,2.026) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-0.2370,-0.3030) mvmt=(-0.0000,-0.1918,-0.9484) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-0.4770,-0.4080) mvmt=(-0.0000,-0.1918,-0.9484) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2594,-0.4770,-0.4080) out=(-0.2594,-0.4770,0.3420) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(1.1620,3.8597,1.8273) mvmt=(-0.1918,0.0000,-0.1984) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.338,7.640,95.847) lpos=(1.162,3.860,1.827) lprev=(1.354,3.860,2.026) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-0.2370,0.4470) mvmt=(-0.0000,-0.1918,-0.1984) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-0.4770,0.3420) mvmt=(-0.0000,-0.1918,-0.1984) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-2.6883,-1.0080) mvmt=(-0.0000,-0.1918,-0.1984) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2784,1.7492,1.8397) mvmt=(0.1917,-0.0058,-0.1984) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1620,3.8597,1.8473) mvmt=(-0.1918,0.0000,-0.1984) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.9706,3.9414,1.6292) mvmt=(-0.1914,0.0817,-0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9706,3.9414,1.6292) mvmt=(-0.1914,0.0817,-0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.529,7.559,95.649) lpos=(0.971,3.941,1.629) lprev=(1.162,3.860,1.827) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3161,-0.4284,0.2489) mvmt=(-0.0817,-0.1914,-0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3411,-0.6684,0.1440) mvmt=(-0.0817,-0.1914,-0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3411,-2.8797,-1.2061) mvmt=(-0.0817,-0.1914,-0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4673,1.6618,1.6417) mvmt=(0.1889,-0.0874,-0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9706,3.9414,1.6492) mvmt=(-0.1914,0.0817,-0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.529,7.559,95.649) lpos=(0.971,3.941,1.629) lprev=(1.162,3.860,1.827) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(0.9706,3.8597,1.6292) mvmt=(-0.1914,0.0000,-0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.529,7.640,95.649) lpos=(0.971,3.860,1.629) lprev=(1.162,3.860,1.827) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-0.4284,0.2489) mvmt=(0.0000,-0.1914,-0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-0.6684,0.1440) mvmt=(-0.0000,-0.1914,-0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-2.8797,-1.2061) mvmt=(0.0000,-0.1914,-0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4697,1.7434,1.6417) mvmt=(0.1913,-0.0058,-0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9706,3.8597,1.6492) mvmt=(-0.1914,0.0000,-0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9706,3.8597,0.8792) mvmt=(-0.1914,0.0000,-0.9480) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.529,7.640,94.899) lpos=(0.971,3.860,0.879) lprev=(1.162,3.860,1.827) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-0.4284,-0.5011) mvmt=(0.0000,-0.1914,-0.9480) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-0.6684,-0.6060) mvmt=(-0.0000,-0.1914,-0.9480) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2594,-0.6684,-0.6060) out=(-0.2594,-0.6684,0.1440) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.9706,3.8597,1.6293) mvmt=(-0.1914,0.0000,-0.1980) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.529,7.640,95.649) lpos=(0.971,3.860,1.629) lprev=(1.162,3.860,1.827) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-0.4284,0.2490) mvmt=(0.0000,-0.1914,-0.1980) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-0.6684,0.1440) mvmt=(-0.0000,-0.1914,-0.1980) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-2.8797,-1.2060) mvmt=(0.0000,-0.1914,-0.1980) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4697,1.7434,1.6417) mvmt=(0.1913,-0.0058,-0.1980) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9706,3.8597,1.6493) mvmt=(-0.1914,0.0000,-0.1980) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.7636,3.8597,1.4151) mvmt=(-0.2070,0.0000,-0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.736,7.640,95.435) lpos=(0.764,3.860,1.415) lprev=(0.971,3.860,1.629) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-0.6354,0.0348) mvmt=(-0.0000,-0.2070,-0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-0.8754,-0.0702) mvmt=(-0.0000,-0.2070,-0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-3.0867,-1.4202) mvmt=(-0.0000,-0.2070,-0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6766,1.7372,1.4276) mvmt=(0.2069,-0.0063,-0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7636,3.8597,1.4351) mvmt=(-0.2070,0.0000,-0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7636,3.8597,0.6651) mvmt=(-0.2070,0.0000,-0.9641) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.736,7.640,94.685) lpos=(0.764,3.860,0.665) lprev=(0.971,3.860,1.629) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-0.6354,-0.7152) mvmt=(-0.0000,-0.2070,-0.9641) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-0.8754,-0.8202) mvmt=(-0.0000,-0.2070,-0.9641) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2594,-0.8754,-0.8202) out=(-0.2594,-0.8754,-0.0702) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.7636,3.8597,1.4151) mvmt=(-0.2070,0.0000,-0.2141) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.736,7.640,95.435) lpos=(0.764,3.860,1.415) lprev=(0.971,3.860,1.629) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-0.6354,0.0348) mvmt=(-0.0000,-0.2070,-0.2141) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-0.8754,-0.0702) mvmt=(-0.0000,-0.2070,-0.2141) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-3.0867,-1.4202) mvmt=(-0.0000,-0.2070,-0.2141) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6766,1.7372,1.4276) mvmt=(0.2069,-0.0063,-0.2141) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7636,3.8597,1.4351) mvmt=(-0.2070,0.0000,-0.2141) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.5607,3.9463,1.2053) mvmt=(-0.2029,0.0866,-0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5607,3.9463,1.2053) mvmt=(-0.2029,0.0866,-0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.939,7.554,95.225) lpos=(0.561,3.946,1.205) lprev=(0.764,3.860,1.415) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3210,-0.8383,-0.1750) mvmt=(-0.0866,-0.2029,-0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3460,-1.0783,-0.2800) mvmt=(-0.0866,-0.2029,-0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3460,-3.2896,-1.6300) mvmt=(-0.0866,-0.2029,-0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8768,1.6445,1.2177) mvmt=(0.2002,-0.0927,-0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5607,3.9463,1.2253) mvmt=(-0.2029,0.0866,-0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.939,7.554,95.225) lpos=(0.561,3.946,1.205) lprev=(0.764,3.860,1.415) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(0.5607,3.8597,1.2053) mvmt=(-0.2029,0.0000,-0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.939,7.640,95.225) lpos=(0.561,3.860,1.205) lprev=(0.764,3.860,1.415) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-0.8383,-0.1750) mvmt=(-0.0000,-0.2029,-0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-1.0783,-0.2800) mvmt=(-0.0000,-0.2029,-0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-3.2896,-1.6300) mvmt=(-0.0000,-0.2029,-0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8794,1.7311,1.2177) mvmt=(0.2028,-0.0061,-0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5607,3.8597,1.2253) mvmt=(-0.2029,0.0000,-0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5607,3.8597,0.4553) mvmt=(-0.2029,0.0000,-0.9599) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.5607,3.8597,0.4553) out=(0.5607,3.8597,0.4800) delta=(0.0000,0.0000,0.0247) deltaMag=0.0247 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.9670 dpPos=0.4553 dpMove=-0.7500 iDist=0.0330 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(129.939,7.640,94.475) lpos=(0.561,3.860,0.455) lprev=(0.764,3.860,1.415) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(0.5607,3.8597,0.4800) mvmt=(-0.2029,0.0000,-0.9351) collide=False insertType=0 objState=0x303 winterp=0.9670 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.939,7.640,94.500) lpos=(0.561,3.860,0.480) lprev=(0.764,3.860,1.415) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-0.8383,-0.9003) mvmt=(-0.0000,-0.2029,-0.9351) collide=False insertType=0 objState=0x303 winterp=0.9670 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-1.0783,-1.0053) mvmt=(-0.0000,-0.2029,-0.9351) collide=False insertType=0 objState=0x303 winterp=0.9670 return=-1 +[push-back] site=adjust_sphere in=(-0.2594,-1.0783,-1.0053) out=(-0.2594,-1.0783,-0.2800) delta=(0.0000,0.0000,0.7253) deltaMag=0.7253 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.9670->0.0000 dpPos=-0.0241 dpMove=-0.5041 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.5607,3.8597,1.2053) mvmt=(-0.2029,0.0000,-0.2099) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.939,7.640,95.225) lpos=(0.561,3.860,1.205) lprev=(0.764,3.860,1.415) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-0.8383,-0.1750) mvmt=(-0.0000,-0.2029,-0.2099) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-1.0783,-0.2800) mvmt=(-0.0000,-0.2029,-0.2099) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-3.2896,-1.6300) mvmt=(-0.0000,-0.2029,-0.2099) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8794,1.7311,1.2177) mvmt=(0.2028,-0.0061,-0.2099) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5607,3.8597,1.2253) mvmt=(-0.2029,0.0000,-0.2099) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.3661,3.8597,1.0040) mvmt=(-0.1946,0.0000,-0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.134,7.640,95.024) lpos=(0.366,3.860,1.004) lprev=(0.561,3.860,1.205) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-1.0329,-0.3763) mvmt=(-0.0000,-0.1946,-0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-1.2729,-0.4813) mvmt=(-0.0000,-0.1946,-0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-3.4841,-1.8313) mvmt=(0.0000,-0.1946,-0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0739,1.7252,1.0164) mvmt=(0.1945,-0.0059,-0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3661,3.8597,1.0240) mvmt=(-0.1946,0.0000,-0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3661,3.8597,0.2540) mvmt=(-0.1946,0.0000,-0.9513) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3661,3.8597,0.2540) out=(0.3661,3.8597,0.4800) delta=(0.0000,0.0000,0.2260) deltaMag=0.2260 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.6986 dpPos=0.2540 dpMove=-0.7500 iDist=0.3014 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.134,7.640,94.274) lpos=(0.366,3.860,0.254) lprev=(0.561,3.860,1.205) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(0.3661,3.8597,0.4800) mvmt=(-0.1946,0.0000,-0.7253) collide=False insertType=0 objState=0x303 winterp=0.6986 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.134,7.640,94.500) lpos=(0.366,3.860,0.480) lprev=(0.561,3.860,1.205) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-1.0329,-0.9003) mvmt=(-0.0000,-0.1946,-0.7253) collide=False insertType=0 objState=0x303 winterp=0.6986 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-1.2729,-1.0053) mvmt=(-0.0000,-0.1946,-0.7253) collide=False insertType=0 objState=0x303 winterp=0.6986 return=-1 +[push-back] site=adjust_sphere in=(-0.2594,-1.2729,-1.0053) out=(-0.2594,-1.2729,-0.4813) delta=(0.0000,0.0000,0.5240) deltaMag=0.5240 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.6986->0.0000 dpPos=0.1158 dpMove=-0.3642 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.3661,3.8597,1.0040) mvmt=(-0.1946,0.0000,-0.2013) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.134,7.640,95.024) lpos=(0.366,3.860,1.004) lprev=(0.561,3.860,1.205) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-1.0329,-0.3763) mvmt=(-0.0000,-0.1946,-0.2013) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-1.2729,-0.4813) mvmt=(-0.0000,-0.1946,-0.2013) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-3.4841,-1.8313) mvmt=(0.0000,-0.1946,-0.2013) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0739,1.7252,1.0164) mvmt=(0.1945,-0.0059,-0.2013) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3661,3.8597,1.0240) mvmt=(-0.1946,0.0000,-0.2013) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.1751,3.9412,0.8063) mvmt=(-0.1911,0.0815,-0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1751,3.9412,0.8063) mvmt=(-0.1911,0.0815,-0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.325,7.559,94.826) lpos=(0.175,3.941,0.806) lprev=(0.366,3.860,1.004) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3160,-1.2239,-0.5740) mvmt=(-0.0815,-0.1911,-0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3410,-1.4639,-0.6790) mvmt=(-0.0815,-0.1911,-0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3410,-3.6752,-2.0290) mvmt=(-0.0815,-0.1911,-0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2624,1.6379,0.8188) mvmt=(0.1885,-0.0873,-0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1751,3.9412,0.8263) mvmt=(-0.1911,0.0815,-0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.325,7.559,94.826) lpos=(0.175,3.941,0.806) lprev=(0.366,3.860,1.004) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(0.1751,3.8597,0.8063) mvmt=(-0.1911,0.0000,-0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.325,7.640,94.826) lpos=(0.175,3.860,0.806) lprev=(0.366,3.860,1.004) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-1.2239,-0.5740) mvmt=(-0.0000,-0.1911,-0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-1.4639,-0.6790) mvmt=(0.0000,-0.1911,-0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-3.6752,-2.0290) mvmt=(-0.0000,-0.1911,-0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2649,1.7194,0.8188) mvmt=(0.1910,-0.0058,-0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1751,3.8597,0.8263) mvmt=(-0.1911,0.0000,-0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1751,3.8597,0.0563) mvmt=(-0.1911,0.0000,-0.9476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1751,3.8597,0.0563) out=(0.1751,3.8597,0.4800) delta=(0.0000,0.0000,0.4237) deltaMag=0.4237 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.4351 dpPos=0.0563 dpMove=-0.7500 iDist=0.5649 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.325,7.640,94.076) lpos=(0.175,3.860,0.056) lprev=(0.366,3.860,1.004) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(0.1751,3.8597,0.4800) mvmt=(-0.1911,0.0000,-0.5240) collide=False insertType=0 objState=0x303 winterp=0.4351 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.325,7.640,94.500) lpos=(0.175,3.860,0.480) lprev=(0.366,3.860,1.004) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-1.2239,-0.9003) mvmt=(-0.0000,-0.1911,-0.5240) collide=False insertType=0 objState=0x303 winterp=0.4351 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-1.4639,-1.0053) mvmt=(0.0000,-0.1911,-0.5240) collide=False insertType=0 objState=0x303 winterp=0.4351 return=-1 +[push-back] site=adjust_sphere in=(-0.2594,-1.4639,-1.0053) out=(-0.2594,-1.4639,-0.6790) delta=(0.0000,0.0000,0.3263) deltaMag=0.3263 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.4351->-0.0000 dpPos=0.2532 dpMove=-0.2268 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(0.1751,3.8597,0.8063) mvmt=(-0.1911,0.0000,-0.1976) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.325,7.640,94.826) lpos=(0.175,3.860,0.806) lprev=(0.366,3.860,1.004) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-1.2239,-0.5740) mvmt=(-0.0000,-0.1911,-0.1976) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-1.4639,-0.6790) mvmt=(0.0000,-0.1911,-0.1976) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-3.6752,-2.0290) mvmt=(-0.0000,-0.1911,-0.1976) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2649,1.7194,0.8188) mvmt=(0.1910,-0.0058,-0.1976) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1751,3.8597,0.8263) mvmt=(-0.1911,0.0000,-0.1976) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-0.0261,3.8597,0.5983) mvmt=(-0.2011,0.0000,-0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.526,7.640,94.618) lpos=(-0.026,3.860,0.598) lprev=(0.175,3.860,0.806) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-1.4251,-0.7821) mvmt=(-0.0000,-0.2011,-0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-1.6651,-0.8870) mvmt=(-0.0000,-0.2011,-0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-3.8763,-2.2371) mvmt=(-0.0000,-0.2011,-0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4659,1.7133,0.6107) mvmt=(0.2010,-0.0061,-0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0261,3.8597,0.6182) mvmt=(-0.2011,0.0000,-0.2081) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0261,3.8597,-0.1517) mvmt=(-0.2011,0.0000,-0.9581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0261,3.8597,-0.1517) out=(-0.0261,3.8597,0.4800) delta=(0.0000,0.0000,0.6317) deltaMag=0.6317 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.1577 dpPos=-0.1517 dpMove=-0.7500 iDist=0.8423 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.526,7.640,93.868) lpos=(-0.026,3.860,-0.152) lprev=(0.175,3.860,0.806) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-0.0261,3.8597,0.4800) mvmt=(-0.2011,0.0000,-0.3263) collide=False insertType=0 objState=0x303 winterp=0.1577 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.526,7.640,94.500) lpos=(-0.026,3.860,0.480) lprev=(0.175,3.860,0.806) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-1.4251,-0.9003) mvmt=(-0.0000,-0.2011,-0.3263) collide=False insertType=0 objState=0x303 winterp=0.1577 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-1.6651,-1.0053) mvmt=(-0.0000,-0.2011,-0.3263) collide=False insertType=0 objState=0x303 winterp=0.1577 return=-1 +[push-back] site=adjust_sphere in=(-0.2594,-1.6651,-1.0053) out=(-0.2594,-1.6651,-0.8870) delta=(0.0000,0.0000,0.1182) deltaMag=0.1182 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.1577->0.0000 dpPos=0.3978 dpMove=-0.0822 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.719,0.000,0.695) D=-159.129 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-0.0261,3.8597,0.5983) mvmt=(-0.2011,0.0000,-0.2081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.526,7.640,94.618) lpos=(-0.026,3.860,0.598) lprev=(0.175,3.860,0.806) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-1.4251,-0.7821) mvmt=(-0.0000,-0.2011,-0.2081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-1.6651,-0.8870) mvmt=(-0.0000,-0.2011,-0.2081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-3.8763,-2.2371) mvmt=(-0.0000,-0.2011,-0.2081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4659,1.7133,0.6107) mvmt=(0.2010,-0.0061,-0.2081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0261,3.8597,0.6182) mvmt=(-0.2011,0.0000,-0.2081) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.719,0.000,0.695) D=-159.129 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-0.2226,3.9436,0.3949) mvmt=(-0.1966,0.0839,-0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2226,3.9436,0.3949) mvmt=(-0.1966,0.0839,-0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2226,3.9436,0.3949) out=(-0.2226,3.9436,0.4800) delta=(0.0000,0.0000,0.0851) deltaMag=0.0851 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.8582 dpPos=0.3949 dpMove=-0.6000 iDist=0.1418 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.719,0.000,0.695) D=-159.129 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.723,7.556,94.415) lpos=(-0.223,3.944,0.395) lprev=(-0.026,3.860,0.598) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-0.2226,3.9436,0.4800) mvmt=(-0.1966,0.0839,-0.1182) collide=False insertType=0 objState=0x303 winterp=0.8582 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.723,7.556,94.500) lpos=(-0.223,3.944,0.480) lprev=(-0.026,3.860,0.598) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3183,-1.6216,-0.9003) mvmt=(-0.0839,-0.1966,-0.1182) collide=False insertType=0 objState=0x303 winterp=0.8582 return=-1 +[push-back-disp] site=dispatch center=(-0.3433,-1.8616,-1.0053) mvmt=(-0.0839,-0.1966,-0.1182) collide=False insertType=0 objState=0x303 winterp=0.8582 return=-1 +[push-back-disp] site=dispatch center=(2.6599,1.6236,0.4925) mvmt=(0.1939,-0.0898,-0.1182) collide=False insertType=0 objState=0x303 winterp=0.8582 return=-1 +[push-back-disp] site=dispatch center=(-0.2226,3.9436,0.5000) mvmt=(-0.1966,0.0839,-0.1182) collide=False insertType=0 objState=0x303 winterp=0.8582 return=-1 +[push-back-disp] site=dispatch center=(-0.2226,3.9436,0.4800) mvmt=(-0.1966,0.0839,-0.1182) collide=False insertType=1 objState=0x303 winterp=0.8582 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.723,7.556,94.500) lpos=(-0.223,3.944,0.480) lprev=(-0.026,3.860,0.598) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B4013F wpos=(130.723,7.556,94.415) lpos=(-0.223,3.944,0.395) lprev=(-0.026,3.860,0.598) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-0.2226,3.8597,0.5983) mvmt=(-0.1966,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.8582 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.723,7.640,94.618) lpos=(-0.223,3.860,0.598) lprev=(-0.026,3.860,0.598) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-1.6216,-0.7821) mvmt=(0.0000,-0.1966,0.0000) collide=False insertType=0 objState=0x303 winterp=0.8582 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-1.8616,-0.8870) mvmt=(-0.0000,-0.1966,0.0000) collide=False insertType=0 objState=0x303 winterp=0.8582 return=-1 +[push-back-disp] site=dispatch center=(2.6624,1.7074,0.6107) mvmt=(0.1965,-0.0059,0.0000) collide=False insertType=0 objState=0x303 winterp=0.8582 return=-1 +[push-back-disp] site=dispatch center=(-0.2226,3.8597,0.6182) mvmt=(-0.1966,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.8582 return=-1 +[push-back-disp] site=dispatch center=(-0.2226,3.8597,-0.1517) mvmt=(-0.1966,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2226,3.8597,-0.1517) out=(-0.2226,3.8597,0.4800) delta=(0.0000,0.0000,0.6317) deltaMag=0.6317 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.1577 dpPos=-0.1517 dpMove=-0.7500 iDist=0.8423 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.723,7.640,93.868) lpos=(-0.223,3.860,-0.152) lprev=(-0.026,3.860,0.598) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-0.2226,3.8597,0.4800) mvmt=(-0.1966,0.0000,-0.1182) collide=False insertType=0 objState=0x303 winterp=0.1577 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.723,7.640,94.500) lpos=(-0.223,3.860,0.480) lprev=(-0.026,3.860,0.598) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-1.6216,-0.9003) mvmt=(0.0000,-0.1966,-0.1182) collide=False insertType=0 objState=0x303 winterp=0.1577 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-1.8616,-1.0053) mvmt=(-0.0000,-0.1966,-0.1182) collide=False insertType=0 objState=0x303 winterp=0.1577 return=-1 +[push-back-disp] site=dispatch center=(2.6624,1.7074,0.4925) mvmt=(0.1965,-0.0059,-0.1182) collide=False insertType=0 objState=0x303 winterp=0.1577 return=-1 +[push-back-disp] site=dispatch center=(-0.2226,3.8597,0.5000) mvmt=(-0.1966,0.0000,-0.1182) collide=False insertType=0 objState=0x303 winterp=0.1577 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-0.6404,3.8597,0.4800) mvmt=(-0.4177,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.140,7.640,94.500) lpos=(-0.640,3.860,0.480) lprev=(-0.223,3.860,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-2.0394,-0.9003) mvmt=(-0.0000,-0.4177,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-2.2794,-1.0053) mvmt=(-0.0000,-0.4177,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0799,1.6948,0.4925) mvmt=(0.4175,-0.0126,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6404,3.8597,0.5000) mvmt=(-0.4177,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6404,3.8597,-0.2700) mvmt=(-0.4177,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.6404,3.8597,-0.2700) out=(-0.6404,3.8597,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(131.140,7.640,93.750) lpos=(-0.640,3.860,-0.270) lprev=(-0.223,3.860,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-0.6404,3.8597,0.4800) mvmt=(-0.4177,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.140,7.640,94.500) lpos=(-0.640,3.860,0.480) lprev=(-0.223,3.860,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-2.0394,-0.9003) mvmt=(-0.0000,-0.4177,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-2.2794,-1.0053) mvmt=(-0.0000,-0.4177,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0799,1.6948,0.4925) mvmt=(0.4175,-0.0126,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6404,3.8597,0.5000) mvmt=(-0.4177,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.0652,3.9473,0.4800) mvmt=(-0.4249,0.0876,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0652,3.9473,0.4800) mvmt=(-0.4249,0.0876,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.565,7.553,94.500) lpos=(-1.065,3.947,0.480) lprev=(-0.640,3.860,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3220,-2.4642,-0.9003) mvmt=(-0.0876,-0.4249,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3470,-2.7043,-1.0053) mvmt=(-0.0876,-0.4249,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0652,3.9473,0.5000) mvmt=(-0.4249,0.0876,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.565,7.553,94.500) lpos=(-1.065,3.947,0.480) lprev=(-0.640,3.860,0.480) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-1.0652,3.8597,0.4800) mvmt=(-0.4249,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.565,7.640,94.500) lpos=(-1.065,3.860,0.480) lprev=(-0.640,3.860,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-2.4642,-0.9003) mvmt=(-0.0000,-0.4249,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-2.7043,-1.0053) mvmt=(-0.0000,-0.4249,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0652,3.8597,0.5000) mvmt=(-0.4249,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0652,3.8597,-0.2700) mvmt=(-0.4249,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.0652,3.8597,-0.2700) out=(-1.0652,3.8597,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(131.565,7.640,93.750) lpos=(-1.065,3.860,-0.270) lprev=(-0.640,3.860,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.0652,3.8597,0.4800) mvmt=(-0.4249,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.565,7.640,94.500) lpos=(-1.065,3.860,0.480) lprev=(-0.640,3.860,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-2.4642,-0.9003) mvmt=(-0.0000,-0.4249,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-2.7043,-1.0053) mvmt=(-0.0000,-0.4249,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0652,3.8597,0.5000) mvmt=(-0.4249,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.4694,3.8597,0.4800) mvmt=(-0.4042,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.969,7.640,94.500) lpos=(-1.469,3.860,0.480) lprev=(-1.065,3.860,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-2.8684,-0.9003) mvmt=(-0.0000,-0.4042,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-3.1084,-1.0053) mvmt=(-0.0000,-0.4042,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4694,3.8597,0.5000) mvmt=(-0.4042,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4694,3.8597,-0.2700) mvmt=(-0.4042,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.4694,3.8597,-0.2700) out=(-1.4694,3.8597,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(131.969,7.640,93.750) lpos=(-1.469,3.860,-0.270) lprev=(-1.065,3.860,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.4694,3.8597,0.4800) mvmt=(-0.4042,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.969,7.640,94.500) lpos=(-1.469,3.860,0.480) lprev=(-1.065,3.860,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2344,-2.8684,-0.9003) mvmt=(-0.0000,-0.4042,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2594,-3.1084,-1.0053) mvmt=(-0.0000,-0.4042,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4694,3.8597,0.5000) mvmt=(-0.4042,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.8750,3.9134,0.4800) mvmt=(-0.4056,0.0537,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.375,7.587,94.500) lpos=(-1.875,3.913,0.480) lprev=(-1.469,3.860,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2882,-3.2740,-0.9003) mvmt=(-0.0537,-0.4056,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3132,-3.5140,-1.0053) mvmt=(-0.0537,-0.4056,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8750,3.9134,0.5000) mvmt=(-0.4056,0.0537,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8750,3.9134,-0.2700) mvmt=(-0.4056,0.0537,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.8750,3.9134,-0.2700) out=(-1.8750,3.9134,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(132.375,7.587,93.750) lpos=(-1.875,3.913,-0.270) lprev=(-1.469,3.860,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.8750,3.9134,0.4800) mvmt=(-0.4056,0.0537,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.375,7.587,94.500) lpos=(-1.875,3.913,0.480) lprev=(-1.469,3.860,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2882,-3.2740,-0.9003) mvmt=(-0.0537,-0.4056,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3132,-3.5140,-1.0053) mvmt=(-0.0537,-0.4056,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8750,3.9134,0.5000) mvmt=(-0.4056,0.0537,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.3084,3.9331,0.4800) mvmt=(-0.4335,0.0197,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3084,3.9331,0.4800) mvmt=(-0.4335,0.0197,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.808,7.567,94.500) lpos=(-2.308,3.933,0.480) lprev=(-1.875,3.913,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3079,-3.7074,-0.9003) mvmt=(-0.0197,-0.4335,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3329,-3.9474,-1.0053) mvmt=(-0.0197,-0.4335,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3084,3.9331,0.5000) mvmt=(-0.4335,0.0197,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.808,7.567,94.500) lpos=(-2.308,3.933,0.480) lprev=(-1.875,3.913,0.480) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-2.3084,3.9134,0.4800) mvmt=(-0.4335,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.808,7.587,94.500) lpos=(-2.308,3.913,0.480) lprev=(-1.875,3.913,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2882,-3.7074,-0.9003) mvmt=(-0.0000,-0.4335,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3132,-3.9474,-1.0053) mvmt=(-0.0000,-0.4335,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3084,3.9134,0.5000) mvmt=(-0.4335,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3084,3.9134,-0.2700) mvmt=(-0.4335,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.3084,3.9134,-0.2700) out=(-2.3084,3.9134,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(132.808,7.587,93.750) lpos=(-2.308,3.913,-0.270) lprev=(-1.875,3.913,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.3084,3.9134,0.4800) mvmt=(-0.4335,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.808,7.587,94.500) lpos=(-2.308,3.913,0.480) lprev=(-1.875,3.913,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2882,-3.7074,-0.9003) mvmt=(-0.0000,-0.4335,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3132,-3.9474,-1.0053) mvmt=(-0.0000,-0.4335,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3084,3.9134,0.5000) mvmt=(-0.4335,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.7319,3.8970,0.4800) mvmt=(-0.4234,-0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.232,7.603,94.500) lpos=(-2.732,3.897,0.480) lprev=(-2.308,3.913,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2717,-4.1309,-0.9003) mvmt=(0.0165,-0.4234,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2967,-4.3709,-1.0053) mvmt=(0.0165,-0.4234,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7319,3.8970,0.5000) mvmt=(-0.4234,-0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7319,3.8970,-0.2700) mvmt=(-0.4234,-0.0165,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.7319,3.8970,-0.2700) out=(-2.7319,3.8970,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(133.232,7.603,93.750) lpos=(-2.732,3.897,-0.270) lprev=(-2.308,3.913,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.7319,3.8970,0.4800) mvmt=(-0.4234,-0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.232,7.603,94.500) lpos=(-2.732,3.897,0.480) lprev=(-2.308,3.913,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2717,-4.1309,-0.9003) mvmt=(0.0165,-0.4234,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2967,-4.3709,-1.0053) mvmt=(0.0165,-0.4234,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7319,3.8970,0.5000) mvmt=(-0.4234,-0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-3.1543,3.8445,0.4800) mvmt=(-0.4225,-0.0525,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.654,7.655,94.500) lpos=(-3.154,3.845,0.480) lprev=(-2.732,3.897,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2193,-4.5533,-0.9003) mvmt=(0.0524,-0.4225,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2443,-4.7933,-1.0053) mvmt=(0.0524,-0.4225,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1543,3.8445,0.5000) mvmt=(-0.4225,-0.0525,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1543,3.8445,-0.2700) mvmt=(-0.4225,-0.0525,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-3.1543,3.8445,-0.2700) out=(-3.1543,3.8445,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(133.654,7.655,93.750) lpos=(-3.154,3.845,-0.270) lprev=(-2.732,3.897,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-3.1543,3.8445,0.4800) mvmt=(-0.4225,-0.0525,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.654,7.655,94.500) lpos=(-3.154,3.845,0.480) lprev=(-2.732,3.897,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2193,-4.5533,-0.9003) mvmt=(0.0524,-0.4225,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2443,-4.7933,-1.0053) mvmt=(0.0524,-0.4225,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1543,3.8445,0.5000) mvmt=(-0.4225,-0.0525,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-3.5734,3.7557,0.4800) mvmt=(-0.4191,-0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(134.073,7.744,94.500) lpos=(-3.573,3.756,0.480) lprev=(-3.154,3.845,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1305,-4.9724,-0.9003) mvmt=(0.0888,-0.4191,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1555,-5.2124,-1.0053) mvmt=(0.0888,-0.4191,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5734,3.7557,0.5000) mvmt=(-0.4191,-0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5734,3.7557,-0.2700) mvmt=(-0.4191,-0.0888,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-3.5734,3.7557,-0.2700) out=(-3.5734,3.7557,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(134.073,7.744,93.750) lpos=(-3.573,3.756,-0.270) lprev=(-3.154,3.845,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-3.5734,3.7557,0.4800) mvmt=(-0.4191,-0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(134.073,7.744,94.500) lpos=(-3.573,3.756,0.480) lprev=(-3.154,3.845,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1305,-4.9724,-0.9003) mvmt=(0.0888,-0.4191,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1555,-5.2124,-1.0053) mvmt=(0.0888,-0.4191,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5734,3.7557,0.5000) mvmt=(-0.4191,-0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-3.9964,3.6264,0.4800) mvmt=(-0.4230,-0.1293,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(134.496,7.874,94.500) lpos=(-3.996,3.626,0.480) lprev=(-3.573,3.756,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0012,-5.3954,-0.9003) mvmt=(0.1293,-0.4230,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0262,-5.6354,-1.0053) mvmt=(0.1293,-0.4230,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9964,3.6264,0.5000) mvmt=(-0.4230,-0.1293,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9964,3.6264,-0.2700) mvmt=(-0.4230,-0.1293,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-3.9964,3.6264,-0.2700) out=(-3.9964,3.6264,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(134.496,7.874,93.750) lpos=(-3.996,3.626,-0.270) lprev=(-3.573,3.756,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-3.9964,3.6264,0.4800) mvmt=(-0.4230,-0.1293,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(134.496,7.874,94.500) lpos=(-3.996,3.626,0.480) lprev=(-3.573,3.756,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0012,-5.3954,-0.9003) mvmt=(0.1293,-0.4230,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0262,-5.6354,-1.0053) mvmt=(0.1293,-0.4230,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9964,3.6264,0.5000) mvmt=(-0.4230,-0.1293,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-4.4073,3.4600,0.4800) mvmt=(-0.4109,-0.1664,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(134.907,8.040,94.500) lpos=(-4.407,3.460,0.480) lprev=(-3.996,3.626,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.4073,3.4600,0.5000) mvmt=(-0.4109,-0.1664,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.4073,3.4600,-0.2700) mvmt=(-0.4109,-0.1664,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-4.4073,3.4600,-0.2700) out=(-4.4073,3.4600,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(134.907,8.040,93.750) lpos=(-4.407,3.460,-0.270) lprev=(-3.996,3.626,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-4.4073,3.4600,0.4800) mvmt=(-0.4109,-0.1664,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(134.907,8.040,94.500) lpos=(-4.407,3.460,0.480) lprev=(-3.996,3.626,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.4073,3.4600,0.5000) mvmt=(-0.4109,-0.1664,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-4.7651,3.2808,0.4800) mvmt=(-0.3577,-0.1792,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.265,8.219,94.500) lpos=(-4.765,3.281,0.480) lprev=(-4.407,3.460,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.7651,3.2808,0.5000) mvmt=(-0.3577,-0.1792,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.7651,3.2808,-0.2700) mvmt=(-0.3577,-0.1792,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-4.7651,3.2808,-0.2700) out=(-4.7651,3.2808,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(135.265,8.219,93.750) lpos=(-4.765,3.281,-0.270) lprev=(-4.407,3.460,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-4.7651,3.2808,0.4800) mvmt=(-0.3577,-0.1792,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.265,8.219,94.500) lpos=(-4.765,3.281,0.480) lprev=(-4.407,3.460,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.7651,3.2808,0.5000) mvmt=(-0.3577,-0.1792,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.1129,3.0698,0.4800) mvmt=(-0.3478,-0.2110,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.613,8.430,94.500) lpos=(-5.113,3.070,0.480) lprev=(-4.765,3.281,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.1129,3.0698,0.5000) mvmt=(-0.3478,-0.2110,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.1129,3.0698,-0.2700) mvmt=(-0.3478,-0.2110,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-5.1129,3.0698,-0.2700) out=(-5.1129,3.0698,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(135.613,8.430,93.750) lpos=(-5.113,3.070,-0.270) lprev=(-4.765,3.281,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-5.1129,3.0698,0.4800) mvmt=(-0.3478,-0.2110,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.613,8.430,94.500) lpos=(-5.113,3.070,0.480) lprev=(-4.765,3.281,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.1129,3.0698,0.5000) mvmt=(-0.3478,-0.2110,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-4.8827,2.7322,0.4800) mvmt=(0.2302,-0.3375,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.383,8.768,94.500) lpos=(-4.883,2.732,0.480) lprev=(-5.113,3.070,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.8827,2.7322,0.5000) mvmt=(0.2302,-0.3375,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.8827,2.7322,-0.2700) mvmt=(0.2302,-0.3375,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-4.8827,2.7322,-0.2700) out=(-4.8827,2.7322,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(135.383,8.768,93.750) lpos=(-4.883,2.732,-0.270) lprev=(-5.113,3.070,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-4.8827,2.7322,0.4800) mvmt=(0.2302,-0.3375,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.383,8.768,94.500) lpos=(-4.883,2.732,0.480) lprev=(-5.113,3.070,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.8827,2.7322,0.5000) mvmt=(0.2302,-0.3375,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-4.5946,2.3822,0.4800) mvmt=(0.2882,-0.3501,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.095,9.118,94.500) lpos=(-4.595,2.382,0.480) lprev=(-4.883,2.732,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.5946,2.3822,0.5000) mvmt=(0.2882,-0.3501,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.5946,2.3822,-0.2700) mvmt=(0.2882,-0.3501,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-4.5946,2.3822,-0.2700) out=(-4.5946,2.3822,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(135.095,9.118,93.750) lpos=(-4.595,2.382,-0.270) lprev=(-4.883,2.732,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-4.5946,2.3822,0.4800) mvmt=(0.2882,-0.3501,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.095,9.118,94.500) lpos=(-4.595,2.382,0.480) lprev=(-4.883,2.732,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.5946,2.3822,0.5000) mvmt=(0.2882,-0.3501,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-4.2876,2.0693,0.4800) mvmt=(0.3069,-0.3128,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(134.788,9.431,94.500) lpos=(-4.288,2.069,0.480) lprev=(-4.595,2.382,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.2876,2.0693,0.5000) mvmt=(0.3069,-0.3128,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.2876,2.0693,-0.2700) mvmt=(0.3069,-0.3128,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-4.2876,2.0693,-0.2700) out=(-4.2876,2.0693,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(134.788,9.431,93.750) lpos=(-4.288,2.069,-0.270) lprev=(-4.595,2.382,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-4.2876,2.0693,0.4800) mvmt=(0.3069,-0.3128,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(134.788,9.431,94.500) lpos=(-4.288,2.069,0.480) lprev=(-4.595,2.382,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.2876,2.0693,0.5000) mvmt=(0.3069,-0.3128,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-3.9635,1.7907,0.4800) mvmt=(0.3242,-0.2786,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(134.463,9.709,94.500) lpos=(-3.963,1.791,0.480) lprev=(-4.288,2.069,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-3.9635,1.7907,0.5000) mvmt=(0.3242,-0.2786,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9635,1.7907,-0.2700) mvmt=(0.3242,-0.2786,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-3.9635,1.7907,-0.2700) out=(-3.9635,1.7907,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(134.463,9.709,93.750) lpos=(-3.963,1.791,-0.270) lprev=(-4.288,2.069,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-3.9635,1.7907,0.4800) mvmt=(0.3242,-0.2786,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(134.463,9.709,94.500) lpos=(-3.963,1.791,0.480) lprev=(-4.288,2.069,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-3.9635,1.7907,0.5000) mvmt=(0.3242,-0.2786,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-3.6329,1.5504,0.4800) mvmt=(0.3305,-0.2403,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(134.133,9.950,94.500) lpos=(-3.633,1.550,0.480) lprev=(-3.963,1.791,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-3.6329,1.5504,0.5000) mvmt=(0.3305,-0.2403,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6329,1.5504,-0.2700) mvmt=(0.3305,-0.2403,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-3.6329,1.5504,-0.2700) out=(-3.6329,1.5504,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(134.133,9.950,93.750) lpos=(-3.633,1.550,-0.270) lprev=(-3.963,1.791,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-3.6329,1.5504,0.4800) mvmt=(0.3305,-0.2403,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(134.133,9.950,94.500) lpos=(-3.633,1.550,0.480) lprev=(-3.963,1.791,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-3.6329,1.5504,0.5000) mvmt=(0.3305,-0.2403,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-3.2987,1.3188,0.4800) mvmt=(0.3343,-0.2317,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.799,10.181,94.500) lpos=(-3.299,1.319,0.480) lprev=(-3.633,1.550,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.3065,-4.6977,-0.9003) mvmt=(0.2317,0.3343,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2987,1.3188,0.5000) mvmt=(0.3343,-0.2317,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2987,1.3188,-0.2700) mvmt=(0.3343,-0.2317,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-3.2987,1.3188,-0.2700) out=(-3.2987,1.3188,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(133.799,10.181,93.750) lpos=(-3.299,1.319,-0.270) lprev=(-3.633,1.550,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-3.2987,1.3188,0.4800) mvmt=(0.3343,-0.2317,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.799,10.181,94.500) lpos=(-3.299,1.319,0.480) lprev=(-3.633,1.550,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.3065,-4.6977,-0.9003) mvmt=(0.2317,0.3343,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2987,1.3188,0.5000) mvmt=(0.3343,-0.2317,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.9434,1.0726,0.4800) mvmt=(0.3553,-0.2462,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.443,10.427,94.500) lpos=(-2.943,1.073,0.480) lprev=(-3.299,1.319,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5527,-4.3424,-0.9003) mvmt=(0.2462,0.3553,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5277,-4.5824,-1.0053) mvmt=(0.2462,0.3553,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9434,1.0726,0.5000) mvmt=(0.3553,-0.2462,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9434,1.0726,-0.2700) mvmt=(0.3553,-0.2462,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.9434,1.0726,-0.2700) out=(-2.9434,1.0726,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(133.443,10.427,93.750) lpos=(-2.943,1.073,-0.270) lprev=(-3.299,1.319,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.9434,1.0726,0.4800) mvmt=(0.3553,-0.2462,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.443,10.427,94.500) lpos=(-2.943,1.073,0.480) lprev=(-3.299,1.319,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5527,-4.3424,-0.9003) mvmt=(0.2462,0.3553,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5277,-4.5824,-1.0053) mvmt=(0.2462,0.3553,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9434,1.0726,0.5000) mvmt=(0.3553,-0.2462,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.6056,0.8385,0.4800) mvmt=(0.3378,-0.2341,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.106,10.662,94.500) lpos=(-2.606,0.838,0.480) lprev=(-2.943,1.073,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7868,-4.0046,-0.9003) mvmt=(0.2341,0.3378,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7618,-4.2446,-1.0053) mvmt=(0.2341,0.3378,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6056,0.8385,0.5000) mvmt=(0.3378,-0.2341,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6056,0.8385,-0.2700) mvmt=(0.3378,-0.2341,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.6056,0.8385,-0.2700) out=(-2.6056,0.8385,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(133.106,10.662,93.750) lpos=(-2.606,0.838,-0.270) lprev=(-2.943,1.073,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.6056,0.8385,0.4800) mvmt=(0.3378,-0.2341,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.106,10.662,94.500) lpos=(-2.606,0.838,0.480) lprev=(-2.943,1.073,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7868,-4.0046,-0.9003) mvmt=(0.2341,0.3378,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7618,-4.2446,-1.0053) mvmt=(0.2341,0.3378,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6056,0.8385,0.5000) mvmt=(0.3378,-0.2341,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.2756,0.6098,0.4800) mvmt=(0.3299,-0.2286,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.776,10.890,94.500) lpos=(-2.276,0.610,0.480) lprev=(-2.606,0.838,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0154,-3.6746,-0.9003) mvmt=(0.2286,0.3299,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9904,-3.9146,-1.0053) mvmt=(0.2286,0.3299,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.2756,0.6098,0.5000) mvmt=(0.3299,-0.2286,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.2756,0.6098,-0.2700) mvmt=(0.3299,-0.2286,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.2756,0.6098,-0.2700) out=(-2.2756,0.6098,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(132.776,10.890,93.750) lpos=(-2.276,0.610,-0.270) lprev=(-2.606,0.838,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.2756,0.6098,0.4800) mvmt=(0.3299,-0.2286,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.776,10.890,94.500) lpos=(-2.276,0.610,0.480) lprev=(-2.606,0.838,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0154,-3.6746,-0.9003) mvmt=(0.2286,0.3299,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9904,-3.9146,-1.0053) mvmt=(0.2286,0.3299,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.2756,0.6098,0.5000) mvmt=(0.3299,-0.2286,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.9476,0.3825,0.4800) mvmt=(0.3280,-0.2273,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.448,11.117,94.500) lpos=(-1.948,0.383,0.480) lprev=(-2.276,0.610,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2427,-3.3466,-0.9003) mvmt=(0.2273,0.3280,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2177,-3.5867,-1.0053) mvmt=(0.2273,0.3280,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9476,0.3825,0.5000) mvmt=(0.3280,-0.2273,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9476,0.3825,-0.2700) mvmt=(0.3280,-0.2273,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.9476,0.3825,-0.2700) out=(-1.9476,0.3825,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(132.448,11.117,93.750) lpos=(-1.948,0.383,-0.270) lprev=(-2.276,0.610,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.9476,0.3825,0.4800) mvmt=(0.3280,-0.2273,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.448,11.117,94.500) lpos=(-1.948,0.383,0.480) lprev=(-2.276,0.610,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2427,-3.3466,-0.9003) mvmt=(0.2273,0.3280,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2177,-3.5867,-1.0053) mvmt=(0.2273,0.3280,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9476,0.3825,0.5000) mvmt=(0.3280,-0.2273,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.6194,0.1551,0.4800) mvmt=(0.3282,-0.2275,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.119,11.345,94.500) lpos=(-1.619,0.155,0.480) lprev=(-1.948,0.383,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4702,-3.0184,-0.9003) mvmt=(0.2275,0.3282,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4452,-3.2584,-1.0053) mvmt=(0.2275,0.3282,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8593,0.4535,0.4800) mvmt=(0.0883,0.0710,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.359,11.046,94.500) lpos=(-1.859,0.454,0.480) lprev=(-1.948,0.383,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1717,-3.2583,-0.9003) mvmt=(-0.0710,0.0883,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1467,-3.4983,-1.0053) mvmt=(-0.0710,0.0883,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8593,0.4535,0.5000) mvmt=(0.0883,0.0710,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8593,0.4535,-0.2700) mvmt=(0.0883,0.0710,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.8593,0.4535,-0.2700) out=(-1.8593,0.4535,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(132.359,11.046,93.750) lpos=(-1.859,0.454,-0.270) lprev=(-1.948,0.383,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.8593,0.4535,0.4800) mvmt=(0.0883,0.0710,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.359,11.046,94.500) lpos=(-1.859,0.454,0.480) lprev=(-1.948,0.383,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1717,-3.2583,-0.9003) mvmt=(-0.0710,0.0883,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1467,-3.4983,-1.0053) mvmt=(-0.0710,0.0883,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8593,0.4535,0.5000) mvmt=(0.0883,0.0710,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.7713,0.5242,0.4800) mvmt=(0.0880,0.0707,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.271,10.976,94.500) lpos=(-1.771,0.524,0.480) lprev=(-1.859,0.454,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1010,-3.1703,-0.9003) mvmt=(-0.0707,0.0880,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0760,-3.4103,-1.0053) mvmt=(-0.0707,0.0880,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7713,0.5242,0.5000) mvmt=(0.0880,0.0707,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7713,0.5242,-0.2700) mvmt=(0.0880,0.0707,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.7713,0.5242,-0.2700) out=(-1.7713,0.5242,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(132.271,10.976,93.750) lpos=(-1.771,0.524,-0.270) lprev=(-1.859,0.454,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.7713,0.5242,0.4800) mvmt=(0.0880,0.0707,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.271,10.976,94.500) lpos=(-1.771,0.524,0.480) lprev=(-1.859,0.454,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1010,-3.1703,-0.9003) mvmt=(-0.0707,0.0880,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0760,-3.4103,-1.0053) mvmt=(-0.0707,0.0880,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7713,0.5242,0.5000) mvmt=(0.0880,0.0707,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.4124,0.2755,0.4800) mvmt=(0.3589,-0.2487,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.912,11.224,94.500) lpos=(-1.412,0.276,0.480) lprev=(-1.771,0.524,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3497,-2.8114,-0.9003) mvmt=(0.2487,0.3589,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3247,-3.0514,-1.0053) mvmt=(0.2487,0.3589,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5853,0.6181,0.4800) mvmt=(0.1860,0.0939,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.085,10.882,94.500) lpos=(-1.585,0.618,0.480) lprev=(-1.771,0.524,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0071,-2.9843,-0.9003) mvmt=(-0.0939,0.1860,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9821,-3.2243,-1.0053) mvmt=(-0.0939,0.1860,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5853,0.6181,0.5000) mvmt=(0.1860,0.0939,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5853,0.6181,-0.2700) mvmt=(0.1860,0.0939,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.5853,0.6181,-0.2700) out=(-1.5853,0.6181,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(132.085,10.882,93.750) lpos=(-1.585,0.618,-0.270) lprev=(-1.771,0.524,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.5853,0.6181,0.4800) mvmt=(0.1860,0.0939,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.085,10.882,94.500) lpos=(-1.585,0.618,0.480) lprev=(-1.771,0.524,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0071,-2.9843,-0.9003) mvmt=(-0.0939,0.1860,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9821,-3.2243,-1.0053) mvmt=(-0.0939,0.1860,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5853,0.6181,0.5000) mvmt=(0.1860,0.0939,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.3981,0.7126,0.4800) mvmt=(0.1872,0.0945,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.898,10.787,94.500) lpos=(-1.398,0.713,0.480) lprev=(-1.585,0.618,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9126,-2.7971,-0.9003) mvmt=(-0.0945,0.1872,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8876,-3.0371,-1.0053) mvmt=(-0.0945,0.1872,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3981,0.7126,0.5000) mvmt=(0.1872,0.0945,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3981,0.7126,-0.2700) mvmt=(0.1872,0.0945,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.3981,0.7126,-0.2700) out=(-1.3981,0.7126,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(131.898,10.787,93.750) lpos=(-1.398,0.713,-0.270) lprev=(-1.585,0.618,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.3981,0.7126,0.4800) mvmt=(0.1872,0.0945,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.898,10.787,94.500) lpos=(-1.398,0.713,0.480) lprev=(-1.585,0.618,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9126,-2.7971,-0.9003) mvmt=(-0.0945,0.1872,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8876,-3.0371,-1.0053) mvmt=(-0.0945,0.1872,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3981,0.7126,0.5000) mvmt=(0.1872,0.0945,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.0660,0.4825,0.4800) mvmt=(0.3320,-0.2301,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.566,11.017,94.500) lpos=(-1.066,0.483,0.480) lprev=(-1.398,0.713,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1427,-2.4650,-0.9003) mvmt=(0.2301,0.3320,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1177,-2.7050,-1.0053) mvmt=(0.2301,0.3320,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0660,0.4825,0.5000) mvmt=(0.3320,-0.2301,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0660,0.4825,-0.2700) mvmt=(0.3320,-0.2301,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.0660,0.4825,-0.2700) out=(-1.0660,0.4825,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(131.566,11.017,93.750) lpos=(-1.066,0.483,-0.270) lprev=(-1.398,0.713,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.0660,0.4825,0.4800) mvmt=(0.3320,-0.2301,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.566,11.017,94.500) lpos=(-1.066,0.483,0.480) lprev=(-1.398,0.713,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1427,-2.4650,-0.9003) mvmt=(0.2301,0.3320,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1177,-2.7050,-1.0053) mvmt=(0.2301,0.3320,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0660,0.4825,0.5000) mvmt=(0.3320,-0.2301,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-0.7370,0.2545,0.4800) mvmt=(0.3290,-0.2280,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.237,11.245,94.500) lpos=(-0.737,0.255,0.480) lprev=(-1.066,0.483,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3707,-2.1360,-0.9003) mvmt=(0.2280,0.3290,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3457,-2.3760,-1.0053) mvmt=(0.2280,0.3290,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7092,0.4240,0.4800) mvmt=(0.3568,-0.0585,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.209,11.076,94.500) lpos=(-0.709,0.424,0.480) lprev=(-1.066,0.483,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2012,-2.1082,-0.9003) mvmt=(0.0585,0.3568,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1762,-2.3482,-1.0053) mvmt=(0.0585,0.3568,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7092,0.4240,0.5000) mvmt=(0.3568,-0.0585,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7092,0.4240,-0.2700) mvmt=(0.3568,-0.0585,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.7092,0.4240,-0.2700) out=(-0.7092,0.4240,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(131.209,11.076,93.750) lpos=(-0.709,0.424,-0.270) lprev=(-1.066,0.483,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-0.7092,0.4240,0.4800) mvmt=(0.3568,-0.0585,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.209,11.076,94.500) lpos=(-0.709,0.424,0.480) lprev=(-1.066,0.483,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2012,-2.1082,-0.9003) mvmt=(0.0585,0.3568,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1762,-2.3482,-1.0053) mvmt=(0.0585,0.3568,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7092,0.4240,0.5000) mvmt=(0.3568,-0.0585,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-0.3562,0.3662,0.4800) mvmt=(0.3530,-0.0579,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.856,11.134,94.500) lpos=(-0.356,0.366,0.480) lprev=(-0.709,0.424,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2591,-1.7552,-0.9003) mvmt=(0.0579,0.3530,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2341,-1.9952,-1.0053) mvmt=(0.0579,0.3530,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3562,0.3662,0.5000) mvmt=(0.3530,-0.0579,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3562,0.3662,-0.2700) mvmt=(0.3530,-0.0579,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3562,0.3662,-0.2700) out=(-0.3562,0.3662,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.856,11.134,93.750) lpos=(-0.356,0.366,-0.270) lprev=(-0.709,0.424,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-0.3562,0.3662,0.4800) mvmt=(0.3530,-0.0579,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.856,11.134,94.500) lpos=(-0.356,0.366,0.480) lprev=(-0.709,0.424,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2591,-1.7552,-0.9003) mvmt=(0.0579,0.3530,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2341,-1.9952,-1.0053) mvmt=(0.0579,0.3530,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3562,0.3662,0.5000) mvmt=(0.3530,-0.0579,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.0059,0.1153,0.4800) mvmt=(0.3621,-0.2509,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.494,11.385,94.500) lpos=(0.006,0.115,0.480) lprev=(-0.356,0.366,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5100,-1.3931,-0.9003) mvmt=(0.2509,0.3621,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4850,-1.6331,-1.0053) mvmt=(0.2509,0.3621,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0059,0.1153,0.5000) mvmt=(0.3621,-0.2509,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0059,0.1153,-0.2700) mvmt=(0.3621,-0.2509,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0059,0.1153,-0.2700) out=(0.0059,0.1153,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.494,11.385,93.750) lpos=(0.006,0.115,-0.270) lprev=(-0.356,0.366,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(0.0059,0.1153,0.4800) mvmt=(0.3621,-0.2509,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.494,11.385,94.500) lpos=(0.006,0.115,0.480) lprev=(-0.356,0.366,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5100,-1.3931,-0.9003) mvmt=(0.2509,0.3621,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4850,-1.6331,-1.0053) mvmt=(0.2509,0.3621,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0059,0.1153,0.5000) mvmt=(0.3621,-0.2509,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.3133,-0.1927,0.4800) mvmt=(0.3075,-0.3080,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.187,11.693,94.500) lpos=(0.313,-0.193,0.480) lprev=(0.006,0.115,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8179,-1.0857,-0.9003) mvmt=(0.3080,0.3075,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7929,-1.3257,-1.0053) mvmt=(0.3080,0.3075,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.2217,-0.1927,-1.0000) mvmt=(0.3075,-0.3080,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3133,-0.1927,0.5000) mvmt=(0.3075,-0.3080,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3133,-0.1927,-0.2700) mvmt=(0.3075,-0.3080,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3133,-0.1927,-0.2700) out=(0.3133,-0.1927,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.187,11.693,93.750) lpos=(0.313,-0.193,-0.270) lprev=(0.006,0.115,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(0.3133,-0.1927,0.4800) mvmt=(0.3075,-0.3080,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.187,11.693,94.500) lpos=(0.313,-0.193,0.480) lprev=(0.006,0.115,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8179,-1.0857,-0.9003) mvmt=(0.3080,0.3075,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7929,-1.3257,-1.0053) mvmt=(0.3080,0.3075,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.2217,-0.1927,-1.0000) mvmt=(0.3075,-0.3080,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3133,-0.1927,0.5000) mvmt=(0.3075,-0.3080,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.5908,-0.5229,0.4800) mvmt=(0.2775,-0.3302,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.909,12.023,94.500) lpos=(0.591,-0.523,0.480) lprev=(0.313,-0.193,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1481,-0.8082,-0.9003) mvmt=(0.3302,0.2775,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1231,-1.0482,-1.0053) mvmt=(0.3302,0.2775,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.9442,-0.5229,-1.0000) mvmt=(0.2775,-0.3302,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5908,-0.5229,0.5000) mvmt=(0.2775,-0.3302,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5908,-0.5229,-0.2700) mvmt=(0.2775,-0.3302,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.5908,-0.5229,-0.2700) out=(0.5908,-0.5229,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(129.909,12.023,93.750) lpos=(0.591,-0.523,-0.270) lprev=(0.313,-0.193,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(0.5908,-0.5229,0.4800) mvmt=(0.2775,-0.3302,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.909,12.023,94.500) lpos=(0.591,-0.523,0.480) lprev=(0.313,-0.193,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1481,-0.8082,-0.9003) mvmt=(0.3302,0.2775,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1231,-1.0482,-1.0053) mvmt=(0.3302,0.2775,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.9442,-0.5229,-1.0000) mvmt=(0.2775,-0.3302,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5908,-0.5229,0.5000) mvmt=(0.2775,-0.3302,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.8480,-0.8741,0.4800) mvmt=(0.2572,-0.3512,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.652,12.374,94.500) lpos=(0.848,-0.874,0.480) lprev=(0.591,-0.523,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.4993,-0.5510,-0.9003) mvmt=(0.3512,0.2572,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4743,-0.7910,-1.0053) mvmt=(0.3512,0.2572,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.6870,-0.8741,-1.0000) mvmt=(0.2572,-0.3512,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8480,-0.8741,0.5000) mvmt=(0.2572,-0.3512,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8480,-0.8741,-0.2700) mvmt=(0.2572,-0.3512,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.8480,-0.8741,-0.2700) out=(0.8480,-0.8741,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(129.652,12.374,93.750) lpos=(0.848,-0.874,-0.270) lprev=(0.591,-0.523,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(0.8480,-0.8741,0.4800) mvmt=(0.2572,-0.3512,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.652,12.374,94.500) lpos=(0.848,-0.874,0.480) lprev=(0.591,-0.523,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.4993,-0.5510,-0.9003) mvmt=(0.3512,0.2572,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4743,-0.7910,-1.0053) mvmt=(0.3512,0.2572,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.6870,-0.8741,-1.0000) mvmt=(0.2572,-0.3512,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8480,-0.8741,0.5000) mvmt=(0.2572,-0.3512,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.0870,-1.2004,0.4800) mvmt=(0.2390,-0.3263,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.413,12.700,94.500) lpos=(1.087,-1.200,0.480) lprev=(0.848,-0.874,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.8256,-0.3120,-0.9003) mvmt=(0.3263,0.2390,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8006,-0.5520,-1.0053) mvmt=(0.3263,0.2390,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5320,-3.7975,-0.4125) mvmt=(-0.2390,0.3263,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.4480,-1.2004,-1.0000) mvmt=(0.2390,-0.3263,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0870,-1.2004,0.5000) mvmt=(0.2390,-0.3263,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0870,-1.2004,-0.2700) mvmt=(0.2390,-0.3263,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(1.0870,-1.2004,-0.2700) out=(1.0870,-1.2004,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(129.413,12.700,93.750) lpos=(1.087,-1.200,-0.270) lprev=(0.848,-0.874,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(1.0870,-1.2004,0.4800) mvmt=(0.2390,-0.3263,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.413,12.700,94.500) lpos=(1.087,-1.200,0.480) lprev=(0.848,-0.874,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.8256,-0.3120,-0.9003) mvmt=(0.3263,0.2390,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8006,-0.5520,-1.0053) mvmt=(0.3263,0.2390,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5320,-3.7975,-0.4125) mvmt=(-0.2390,0.3263,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.4480,-1.2004,-1.0000) mvmt=(0.2390,-0.3263,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0870,-1.2004,0.5000) mvmt=(0.2390,-0.3263,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.3214,-1.5204,0.4800) mvmt=(0.2344,-0.3201,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.179,13.020,94.500) lpos=(1.321,-1.520,0.480) lprev=(1.087,-1.200,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.1457,-0.0776,-0.9003) mvmt=(0.3201,0.2344,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.1207,-0.3176,-1.0053) mvmt=(0.3201,0.2344,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2976,-3.4775,-0.4125) mvmt=(-0.2344,0.3201,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.2136,-1.5204,-1.0000) mvmt=(0.2344,-0.3201,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3214,-1.5204,0.5000) mvmt=(0.2344,-0.3201,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3214,-1.5204,-0.2700) mvmt=(0.2344,-0.3201,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(1.3214,-1.5204,-0.2700) out=(1.3214,-1.5204,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(129.179,13.020,93.750) lpos=(1.321,-1.520,-0.270) lprev=(1.087,-1.200,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(1.3214,-1.5204,0.4800) mvmt=(0.2344,-0.3201,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.179,13.020,94.500) lpos=(1.321,-1.520,0.480) lprev=(1.087,-1.200,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.1457,-0.0776,-0.9003) mvmt=(0.3201,0.2344,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(5.1207,-0.3176,-1.0053) mvmt=(0.3201,0.2344,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2976,-3.4775,-0.4125) mvmt=(-0.2344,0.3201,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.2136,-1.5204,-1.0000) mvmt=(0.2344,-0.3201,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3214,-1.5204,0.5000) mvmt=(0.2344,-0.3201,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.5624,-1.8495,0.4800) mvmt=(0.2410,-0.3290,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.938,13.349,94.500) lpos=(1.562,-1.849,0.480) lprev=(1.321,-1.520,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.4747,0.1634,-0.9003) mvmt=(0.3290,0.2410,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.4497,-0.0766,-1.0053) mvmt=(0.3290,0.2410,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0566,-3.1484,-0.4125) mvmt=(-0.2410,0.3290,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9726,-1.8495,-1.0000) mvmt=(0.2410,-0.3290,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5624,-1.8495,0.5000) mvmt=(0.2410,-0.3290,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5624,-1.8495,-0.2700) mvmt=(0.2410,-0.3290,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(1.5624,-1.8495,-0.2700) out=(1.5624,-1.8495,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(128.938,13.349,93.750) lpos=(1.562,-1.849,-0.270) lprev=(1.321,-1.520,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(1.5624,-1.8495,0.4800) mvmt=(0.2410,-0.3290,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.938,13.349,94.500) lpos=(1.562,-1.849,0.480) lprev=(1.321,-1.520,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.4747,0.1634,-0.9003) mvmt=(0.3290,0.2410,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(5.4497,-0.0766,-1.0053) mvmt=(0.3290,0.2410,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0566,-3.1484,-0.4125) mvmt=(-0.2410,0.3290,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9726,-1.8495,-1.0000) mvmt=(0.2410,-0.3290,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5624,-1.8495,0.5000) mvmt=(0.2410,-0.3290,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.7988,-2.1723,0.4800) mvmt=(0.2364,-0.3228,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.701,13.672,94.500) lpos=(1.799,-2.172,0.480) lprev=(1.562,-1.849,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.7975,0.3998,-0.9003) mvmt=(0.3228,0.2364,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8202,-2.8256,-0.4125) mvmt=(-0.2364,0.3228,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5962,0.3177,0.4925) mvmt=(0.2364,-0.3228,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.7362,-2.1723,-1.0000) mvmt=(0.2364,-0.3228,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7988,-2.1723,0.5000) mvmt=(0.2364,-0.3228,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7988,-2.1723,-0.2700) mvmt=(0.2364,-0.3228,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(1.7988,-2.1723,-0.2700) out=(1.7988,-2.1723,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(128.701,13.672,93.750) lpos=(1.799,-2.172,-0.270) lprev=(1.562,-1.849,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(1.7988,-2.1723,0.4800) mvmt=(0.2364,-0.3228,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.701,13.672,94.500) lpos=(1.799,-2.172,0.480) lprev=(1.562,-1.849,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.7975,0.3998,-0.9003) mvmt=(0.3228,0.2364,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8202,-2.8256,-0.4125) mvmt=(-0.2364,0.3228,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5962,0.3177,0.4925) mvmt=(0.2364,-0.3228,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.7362,-2.1723,-1.0000) mvmt=(0.2364,-0.3228,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7988,-2.1723,0.5000) mvmt=(0.2364,-0.3228,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.0324,-2.4912,0.4800) mvmt=(0.2336,-0.3189,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.468,13.991,94.500) lpos=(2.032,-2.491,0.480) lprev=(1.799,-2.172,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(5.1165,0.6334,-0.9003) mvmt=(0.3189,0.2336,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5866,-2.5067,-0.4125) mvmt=(-0.2336,0.3189,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3606,1.2338,0.4900) mvmt=(0.2336,-0.3189,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3626,-0.0012,0.4925) mvmt=(0.2336,-0.3189,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5026,-2.4912,-1.0000) mvmt=(0.2336,-0.3189,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0324,-2.4912,0.5000) mvmt=(0.2336,-0.3189,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0324,-2.4912,-0.2700) mvmt=(0.2336,-0.3189,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.0324,-2.4912,-0.2700) out=(2.0324,-2.4912,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(128.468,13.991,93.750) lpos=(2.032,-2.491,-0.270) lprev=(1.799,-2.172,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.0324,-2.4912,0.4800) mvmt=(0.2336,-0.3189,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.468,13.991,94.500) lpos=(2.032,-2.491,0.480) lprev=(1.799,-2.172,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(5.1165,0.6334,-0.9003) mvmt=(0.3189,0.2336,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5866,-2.5067,-0.4125) mvmt=(-0.2336,0.3189,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3606,1.2338,0.4900) mvmt=(0.2336,-0.3189,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3626,-0.0012,0.4925) mvmt=(0.2336,-0.3189,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.5026,-2.4912,-1.0000) mvmt=(0.2336,-0.3189,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0324,-2.4912,0.5000) mvmt=(0.2336,-0.3189,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.2672,-2.8119,0.4800) mvmt=(0.2349,-0.3207,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.233,14.312,94.500) lpos=(2.267,-2.812,0.480) lprev=(2.032,-2.491,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.3518,-2.1860,-0.4125) mvmt=(-0.2349,0.3207,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1258,0.9131,0.4900) mvmt=(0.2349,-0.3207,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1278,-0.3219,0.4925) mvmt=(0.2349,-0.3207,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2678,-2.8119,-1.0000) mvmt=(0.2349,-0.3207,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2672,-2.8119,0.5000) mvmt=(0.2349,-0.3207,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2672,-2.8119,-0.2700) mvmt=(0.2349,-0.3207,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.2672,-2.8119,-0.2700) out=(2.2672,-2.8119,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(128.233,14.312,93.750) lpos=(2.267,-2.812,-0.270) lprev=(2.032,-2.491,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.2672,-2.8119,0.4800) mvmt=(0.2349,-0.3207,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.233,14.312,94.500) lpos=(2.267,-2.812,0.480) lprev=(2.032,-2.491,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.3518,-2.1860,-0.4125) mvmt=(-0.2349,0.3207,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1258,0.9131,0.4900) mvmt=(0.2349,-0.3207,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1278,-0.3219,0.4925) mvmt=(0.2349,-0.3207,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2678,-2.8119,-1.0000) mvmt=(0.2349,-0.3207,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2672,-2.8119,0.5000) mvmt=(0.2349,-0.3207,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.5041,-3.1354,0.4800) mvmt=(0.2369,-0.3235,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.996,14.635,94.500) lpos=(2.504,-3.135,0.480) lprev=(2.267,-2.812,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.1149,-1.8625,-0.4125) mvmt=(-0.2369,0.3235,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8889,0.5896,0.4900) mvmt=(0.2369,-0.3235,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8909,-0.6454,0.4925) mvmt=(0.2369,-0.3235,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0309,-3.1354,-1.0000) mvmt=(0.2369,-0.3235,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5041,-3.1354,0.5000) mvmt=(0.2369,-0.3235,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5041,-3.1354,-0.2700) mvmt=(0.2369,-0.3235,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.5041,-3.1354,-0.2700) out=(2.5041,-3.1354,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(127.996,14.635,93.750) lpos=(2.504,-3.135,-0.270) lprev=(2.267,-2.812,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.5041,-3.1354,0.4800) mvmt=(0.2369,-0.3235,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.996,14.635,94.500) lpos=(2.504,-3.135,0.480) lprev=(2.267,-2.812,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.1149,-1.8625,-0.4125) mvmt=(-0.2369,0.3235,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8889,0.5896,0.4900) mvmt=(0.2369,-0.3235,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8909,-0.6454,0.4925) mvmt=(0.2369,-0.3235,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0309,-3.1354,-1.0000) mvmt=(0.2369,-0.3235,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5041,-3.1354,0.5000) mvmt=(0.2369,-0.3235,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.7458,-3.4654,0.4800) mvmt=(0.2417,-0.3300,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.754,14.965,94.500) lpos=(2.746,-3.465,0.480) lprev=(2.504,-3.135,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1268,-1.5325,-0.4125) mvmt=(-0.2417,0.3300,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6472,0.2596,0.4900) mvmt=(0.2417,-0.3300,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6492,-0.9754,0.4925) mvmt=(0.2417,-0.3300,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7892,-3.4654,-1.0000) mvmt=(0.2417,-0.3300,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7458,-3.4654,0.5000) mvmt=(0.2417,-0.3300,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7458,-3.4654,-0.2700) mvmt=(0.2417,-0.3300,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.7458,-3.4654,-0.2700) out=(2.7458,-3.4654,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(127.754,14.965,93.750) lpos=(2.746,-3.465,-0.270) lprev=(2.504,-3.135,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.7458,-3.4654,0.4800) mvmt=(0.2417,-0.3300,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.754,14.965,94.500) lpos=(2.746,-3.465,0.480) lprev=(2.504,-3.135,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1268,-1.5325,-0.4125) mvmt=(-0.2417,0.3300,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6472,0.2596,0.4900) mvmt=(0.2417,-0.3300,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6492,-0.9754,0.4925) mvmt=(0.2417,-0.3300,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7892,-3.4654,-1.0000) mvmt=(0.2417,-0.3300,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7458,-3.4654,0.5000) mvmt=(0.2417,-0.3300,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.9842,-3.7909,0.4800) mvmt=(0.2384,-0.3255,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.516,15.291,94.500) lpos=(2.984,-3.791,0.480) lprev=(2.746,-3.465,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3652,-1.2070,-0.4125) mvmt=(-0.2384,0.3255,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4088,-0.0659,0.4900) mvmt=(0.2384,-0.3255,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4108,-1.3009,0.4925) mvmt=(0.2384,-0.3255,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5508,-3.7909,-1.0000) mvmt=(0.2384,-0.3255,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9842,-3.7909,0.5000) mvmt=(0.2384,-0.3255,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9842,-3.7909,-0.2700) mvmt=(0.2384,-0.3255,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.9842,-3.7909,-0.2700) out=(2.9842,-3.7909,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(127.516,15.291,93.750) lpos=(2.984,-3.791,-0.270) lprev=(2.746,-3.465,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.9842,-3.7909,0.4800) mvmt=(0.2384,-0.3255,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.516,15.291,94.500) lpos=(2.984,-3.791,0.480) lprev=(2.746,-3.465,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3652,-1.2070,-0.4125) mvmt=(-0.2384,0.3255,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4088,-0.0659,0.4900) mvmt=(0.2384,-0.3255,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4108,-1.3009,0.4925) mvmt=(0.2384,-0.3255,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5508,-3.7909,-1.0000) mvmt=(0.2384,-0.3255,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9842,-3.7909,0.5000) mvmt=(0.2384,-0.3255,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.2186,-4.1110,0.4800) mvmt=(0.2344,-0.3201,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.281,15.611,94.500) lpos=(3.219,-4.111,0.480) lprev=(2.984,-3.791,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5996,-0.8869,-0.4125) mvmt=(-0.2344,0.3201,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1744,-0.3860,0.4900) mvmt=(0.2344,-0.3201,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1764,-1.6210,0.4925) mvmt=(0.2344,-0.3201,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3164,-4.1110,-1.0000) mvmt=(0.2344,-0.3201,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2186,-4.1110,0.5000) mvmt=(0.2344,-0.3201,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2186,-4.1110,-0.2700) mvmt=(0.2344,-0.3201,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.2186,-4.1110,-0.2700) out=(3.2186,-4.1110,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(127.281,15.611,93.750) lpos=(3.219,-4.111,-0.270) lprev=(2.984,-3.791,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.2186,-4.1110,0.4800) mvmt=(0.2344,-0.3201,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.281,15.611,94.500) lpos=(3.219,-4.111,0.480) lprev=(2.984,-3.791,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5996,-0.8869,-0.4125) mvmt=(-0.2344,0.3201,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1744,-0.3860,0.4900) mvmt=(0.2344,-0.3201,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1764,-1.6210,0.4925) mvmt=(0.2344,-0.3201,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3164,-4.1110,-1.0000) mvmt=(0.2344,-0.3201,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2186,-4.1110,0.5000) mvmt=(0.2344,-0.3201,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.4605,-4.4412,0.4800) mvmt=(0.2418,-0.3302,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.040,15.941,94.500) lpos=(3.460,-4.441,0.480) lprev=(3.219,-4.111,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8415,-0.5567,-0.4125) mvmt=(-0.2418,0.3302,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4605,-4.4412,0.4800) mvmt=(0.2418,-0.3302,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.040,15.941,94.500) lpos=(3.460,-4.441,0.480) lprev=(3.219,-4.111,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8415,-0.5567,-0.4125) mvmt=(-0.2418,0.3302,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6026,-4.2060,0.4800) mvmt=(0.3839,-0.0950,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.897,15.706,94.500) lpos=(3.603,-4.206,0.480) lprev=(3.219,-4.111,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9836,-0.7919,-0.4125) mvmt=(-0.3839,0.0950,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7904,-0.4810,0.4900) mvmt=(0.3839,-0.0950,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7924,-1.7160,0.4925) mvmt=(0.3839,-0.0950,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9324,-4.2060,-1.0000) mvmt=(0.3839,-0.0950,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6026,-4.2060,0.5000) mvmt=(0.3839,-0.0950,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4605,-4.1110,0.4800) mvmt=(0.2418,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.040,15.611,94.500) lpos=(3.460,-4.111,0.480) lprev=(3.219,-4.111,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8415,-0.8869,-0.4125) mvmt=(-0.2418,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9325,-0.3860,0.4900) mvmt=(0.2418,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9345,-1.6210,0.4925) mvmt=(0.2418,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0745,-4.1110,-1.0000) mvmt=(0.2418,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4605,-4.1110,0.5000) mvmt=(0.2418,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4605,-4.1110,-0.2700) mvmt=(0.2418,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.4605,-4.1110,-0.2700) out=(3.4605,-4.1110,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(127.040,15.611,93.750) lpos=(3.460,-4.111,-0.270) lprev=(3.219,-4.111,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.4605,-4.1110,0.4800) mvmt=(0.2418,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.040,15.611,94.500) lpos=(3.460,-4.111,0.480) lprev=(3.219,-4.111,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8415,-0.8869,-0.4125) mvmt=(-0.2418,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9325,-0.3860,0.4900) mvmt=(0.2418,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9345,-1.6210,0.4925) mvmt=(0.2418,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0745,-4.1110,-1.0000) mvmt=(0.2418,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4605,-4.1110,0.5000) mvmt=(0.2418,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.7038,-4.1110,0.4800) mvmt=(0.2434,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.796,15.611,94.500) lpos=(3.704,-4.111,0.480) lprev=(3.460,-4.111,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0848,-0.8869,-0.4125) mvmt=(-0.2434,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6892,-0.3860,0.4900) mvmt=(0.2434,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6912,-1.6210,0.4925) mvmt=(0.2434,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8312,-4.1110,-1.0000) mvmt=(0.2434,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7038,-4.1110,0.5000) mvmt=(0.2434,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7038,-4.1110,-0.2700) mvmt=(0.2434,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.7038,-4.1110,-0.2700) out=(3.7038,-4.1110,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.796,15.611,93.750) lpos=(3.704,-4.111,-0.270) lprev=(3.460,-4.111,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.7038,-4.1110,0.4800) mvmt=(0.2434,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.796,15.611,94.500) lpos=(3.704,-4.111,0.480) lprev=(3.460,-4.111,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0848,-0.8869,-0.4125) mvmt=(-0.2434,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6892,-0.3860,0.4900) mvmt=(0.2434,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6912,-1.6210,0.4925) mvmt=(0.2434,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8312,-4.1110,-1.0000) mvmt=(0.2434,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7038,-4.1110,0.5000) mvmt=(0.2434,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.9411,-4.4350,0.4800) mvmt=(0.2373,-0.3240,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.559,15.935,94.500) lpos=(3.941,-4.435,0.480) lprev=(3.704,-4.111,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3221,-0.5629,-0.4125) mvmt=(-0.2373,0.3240,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4519,-0.7100,0.4900) mvmt=(0.2373,-0.3240,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4539,-1.9450,0.4925) mvmt=(0.2373,-0.3240,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5939,-4.4350,-1.0000) mvmt=(0.2373,-0.3240,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6185,3.2903,0.0850) mvmt=(-0.3426,-0.2097,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9411,-4.4350,0.5000) mvmt=(0.2373,-0.3240,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9411,-4.4350,-0.2700) mvmt=(0.2373,-0.3240,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9411,-4.4350,-0.2700) out=(3.9411,-4.4350,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.559,15.935,93.750) lpos=(3.941,-4.435,-0.270) lprev=(3.704,-4.111,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.9411,-4.4350,0.4800) mvmt=(0.2373,-0.3240,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.559,15.935,94.500) lpos=(3.941,-4.435,0.480) lprev=(3.704,-4.111,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3221,-0.5629,-0.4125) mvmt=(-0.2373,0.3240,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4519,-0.7100,0.4900) mvmt=(0.2373,-0.3240,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4539,-1.9450,0.4925) mvmt=(0.2373,-0.3240,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5939,-4.4350,-1.0000) mvmt=(0.2373,-0.3240,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6185,3.2903,0.0850) mvmt=(-0.3426,-0.2097,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9411,-4.4350,0.5000) mvmt=(0.2373,-0.3240,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.1800,-4.7612,0.4800) mvmt=(0.2388,-0.3261,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1800,-4.7612,0.4800) mvmt=(0.2388,-0.3261,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.320,16.261,94.500) lpos=(4.180,-4.761,0.480) lprev=(3.941,-4.435,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.1800,-4.7612,0.4800) mvmt=(0.2388,-0.3261,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014C result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014C bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.1800,-4.7612,0.4800) mvmt=(0.2388,-0.3261,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40150 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40150 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5610,-0.2367,-0.4125) mvmt=(-0.2388,0.3261,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2130,-1.0362,0.4900) mvmt=(0.2388,-0.3261,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2150,-2.2712,0.4925) mvmt=(0.2388,-0.3261,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3550,-4.7612,-1.0000) mvmt=(0.2388,-0.3261,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9633,3.0792,0.0850) mvmt=(-0.3448,-0.2111,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1800,-4.7612,0.5000) mvmt=(0.2388,-0.3261,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.320,16.261,94.500) lpos=(4.180,-4.761,0.480) lprev=(3.941,-4.435,0.480) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(4.1800,-4.4350,0.4800) mvmt=(0.2388,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.320,15.935,94.500) lpos=(4.180,-4.435,0.480) lprev=(3.941,-4.435,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.5610,-0.5629,-0.4125) mvmt=(-0.2388,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2130,-0.7100,0.4900) mvmt=(0.2388,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2150,-1.9450,0.4925) mvmt=(0.2388,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3550,-4.4350,-1.0000) mvmt=(0.2388,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6383,3.0523,0.0850) mvmt=(-0.0198,-0.2380,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1800,-4.4350,0.5000) mvmt=(0.2388,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1800,-4.4350,-0.2700) mvmt=(0.2388,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.1800,-4.4350,-0.2700) out=(4.1800,-4.4350,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.320,15.935,93.750) lpos=(4.180,-4.435,-0.270) lprev=(3.941,-4.435,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.1800,-4.4350,0.4800) mvmt=(0.2388,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.320,15.935,94.500) lpos=(4.180,-4.435,0.480) lprev=(3.941,-4.435,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.5610,-0.5629,-0.4125) mvmt=(-0.2388,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2130,-0.7100,0.4900) mvmt=(0.2388,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2150,-1.9450,0.4925) mvmt=(0.2388,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3550,-4.4350,-1.0000) mvmt=(0.2388,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6383,3.0523,0.0850) mvmt=(-0.0198,-0.2380,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1800,-4.4350,0.5000) mvmt=(0.2388,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.4179,-4.4350,0.4800) mvmt=(0.2379,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.082,15.935,94.500) lpos=(4.418,-4.435,0.480) lprev=(4.180,-4.435,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.7989,-0.5629,-0.4125) mvmt=(-0.2379,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9751,-0.7100,0.4900) mvmt=(0.2379,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9771,-1.9450,0.4925) mvmt=(0.2379,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1171,-4.4350,-1.0000) mvmt=(0.2379,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6580,2.8152,0.0850) mvmt=(-0.0197,-0.2371,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4179,-4.4350,0.5000) mvmt=(0.2379,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4179,-4.4350,-0.2700) mvmt=(0.2379,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.4179,-4.4350,-0.2700) out=(4.4179,-4.4350,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.082,15.935,93.750) lpos=(4.418,-4.435,-0.270) lprev=(4.180,-4.435,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.4179,-4.4350,0.4800) mvmt=(0.2379,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.082,15.935,94.500) lpos=(4.418,-4.435,0.480) lprev=(4.180,-4.435,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.7989,-0.5629,-0.4125) mvmt=(-0.2379,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9751,-0.7100,0.4900) mvmt=(0.2379,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9771,-1.9450,0.4925) mvmt=(0.2379,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1171,-4.4350,-1.0000) mvmt=(0.2379,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6580,2.8152,0.0850) mvmt=(-0.0197,-0.2371,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4179,-4.4350,0.5000) mvmt=(0.2379,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.6661,-4.7740,0.4800) mvmt=(0.2482,-0.3389,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6661,-4.7740,0.4800) mvmt=(0.2482,-0.3389,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.834,16.274,94.500) lpos=(4.666,-4.774,0.480) lprev=(4.418,-4.435,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.6661,-4.7740,0.4800) mvmt=(0.2482,-0.3389,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014C result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014C bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.6661,-4.7740,0.4800) mvmt=(0.2482,-0.3389,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40150 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40150 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.0471,-0.2239,-0.4125) mvmt=(-0.2482,0.3389,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7269,-1.0490,0.4900) mvmt=(0.2482,-0.3389,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7289,-2.2840,0.4925) mvmt=(0.2482,-0.3389,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8689,-4.7740,-1.0000) mvmt=(0.2482,-0.3389,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0162,2.5958,0.0850) mvmt=(-0.3583,-0.2193,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6661,-4.7740,0.5000) mvmt=(0.2482,-0.3389,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.834,16.274,94.500) lpos=(4.666,-4.774,0.480) lprev=(4.418,-4.435,0.480) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(4.6661,-4.4350,0.4800) mvmt=(0.2482,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.834,15.935,94.500) lpos=(4.666,-4.435,0.480) lprev=(4.418,-4.435,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-2.0471,-0.5629,-0.4125) mvmt=(-0.2482,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7269,-0.7100,0.4900) mvmt=(0.2482,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6661,-4.4350,0.4800) mvmt=(0.2482,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.834,15.935,94.500) lpos=(4.666,-4.435,0.480) lprev=(4.418,-4.435,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-2.0471,-0.5629,-0.4125) mvmt=(-0.2482,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7269,-0.7100,0.4900) mvmt=(0.2482,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5391,-4.5591,0.4800) mvmt=(0.1212,-0.1241,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.961,16.059,94.500) lpos=(4.539,-4.559,0.480) lprev=(4.418,-4.435,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.5391,-4.5591,0.4800) mvmt=(0.1212,-0.1241,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014C result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014C bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.5391,-4.5591,0.4800) mvmt=(0.1212,-0.1241,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40150 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40150 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.9201,-0.4388,-0.4125) mvmt=(-0.1212,0.1241,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8539,-0.8341,0.4900) mvmt=(0.1212,-0.1241,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8559,-2.0691,0.4925) mvmt=(0.1212,-0.1241,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9959,-4.5591,-1.0000) mvmt=(0.1212,-0.1241,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7916,2.7046,0.0850) mvmt=(-0.1337,-0.1105,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5391,-4.5591,0.5000) mvmt=(0.1212,-0.1241,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.4179,-4.7590,0.4800) mvmt=(0.0000,-0.3240,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4179,-4.7590,0.4800) mvmt=(0.0000,-0.3240,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.082,16.259,94.500) lpos=(4.418,-4.759,0.480) lprev=(4.418,-4.435,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.4179,-4.7590,0.4800) mvmt=(0.0000,-0.3240,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014C result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014C bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.4179,-4.7590,0.4800) mvmt=(0.0000,-0.3240,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40150 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40150 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.7989,-0.2389,-0.4125) mvmt=(0.0000,0.3240,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9751,-1.0340,0.4900) mvmt=(0.0000,-0.3240,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9771,-2.2690,0.4925) mvmt=(0.0000,-0.3240,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1171,-4.7590,-1.0000) mvmt=(0.0000,-0.3240,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9808,2.8420,0.0850) mvmt=(-0.3229,0.0268,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4179,-4.7590,0.5000) mvmt=(0.0000,-0.3240,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.082,16.259,94.500) lpos=(4.418,-4.759,0.480) lprev=(4.418,-4.435,0.480) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.8583,-4.4350,0.4800) mvmt=(0.4404,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.642,15.935,94.500) lpos=(4.858,-4.435,0.480) lprev=(4.418,-4.435,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-2.2393,-0.5629,-0.4125) mvmt=(-0.4404,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5347,-0.7100,0.4900) mvmt=(0.4404,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8583,-4.4350,0.4800) mvmt=(0.4404,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.642,15.935,94.500) lpos=(4.858,-4.435,0.480) lprev=(4.418,-4.435,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-2.2393,-0.5629,-0.4125) mvmt=(-0.4404,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5347,-0.7100,0.4900) mvmt=(0.4404,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6989,-4.6467,0.4800) mvmt=(0.2810,-0.2116,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.801,16.147,94.500) lpos=(4.699,-4.647,0.480) lprev=(4.418,-4.435,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.6989,-4.6467,0.4800) mvmt=(0.2810,-0.2116,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014C result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014C bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.6989,-4.6467,0.4800) mvmt=(0.2810,-0.2116,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40150 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40150 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.0799,-0.3512,-0.4125) mvmt=(-0.2810,0.2116,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6941,-0.9217,0.4900) mvmt=(0.2810,-0.2116,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6961,-2.1567,0.4925) mvmt=(0.2810,-0.2116,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8361,-4.6467,-1.0000) mvmt=(0.2810,-0.2116,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8921,2.5526,0.0850) mvmt=(-0.2341,-0.2625,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6989,-4.6467,0.5000) mvmt=(0.2810,-0.2116,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.4179,-4.4609,0.4800) mvmt=(0.0000,-0.0259,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.082,15.961,94.500) lpos=(4.418,-4.461,0.480) lprev=(4.418,-4.435,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.7989,-0.5370,-0.4125) mvmt=(0.0000,0.0259,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9751,-0.7359,0.4900) mvmt=(0.0000,-0.0259,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9771,-1.9709,0.4925) mvmt=(0.0000,-0.0259,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1171,-4.4609,-1.0000) mvmt=(0.0000,-0.0259,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6838,2.8173,0.0850) mvmt=(-0.0258,0.0021,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4179,-4.4609,0.5000) mvmt=(0.0000,-0.0259,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4179,-4.4609,-0.2700) mvmt=(0.0000,-0.0259,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.4179,-4.4609,-0.2700) out=(4.4179,-4.4609,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.082,15.961,93.750) lpos=(4.418,-4.461,-0.270) lprev=(4.418,-4.435,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.4179,-4.4609,0.4800) mvmt=(0.0000,-0.0259,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.082,15.961,94.500) lpos=(4.418,-4.461,0.480) lprev=(4.418,-4.435,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.7989,-0.5370,-0.4125) mvmt=(0.0000,0.0259,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9751,-0.7359,0.4900) mvmt=(0.0000,-0.0259,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9771,-1.9709,0.4925) mvmt=(0.0000,-0.0259,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1171,-4.4609,-1.0000) mvmt=(0.0000,-0.0259,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6838,2.8173,0.0850) mvmt=(-0.0258,0.0021,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4179,-4.4609,0.5000) mvmt=(0.0000,-0.0259,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.8543,-4.4869,0.4800) mvmt=(0.4364,-0.0260,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.646,15.987,94.500) lpos=(4.854,-4.487,0.480) lprev=(4.418,-4.461,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-2.2353,-0.5110,-0.4125) mvmt=(-0.4364,0.0260,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5387,-0.7619,0.4900) mvmt=(0.4364,-0.0260,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8543,-4.4869,0.4800) mvmt=(0.4364,-0.0260,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.646,15.987,94.500) lpos=(4.854,-4.487,0.480) lprev=(4.418,-4.461,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-2.2353,-0.5110,-0.4125) mvmt=(-0.4364,0.0260,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5387,-0.7619,0.4900) mvmt=(0.4364,-0.0260,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7210,-4.6753,0.4800) mvmt=(0.3031,-0.2144,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.779,16.175,94.500) lpos=(4.721,-4.675,0.480) lprev=(4.418,-4.461,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.7210,-4.6753,0.4800) mvmt=(0.3031,-0.2144,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014C result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014C bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.7210,-4.6753,0.4800) mvmt=(0.3031,-0.2144,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40150 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40150 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.1020,-0.3226,-0.4125) mvmt=(-0.3031,0.2144,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6720,-0.9503,0.4900) mvmt=(0.3031,-0.2144,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6740,-2.1853,0.4925) mvmt=(0.3031,-0.2144,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8140,-4.6753,-1.0000) mvmt=(0.3031,-0.2144,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9225,2.5329,0.0850) mvmt=(-0.2387,-0.2844,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7210,-4.6753,0.5000) mvmt=(0.3031,-0.2144,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4179,-4.4869,0.4800) mvmt=(0.0000,-0.0260,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.082,15.987,94.500) lpos=(4.418,-4.487,0.480) lprev=(4.418,-4.461,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.7989,-0.5110,-0.4125) mvmt=(0.0000,0.0260,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9751,-0.7619,0.4900) mvmt=(0.0000,-0.0260,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9771,-1.9969,0.4925) mvmt=(0.0000,-0.0260,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1171,-4.4869,-1.0000) mvmt=(0.0000,-0.0260,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7097,2.8194,0.0850) mvmt=(-0.0259,0.0021,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4179,-4.4869,0.5000) mvmt=(0.0000,-0.0260,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4179,-4.4869,-0.2700) mvmt=(0.0000,-0.0260,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.4179,-4.4869,-0.2700) out=(4.4179,-4.4869,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.082,15.987,93.750) lpos=(4.418,-4.487,-0.270) lprev=(4.418,-4.461,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.4179,-4.4869,0.4800) mvmt=(0.0000,-0.0260,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.082,15.987,94.500) lpos=(4.418,-4.487,0.480) lprev=(4.418,-4.461,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.7989,-0.5110,-0.4125) mvmt=(0.0000,0.0260,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9751,-0.7619,0.4900) mvmt=(0.0000,-0.0260,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9771,-1.9969,0.4925) mvmt=(0.0000,-0.0260,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1171,-4.4869,-1.0000) mvmt=(0.0000,-0.0260,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7097,2.8194,0.0850) mvmt=(-0.0259,0.0021,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4179,-4.4869,0.5000) mvmt=(0.0000,-0.0260,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.4179,-4.5130,0.4800) mvmt=(0.0000,-0.0261,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.082,16.013,94.500) lpos=(4.418,-4.513,0.480) lprev=(4.418,-4.487,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.4179,-4.5130,0.4800) mvmt=(0.0000,-0.0261,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014C result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014C bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.4179,-4.5130,0.4800) mvmt=(0.0000,-0.0261,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40150 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40150 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.7989,-0.4849,-0.4125) mvmt=(0.0000,0.0261,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9751,-0.7880,0.4900) mvmt=(0.0000,-0.0261,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9771,-2.0230,0.4925) mvmt=(0.0000,-0.0261,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1171,-4.5130,-1.0000) mvmt=(0.0000,-0.0261,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7357,2.8216,0.0850) mvmt=(-0.0260,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4179,-4.5130,0.5000) mvmt=(0.0000,-0.0261,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4179,-4.5130,-0.2700) mvmt=(0.0000,-0.0261,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.4179,-4.5130,-0.2700) out=(4.4179,-4.5130,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.082,16.013,93.750) lpos=(4.418,-4.513,-0.270) lprev=(4.418,-4.487,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.4179,-4.5130,0.4800) mvmt=(0.0000,-0.0261,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.082,16.013,94.500) lpos=(4.418,-4.513,0.480) lprev=(4.418,-4.487,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.4179,-4.5130,0.4800) mvmt=(0.0000,-0.0261,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014C result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014C bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.4179,-4.5130,0.4800) mvmt=(0.0000,-0.0261,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40150 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40150 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.7989,-0.4849,-0.4125) mvmt=(0.0000,0.0261,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9751,-0.7880,0.4900) mvmt=(0.0000,-0.0261,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9771,-2.0230,0.4925) mvmt=(0.0000,-0.0261,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1171,-4.5130,-1.0000) mvmt=(0.0000,-0.0261,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7357,2.8216,0.0850) mvmt=(-0.0260,0.0022,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4179,-4.5130,0.5000) mvmt=(0.0000,-0.0261,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.8533,-4.5389,0.4800) mvmt=(0.4354,-0.0259,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8533,-4.5389,0.4800) mvmt=(0.4354,-0.0259,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.647,16.039,94.500) lpos=(4.853,-4.539,0.480) lprev=(4.418,-4.513,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.8533,-4.5389,0.4800) mvmt=(0.4354,-0.0259,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014C result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014C bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.8533,-4.5389,0.4800) mvmt=(0.4354,-0.0259,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40150 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40150 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.2343,-0.4590,-0.4125) mvmt=(-0.4354,0.0259,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5397,-0.8139,0.4900) mvmt=(0.4354,-0.0259,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7323,-4.7215,0.4800) mvmt=(0.3144,-0.2084,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.768,16.221,94.500) lpos=(4.732,-4.721,0.480) lprev=(4.418,-4.513,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.7323,-4.7215,0.4800) mvmt=(0.3144,-0.2084,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014C result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014C bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.7323,-4.7215,0.4800) mvmt=(0.3144,-0.2084,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40150 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40150 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.1133,-0.2764,-0.4125) mvmt=(-0.3144,0.2084,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6607,-0.9965,0.4900) mvmt=(0.3144,-0.2084,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6627,-2.2315,0.4925) mvmt=(0.3144,-0.2084,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8027,-4.7215,-1.0000) mvmt=(0.3144,-0.2084,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9694,2.5256,0.0850) mvmt=(-0.2337,-0.2960,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7323,-4.7215,0.5000) mvmt=(0.3144,-0.2084,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.647,16.039,94.500) lpos=(4.853,-4.539,0.480) lprev=(4.418,-4.513,0.480) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(4.8533,-4.5130,0.4800) mvmt=(0.4354,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.647,16.013,94.500) lpos=(4.853,-4.513,0.480) lprev=(4.418,-4.513,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.8533,-4.5130,0.4800) mvmt=(0.4354,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014C result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014C bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.8533,-4.5130,0.4800) mvmt=(0.4354,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40150 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40150 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.2343,-0.4849,-0.4125) mvmt=(-0.4354,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5397,-0.7880,0.4900) mvmt=(0.4354,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.8533,-4.5130,0.4800) mvmt=(0.4354,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.647,16.013,94.500) lpos=(4.853,-4.513,0.480) lprev=(4.418,-4.513,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.8533,-4.5130,0.4800) mvmt=(0.4354,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014C result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014C bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.8533,-4.5130,0.4800) mvmt=(0.4354,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40150 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40150 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.2343,-0.4849,-0.4125) mvmt=(-0.4354,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5397,-0.7880,0.4900) mvmt=(0.4354,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7143,-4.7160,0.4800) mvmt=(0.2964,-0.2030,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.786,16.216,94.500) lpos=(4.714,-4.716,0.480) lprev=(4.418,-4.513,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.7143,-4.7160,0.4800) mvmt=(0.2964,-0.2030,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B4014C result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B4014C bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.7143,-4.7160,0.4800) mvmt=(0.2964,-0.2030,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40150 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40150 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-2.0953,-0.2819,-0.4125) mvmt=(-0.2964,0.2030,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6787,-0.9910,0.4900) mvmt=(0.2964,-0.2030,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6807,-2.2260,0.4925) mvmt=(0.2964,-0.2030,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8207,-4.7160,-1.0000) mvmt=(0.2964,-0.2030,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9625,2.5430,0.0850) mvmt=(-0.2268,-0.2786,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7143,-4.7160,0.5000) mvmt=(0.2964,-0.2030,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.4179,-4.0964,0.4800) mvmt=(0.0000,0.4166,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.082,15.596,94.500) lpos=(4.418,-4.096,0.480) lprev=(4.418,-4.513,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.7989,-0.9015,-0.4125) mvmt=(0.0000,-0.4166,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9751,-0.3714,0.4900) mvmt=(-0.0000,0.4166,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.2793,-4.1492,0.4800) mvmt=(-0.1386,0.3639,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.221,15.649,94.500) lpos=(4.279,-4.149,0.480) lprev=(4.418,-4.513,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.6603,-0.8487,-0.4125) mvmt=(0.1386,-0.3639,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1137,-0.4242,0.4900) mvmt=(-0.1386,0.3639,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1157,-1.6592,0.4925) mvmt=(-0.1386,0.3639,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2557,-4.1492,-1.0000) mvmt=(-0.1386,0.3639,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3616,2.9296,0.0850) mvmt=(0.3741,0.1080,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.2793,-4.1492,0.5000) mvmt=(-0.1386,0.3639,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.2793,-4.1492,-0.2700) mvmt=(-0.1386,0.3639,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.2793,-4.1492,-0.2700) out=(4.2793,-4.1492,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.221,15.649,93.750) lpos=(4.279,-4.149,-0.270) lprev=(4.418,-4.513,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.2793,-4.1492,0.4800) mvmt=(-0.1386,0.3639,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.221,15.649,94.500) lpos=(4.279,-4.149,0.480) lprev=(4.418,-4.513,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.6603,-0.8487,-0.4125) mvmt=(0.1386,-0.3639,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1137,-0.4242,0.4900) mvmt=(-0.1386,0.3639,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1157,-1.6592,0.4925) mvmt=(-0.1386,0.3639,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2557,-4.1492,-1.0000) mvmt=(-0.1386,0.3639,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3616,2.9296,0.0850) mvmt=(0.3741,0.1080,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.2793,-4.1492,0.5000) mvmt=(-0.1386,0.3639,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.1438,-3.7934,0.4800) mvmt=(-0.1355,0.3558,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.356,15.293,94.500) lpos=(4.144,-3.793,0.480) lprev=(4.279,-4.149,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.5248,-1.2045,-0.4125) mvmt=(0.1355,-0.3558,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2492,-0.0684,0.4900) mvmt=(-0.1355,0.3558,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2512,-1.3034,0.4925) mvmt=(-0.1355,0.3558,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3912,-3.7934,-1.0000) mvmt=(-0.1355,0.3558,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0042,3.0353,0.0850) mvmt=(0.3658,0.1056,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1438,-3.7934,0.5000) mvmt=(-0.1355,0.3558,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1438,-3.7934,-0.2700) mvmt=(-0.1355,0.3558,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.1438,-3.7934,-0.2700) out=(4.1438,-3.7934,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.356,15.293,93.750) lpos=(4.144,-3.793,-0.270) lprev=(4.279,-4.149,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.1438,-3.7934,0.4800) mvmt=(-0.1355,0.3558,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.356,15.293,94.500) lpos=(4.144,-3.793,0.480) lprev=(4.279,-4.149,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.5248,-1.2045,-0.4125) mvmt=(0.1355,-0.3558,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2492,-0.0684,0.4900) mvmt=(-0.1355,0.3558,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2512,-1.3034,0.4925) mvmt=(-0.1355,0.3558,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3912,-3.7934,-1.0000) mvmt=(-0.1355,0.3558,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0042,3.0353,0.0850) mvmt=(0.3658,0.1056,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1438,-3.7934,0.5000) mvmt=(-0.1355,0.3558,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.1285,-3.3868,0.4800) mvmt=(-0.0153,0.4066,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.371,14.887,94.500) lpos=(4.129,-3.387,0.480) lprev=(4.144,-3.793,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.5095,-1.6111,-0.4125) mvmt=(0.0153,-0.4066,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2645,0.3382,0.4900) mvmt=(-0.0153,0.4066,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2665,-0.8968,0.4925) mvmt=(-0.0153,0.4066,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4065,-3.3868,-1.0000) mvmt=(-0.0153,0.4066,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4106,3.0169,0.0850) mvmt=(0.4065,-0.0184,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1285,-3.3868,0.5000) mvmt=(-0.0153,0.4066,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1285,-3.3868,-0.2700) mvmt=(-0.0153,0.4066,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.1285,-3.3868,-0.2700) out=(4.1285,-3.3868,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.371,14.887,93.750) lpos=(4.129,-3.387,-0.270) lprev=(4.144,-3.793,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.1285,-3.3868,0.4800) mvmt=(-0.0153,0.4066,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.371,14.887,94.500) lpos=(4.129,-3.387,0.480) lprev=(4.144,-3.793,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.5095,-1.6111,-0.4125) mvmt=(0.0153,-0.4066,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2645,0.3382,0.4900) mvmt=(-0.0153,0.4066,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2665,-0.8968,0.4925) mvmt=(-0.0153,0.4066,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4065,-3.3868,-1.0000) mvmt=(-0.0153,0.4066,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4106,3.0169,0.0850) mvmt=(0.4065,-0.0184,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1285,-3.3868,0.5000) mvmt=(-0.0153,0.4066,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.0812,-2.9867,0.4800) mvmt=(-0.0473,0.4001,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.419,14.487,94.500) lpos=(4.081,-2.987,0.480) lprev=(4.129,-3.387,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.4622,-2.0112,-0.4125) mvmt=(0.0473,-0.4001,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3118,0.7383,0.4900) mvmt=(-0.0473,0.4001,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3138,-0.4967,0.4925) mvmt=(-0.0473,0.4001,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4538,-2.9867,-1.0000) mvmt=(-0.0473,0.4001,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8132,3.0309,0.0850) mvmt=(0.4026,0.0141,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0812,-2.9867,0.5000) mvmt=(-0.0473,0.4001,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0812,-2.9867,-0.2700) mvmt=(-0.0473,0.4001,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.0812,-2.9867,-0.2700) out=(4.0812,-2.9867,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.419,14.487,93.750) lpos=(4.081,-2.987,-0.270) lprev=(4.129,-3.387,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.0812,-2.9867,0.4800) mvmt=(-0.0473,0.4001,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.419,14.487,94.500) lpos=(4.081,-2.987,0.480) lprev=(4.129,-3.387,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.4622,-2.0112,-0.4125) mvmt=(0.0473,-0.4001,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3118,0.7383,0.4900) mvmt=(-0.0473,0.4001,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3138,-0.4967,0.4925) mvmt=(-0.0473,0.4001,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4538,-2.9867,-1.0000) mvmt=(-0.0473,0.4001,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8132,3.0309,0.0850) mvmt=(0.4026,0.0141,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0812,-2.9867,0.5000) mvmt=(-0.0473,0.4001,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.0376,-2.7225,0.4800) mvmt=(-0.0436,0.2643,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.462,14.222,94.500) lpos=(4.038,-2.722,0.480) lprev=(4.081,-2.987,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.4186,-2.2754,-0.4125) mvmt=(0.0436,-0.2643,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3554,1.0025,0.4900) mvmt=(-0.0436,0.2643,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3574,-0.2325,0.4925) mvmt=(-0.0436,0.2643,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4974,-2.7225,-1.0000) mvmt=(-0.0436,0.2643,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0802,3.0525,0.0850) mvmt=(0.2670,0.0216,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0376,-2.7225,0.5000) mvmt=(-0.0436,0.2643,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0376,-2.7225,-0.2700) mvmt=(-0.0436,0.2643,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.0376,-2.7225,-0.2700) out=(4.0376,-2.7225,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.462,14.222,93.750) lpos=(4.038,-2.722,-0.270) lprev=(4.081,-2.987,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.0376,-2.7225,0.4800) mvmt=(-0.0436,0.2643,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.462,14.222,94.500) lpos=(4.038,-2.722,0.480) lprev=(4.081,-2.987,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.4186,-2.2754,-0.4125) mvmt=(0.0436,-0.2643,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3554,1.0025,0.4900) mvmt=(-0.0436,0.2643,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3574,-0.2325,0.4925) mvmt=(-0.0436,0.2643,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4974,-2.7225,-1.0000) mvmt=(-0.0436,0.2643,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0802,3.0525,0.0850) mvmt=(0.2670,0.0216,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0376,-2.7225,0.5000) mvmt=(-0.0436,0.2643,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.9939,-2.4582,0.4800) mvmt=(-0.0436,0.2643,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.506,13.958,94.500) lpos=(3.994,-2.458,0.480) lprev=(4.038,-2.722,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3749,-2.5397,-0.4125) mvmt=(0.0436,-0.2643,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3991,1.2668,0.4900) mvmt=(-0.0436,0.2643,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4011,0.0318,0.4925) mvmt=(-0.0436,0.2643,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5411,-2.4582,-1.0000) mvmt=(-0.0436,0.2643,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3472,3.0742,0.0850) mvmt=(0.2670,0.0216,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9939,-2.4582,0.5000) mvmt=(-0.0436,0.2643,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9939,-2.4582,-0.2700) mvmt=(-0.0436,0.2643,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9939,-2.4582,-0.2700) out=(3.9939,-2.4582,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.506,13.958,93.750) lpos=(3.994,-2.458,-0.270) lprev=(4.038,-2.722,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.9939,-2.4582,0.4800) mvmt=(-0.0436,0.2643,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.506,13.958,94.500) lpos=(3.994,-2.458,0.480) lprev=(4.038,-2.722,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3749,-2.5397,-0.4125) mvmt=(0.0436,-0.2643,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3991,1.2668,0.4900) mvmt=(-0.0436,0.2643,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4011,0.0318,0.4925) mvmt=(-0.0436,0.2643,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5411,-2.4582,-1.0000) mvmt=(-0.0436,0.2643,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3472,3.0742,0.0850) mvmt=(0.2670,0.0216,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9939,-2.4582,0.5000) mvmt=(-0.0436,0.2643,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.9273,-2.0546,0.4800) mvmt=(-0.0666,0.4036,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.573,13.555,94.500) lpos=(3.927,-2.055,0.480) lprev=(3.994,-2.458,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3083,-2.9433,-0.4125) mvmt=(0.0666,-0.4036,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4657,1.6704,0.4900) mvmt=(-0.0666,0.4036,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4677,0.4354,0.4925) mvmt=(-0.0666,0.4036,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6077,-2.0546,-1.0000) mvmt=(-0.0666,0.4036,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7549,3.1072,0.0850) mvmt=(0.4077,0.0330,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9273,-2.0546,0.5000) mvmt=(-0.0666,0.4036,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9273,-2.0546,-0.2700) mvmt=(-0.0666,0.4036,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9273,-2.0546,-0.2700) out=(3.9273,-2.0546,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.573,13.555,93.750) lpos=(3.927,-2.055,-0.270) lprev=(3.994,-2.458,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.9273,-2.0546,0.4800) mvmt=(-0.0666,0.4036,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.573,13.555,94.500) lpos=(3.927,-2.055,0.480) lprev=(3.994,-2.458,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3083,-2.9433,-0.4125) mvmt=(0.0666,-0.4036,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4657,1.6704,0.4900) mvmt=(-0.0666,0.4036,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4677,0.4354,0.4925) mvmt=(-0.0666,0.4036,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6077,-2.0546,-1.0000) mvmt=(-0.0666,0.4036,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7549,3.1072,0.0850) mvmt=(0.4077,0.0330,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9273,-2.0546,0.5000) mvmt=(-0.0666,0.4036,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.8607,-1.6512,0.4800) mvmt=(-0.0666,0.4034,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.639,13.151,94.500) lpos=(3.861,-1.651,0.480) lprev=(3.927,-2.055,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2417,-3.3467,-0.4125) mvmt=(0.0666,-0.4034,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5323,2.0738,0.4900) mvmt=(-0.0666,0.4034,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5343,0.8388,0.4925) mvmt=(-0.0666,0.4034,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6743,-1.6512,-1.0000) mvmt=(-0.0666,0.4034,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1624,3.1402,0.0850) mvmt=(0.4075,0.0330,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8607,-1.6512,0.5000) mvmt=(-0.0666,0.4034,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8607,-1.6512,-0.2700) mvmt=(-0.0666,0.4034,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.8607,-1.6512,-0.2700) out=(3.8607,-1.6512,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.639,13.151,93.750) lpos=(3.861,-1.651,-0.270) lprev=(3.927,-2.055,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.8607,-1.6512,0.4800) mvmt=(-0.0666,0.4034,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.639,13.151,94.500) lpos=(3.861,-1.651,0.480) lprev=(3.927,-2.055,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2417,-3.3467,-0.4125) mvmt=(0.0666,-0.4034,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5323,2.0738,0.4900) mvmt=(-0.0666,0.4034,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5343,0.8388,0.4925) mvmt=(-0.0666,0.4034,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6743,-1.6512,-1.0000) mvmt=(-0.0666,0.4034,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1624,3.1402,0.0850) mvmt=(0.4075,0.0330,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8607,-1.6512,0.5000) mvmt=(-0.0666,0.4034,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.7947,-1.2513,0.4800) mvmt=(-0.0660,0.3998,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,12.751,94.500) lpos=(3.795,-1.251,0.480) lprev=(3.861,-1.651,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.8766,2.3957,-0.9003) mvmt=(-0.3998,-0.0660,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1757,-3.7466,-0.4125) mvmt=(0.0660,-0.3998,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5983,2.4737,0.4900) mvmt=(-0.0660,0.3998,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6003,1.2387,0.4925) mvmt=(-0.0660,0.3998,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7403,-1.2513,-1.0000) mvmt=(-0.0660,0.3998,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5664,3.1729,0.0850) mvmt=(0.4039,0.0327,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-1.2513,0.5000) mvmt=(-0.0660,0.3998,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-1.2513,-0.2700) mvmt=(-0.0660,0.3998,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.7947,-1.2513,-0.2700) out=(3.7947,-1.2513,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,12.751,93.750) lpos=(3.795,-1.251,-0.270) lprev=(3.861,-1.651,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.7947,-1.2513,0.4800) mvmt=(-0.0660,0.3998,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,12.751,94.500) lpos=(3.795,-1.251,0.480) lprev=(3.861,-1.651,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.8766,2.3957,-0.9003) mvmt=(-0.3998,-0.0660,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1757,-3.7466,-0.4125) mvmt=(0.0660,-0.3998,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5983,2.4737,0.4900) mvmt=(-0.0660,0.3998,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6003,1.2387,0.4925) mvmt=(-0.0660,0.3998,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7403,-1.2513,-1.0000) mvmt=(-0.0660,0.3998,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5664,3.1729,0.0850) mvmt=(0.4039,0.0327,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-1.2513,0.5000) mvmt=(-0.0660,0.3998,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.1691,-1.0509,0.4800) mvmt=(0.3744,0.2004,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.331,12.551,94.500) lpos=(4.169,-1.051,0.480) lprev=(3.795,-1.251,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.6762,2.7701,-0.9003) mvmt=(-0.2004,0.3744,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6512,2.5301,-1.0053) mvmt=(-0.2004,0.3744,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5501,-3.9470,-0.4125) mvmt=(-0.3744,-0.2004,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2239,2.6741,0.4900) mvmt=(0.3744,0.2004,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2259,1.4391,0.4925) mvmt=(0.3744,0.2004,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3659,-1.0509,-1.0000) mvmt=(0.3744,0.2004,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1691,-1.0509,0.4800) mvmt=(0.3744,0.2004,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.331,12.551,94.500) lpos=(4.169,-1.051,0.480) lprev=(3.795,-1.251,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.6762,2.7701,-0.9003) mvmt=(-0.2004,0.3744,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6512,2.5301,-1.0053) mvmt=(-0.2004,0.3744,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5501,-3.9470,-0.4125) mvmt=(-0.3744,-0.2004,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2239,2.6741,0.4900) mvmt=(0.3744,0.2004,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2259,1.4391,0.4925) mvmt=(0.3744,0.2004,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3659,-1.0509,-1.0000) mvmt=(0.3744,0.2004,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.3659,-1.0509,-1.0000) out=(-1.3659,-1.0509,-0.8200) delta=(0.0000,0.0000,0.1800) deltaMag=0.1800 n=(0.0000,0.0000,1.0000) d=1.3000 r=0.4800 winterp=1.0000->0.7000 dpPos=0.3000 dpMove=-0.6000 iDist=0.3000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(4.1691,-1.0509,0.6600) mvmt=(0.3744,0.2004,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.331,12.551,94.680) lpos=(4.169,-1.051,0.660) lprev=(3.795,-1.251,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.6762,2.7701,-0.7203) mvmt=(-0.2004,0.3744,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.6512,2.5301,-0.8253) mvmt=(-0.2004,0.3744,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.5501,-3.9470,-0.2325) mvmt=(-0.3744,-0.2004,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2239,2.6741,0.6700) mvmt=(0.3744,0.2004,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2259,1.4391,0.6725) mvmt=(0.3744,0.2004,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.3659,-1.0509,-0.8200) mvmt=(0.3744,0.2004,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1691,-1.0509,0.6800) mvmt=(0.3744,0.2004,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1691,-1.0509,0.6600) mvmt=(0.3744,0.2004,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.331,12.551,94.680) lpos=(4.169,-1.051,0.660) lprev=(3.795,-1.251,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.6762,2.7701,-0.7203) mvmt=(-0.2004,0.3744,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.6512,2.5301,-0.8253) mvmt=(-0.2004,0.3744,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.5501,-3.9470,-0.2325) mvmt=(-0.3744,-0.2004,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2239,2.6741,0.6700) mvmt=(0.3744,0.2004,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2259,1.4391,0.6725) mvmt=(0.3744,0.2004,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.3659,-1.0509,-0.8200) mvmt=(0.3744,0.2004,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1691,-1.0509,0.6800) mvmt=(0.3744,0.2004,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(3.7947,-1.0509,0.4800) mvmt=(0.0000,0.2004,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,12.551,94.500) lpos=(3.795,-1.051,0.480) lprev=(3.795,-1.251,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.6762,2.3957,-0.9003) mvmt=(-0.2004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.1757,-3.9470,-0.4125) mvmt=(0.0000,-0.2004,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.5983,2.6741,0.4900) mvmt=(0.0000,0.2004,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.6003,1.4391,0.4925) mvmt=(-0.0000,0.2004,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.7403,-1.0509,-1.0000) mvmt=(0.0000,0.2004,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-1.0509,0.5000) mvmt=(0.0000,0.2004,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-1.0509,-0.2700) mvmt=(0.0000,0.2004,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.7947,-1.0509,-0.2700) out=(3.7947,-1.0509,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,12.551,93.750) lpos=(3.795,-1.051,-0.270) lprev=(3.795,-1.251,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.7947,-1.0509,0.4800) mvmt=(0.0000,0.2004,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,12.551,94.500) lpos=(3.795,-1.051,0.480) lprev=(3.795,-1.251,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.6762,2.3957,-0.9003) mvmt=(-0.2004,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1757,-3.9470,-0.4125) mvmt=(0.0000,-0.2004,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5983,2.6741,0.4900) mvmt=(0.0000,0.2004,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6003,1.4391,0.4925) mvmt=(-0.0000,0.2004,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7403,-1.0509,-1.0000) mvmt=(0.0000,0.2004,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-1.0509,0.5000) mvmt=(0.0000,0.2004,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.7947,-0.8870,0.4800) mvmt=(0.0000,0.1639,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,12.387,94.500) lpos=(3.795,-0.887,0.480) lprev=(3.795,-1.051,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.5122,2.3957,-0.9003) mvmt=(-0.1639,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4872,2.1557,-1.0053) mvmt=(-0.1639,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1757,-4.1109,-0.4125) mvmt=(0.0000,-0.1639,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5983,2.8380,0.4900) mvmt=(0.0000,0.1639,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6003,1.6030,0.4925) mvmt=(0.0000,0.1639,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7403,-0.8870,-1.0000) mvmt=(0.0000,0.1639,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-0.8870,0.5000) mvmt=(0.0000,0.1639,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-0.8870,-0.2700) mvmt=(0.0000,0.1639,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.7947,-0.8870,-0.2700) out=(3.7947,-0.8870,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,12.387,93.750) lpos=(3.795,-0.887,-0.270) lprev=(3.795,-1.051,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.7947,-0.8870,0.4800) mvmt=(0.0000,0.1639,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,12.387,94.500) lpos=(3.795,-0.887,0.480) lprev=(3.795,-1.051,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.5122,2.3957,-0.9003) mvmt=(-0.1639,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4872,2.1557,-1.0053) mvmt=(-0.1639,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1757,-4.1109,-0.4125) mvmt=(0.0000,-0.1639,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5983,2.8380,0.4900) mvmt=(0.0000,0.1639,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6003,1.6030,0.4925) mvmt=(0.0000,0.1639,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7403,-0.8870,-1.0000) mvmt=(0.0000,0.1639,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-0.8870,0.5000) mvmt=(0.0000,0.1639,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.1858,-0.7541,0.4800) mvmt=(0.3911,0.1329,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.314,12.254,94.500) lpos=(4.186,-0.754,0.480) lprev=(3.795,-0.887,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.3794,2.7868,-0.9003) mvmt=(-0.1329,0.3911,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3544,2.5468,-1.0053) mvmt=(-0.1329,0.3911,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5668,-4.2438,-0.4125) mvmt=(-0.3911,-0.1329,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2072,2.9709,0.4900) mvmt=(0.3911,0.1329,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2092,1.7359,0.4925) mvmt=(0.3911,0.1329,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3492,-0.7541,-1.0000) mvmt=(0.3911,0.1329,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1858,-0.7541,0.4800) mvmt=(0.3911,0.1329,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.314,12.254,94.500) lpos=(4.186,-0.754,0.480) lprev=(3.795,-0.887,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.3794,2.7868,-0.9003) mvmt=(-0.1329,0.3911,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3544,2.5468,-1.0053) mvmt=(-0.1329,0.3911,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5668,-4.2438,-0.4125) mvmt=(-0.3911,-0.1329,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2072,2.9709,0.4900) mvmt=(0.3911,0.1329,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2092,1.7359,0.4925) mvmt=(0.3911,0.1329,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3492,-0.7541,-1.0000) mvmt=(0.3911,0.1329,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.3492,-0.7541,-1.0000) out=(-1.3492,-0.7541,-0.8200) delta=(0.0000,0.0000,0.1800) deltaMag=0.1800 n=(0.0000,0.0000,1.0000) d=1.3000 r=0.4800 winterp=1.0000->0.7000 dpPos=0.3000 dpMove=-0.6000 iDist=0.3000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(4.1858,-0.7541,0.6600) mvmt=(0.3911,0.1329,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.314,12.254,94.680) lpos=(4.186,-0.754,0.660) lprev=(3.795,-0.887,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.3794,2.7868,-0.7203) mvmt=(-0.1329,0.3911,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.3544,2.5468,-0.8253) mvmt=(-0.1329,0.3911,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.5668,-4.2438,-0.2325) mvmt=(-0.3911,-0.1329,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2072,2.9709,0.6700) mvmt=(0.3911,0.1329,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2092,1.7359,0.6725) mvmt=(0.3911,0.1329,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.3492,-0.7541,-0.8200) mvmt=(0.3911,0.1329,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1858,-0.7541,0.6800) mvmt=(0.3911,0.1329,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1858,-0.7541,0.6600) mvmt=(0.3911,0.1329,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.314,12.254,94.680) lpos=(4.186,-0.754,0.660) lprev=(3.795,-0.887,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.3794,2.7868,-0.7203) mvmt=(-0.1329,0.3911,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.3544,2.5468,-0.8253) mvmt=(-0.1329,0.3911,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.5668,-4.2438,-0.2325) mvmt=(-0.3911,-0.1329,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2072,2.9709,0.6700) mvmt=(0.3911,0.1329,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2092,1.7359,0.6725) mvmt=(0.3911,0.1329,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.3492,-0.7541,-0.8200) mvmt=(0.3911,0.1329,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1858,-0.7541,0.6800) mvmt=(0.3911,0.1329,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(3.7947,-0.7541,0.4800) mvmt=(0.0000,0.1329,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,12.254,94.500) lpos=(3.795,-0.754,0.480) lprev=(3.795,-0.887,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.3794,2.3957,-0.9003) mvmt=(-0.1329,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.3544,2.1557,-1.0053) mvmt=(-0.1329,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.5983,2.9709,0.4900) mvmt=(0.0000,0.1329,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.6003,1.7359,0.4925) mvmt=(0.0000,0.1329,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.7403,-0.7541,-1.0000) mvmt=(0.0000,0.1329,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-0.7541,0.5000) mvmt=(0.0000,0.1329,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-0.7541,-0.2700) mvmt=(0.0000,0.1329,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.7947,-0.7541,-0.2700) out=(3.7947,-0.7541,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,12.254,93.750) lpos=(3.795,-0.754,-0.270) lprev=(3.795,-0.887,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.7947,-0.7541,0.4800) mvmt=(0.0000,0.1329,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,12.254,94.500) lpos=(3.795,-0.754,0.480) lprev=(3.795,-0.887,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.3794,2.3957,-0.9003) mvmt=(-0.1329,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3544,2.1557,-1.0053) mvmt=(-0.1329,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5983,2.9709,0.4900) mvmt=(0.0000,0.1329,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6003,1.7359,0.4925) mvmt=(0.0000,0.1329,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7403,-0.7541,-1.0000) mvmt=(0.0000,0.1329,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-0.7541,0.5000) mvmt=(0.0000,0.1329,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.7947,-0.6551,0.4800) mvmt=(0.0000,0.0990,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,12.155,94.500) lpos=(3.795,-0.655,0.480) lprev=(3.795,-0.754,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.2804,2.3957,-0.9003) mvmt=(-0.0990,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.2554,2.1557,-1.0053) mvmt=(-0.0990,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5983,3.0699,0.4900) mvmt=(0.0000,0.0990,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6003,1.8349,0.4925) mvmt=(0.0000,0.0990,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7403,-0.6551,-1.0000) mvmt=(0.0000,0.0990,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-0.6551,0.5000) mvmt=(0.0000,0.0990,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-0.6551,-0.2700) mvmt=(0.0000,0.0990,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.7947,-0.6551,-0.2700) out=(3.7947,-0.6551,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,12.155,93.750) lpos=(3.795,-0.655,-0.270) lprev=(3.795,-0.754,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.7947,-0.6551,0.4800) mvmt=(0.0000,0.0990,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,12.155,94.500) lpos=(3.795,-0.655,0.480) lprev=(3.795,-0.754,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.2804,2.3957,-0.9003) mvmt=(-0.0990,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.2554,2.1557,-1.0053) mvmt=(-0.0990,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5983,3.0699,0.4900) mvmt=(0.0000,0.0990,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6003,1.8349,0.4925) mvmt=(0.0000,0.0990,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7403,-0.6551,-1.0000) mvmt=(0.0000,0.0990,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-0.6551,0.5000) mvmt=(0.0000,0.0990,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.1864,-0.5726,0.4800) mvmt=(0.3917,0.0825,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.314,12.073,94.500) lpos=(4.186,-0.573,0.480) lprev=(3.795,-0.655,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1979,2.7874,-0.9003) mvmt=(-0.0825,0.3917,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1729,2.5474,-1.0053) mvmt=(-0.0825,0.3917,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5674,-4.4253,-0.4125) mvmt=(-0.3917,-0.0825,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2066,3.1524,0.4900) mvmt=(0.3917,0.0825,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2086,1.9174,0.4925) mvmt=(0.3917,0.0825,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3486,-0.5726,-1.0000) mvmt=(0.3917,0.0825,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1864,-0.5726,0.4800) mvmt=(0.3917,0.0825,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.314,12.073,94.500) lpos=(4.186,-0.573,0.480) lprev=(3.795,-0.655,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1979,2.7874,-0.9003) mvmt=(-0.0825,0.3917,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1729,2.5474,-1.0053) mvmt=(-0.0825,0.3917,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5674,-4.4253,-0.4125) mvmt=(-0.3917,-0.0825,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2066,3.1524,0.4900) mvmt=(0.3917,0.0825,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2086,1.9174,0.4925) mvmt=(0.3917,0.0825,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3486,-0.5726,-1.0000) mvmt=(0.3917,0.0825,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.3486,-0.5726,-1.0000) out=(-1.3486,-0.5726,-0.8200) delta=(0.0000,0.0000,0.1800) deltaMag=0.1800 n=(0.0000,0.0000,1.0000) d=1.3000 r=0.4800 winterp=1.0000->0.7000 dpPos=0.3000 dpMove=-0.6000 iDist=0.3000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(4.1864,-0.5726,0.6600) mvmt=(0.3917,0.0825,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.314,12.073,94.680) lpos=(4.186,-0.573,0.660) lprev=(3.795,-0.655,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1979,2.7874,-0.7203) mvmt=(-0.0825,0.3917,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1729,2.5474,-0.8253) mvmt=(-0.0825,0.3917,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.5674,-4.4253,-0.2325) mvmt=(-0.3917,-0.0825,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2066,3.1524,0.6700) mvmt=(0.3917,0.0825,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2086,1.9174,0.6725) mvmt=(0.3917,0.0825,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.3486,-0.5726,-0.8200) mvmt=(0.3917,0.0825,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1864,-0.5726,0.6800) mvmt=(0.3917,0.0825,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1864,-0.5726,0.6600) mvmt=(0.3917,0.0825,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.314,12.073,94.680) lpos=(4.186,-0.573,0.660) lprev=(3.795,-0.655,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1979,2.7874,-0.7203) mvmt=(-0.0825,0.3917,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1729,2.5474,-0.8253) mvmt=(-0.0825,0.3917,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.5674,-4.4253,-0.2325) mvmt=(-0.3917,-0.0825,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2066,3.1524,0.6700) mvmt=(0.3917,0.0825,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2086,1.9174,0.6725) mvmt=(0.3917,0.0825,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.3486,-0.5726,-0.8200) mvmt=(0.3917,0.0825,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1864,-0.5726,0.6800) mvmt=(0.3917,0.0825,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(3.7947,-0.5726,0.4800) mvmt=(0.0000,0.0825,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,12.073,94.500) lpos=(3.795,-0.573,0.480) lprev=(3.795,-0.655,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1979,2.3957,-0.9003) mvmt=(-0.0825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1729,2.1557,-1.0053) mvmt=(-0.0825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.5983,3.1524,0.4900) mvmt=(0.0000,0.0825,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.6003,1.9174,0.4925) mvmt=(0.0000,0.0825,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.7403,-0.5726,-1.0000) mvmt=(0.0000,0.0825,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-0.5726,0.5000) mvmt=(0.0000,0.0825,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-0.5726,-0.2700) mvmt=(0.0000,0.0825,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.7947,-0.5726,-0.2700) out=(3.7947,-0.5726,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,12.073,93.750) lpos=(3.795,-0.573,-0.270) lprev=(3.795,-0.655,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.7947,-0.5726,0.4800) mvmt=(0.0000,0.0825,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,12.073,94.500) lpos=(3.795,-0.573,0.480) lprev=(3.795,-0.655,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1979,2.3957,-0.9003) mvmt=(-0.0825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1729,2.1557,-1.0053) mvmt=(-0.0825,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5983,3.1524,0.4900) mvmt=(0.0000,0.0825,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6003,1.9174,0.4925) mvmt=(0.0000,0.0825,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7403,-0.5726,-1.0000) mvmt=(0.0000,0.0825,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-0.5726,0.5000) mvmt=(0.0000,0.0825,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.7947,-0.4910,0.4800) mvmt=(0.0000,0.0816,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,11.991,94.500) lpos=(3.795,-0.491,0.480) lprev=(3.795,-0.573,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1163,2.3957,-0.9003) mvmt=(-0.0816,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0913,2.1557,-1.0053) mvmt=(-0.0816,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5983,3.2340,0.4900) mvmt=(0.0000,0.0816,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6003,1.9990,0.4925) mvmt=(0.0000,0.0816,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7403,-0.4910,-1.0000) mvmt=(0.0000,0.0816,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-0.4910,0.5000) mvmt=(0.0000,0.0816,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-0.4910,-0.2700) mvmt=(0.0000,0.0816,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.7947,-0.4910,-0.2700) out=(3.7947,-0.4910,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,11.991,93.750) lpos=(3.795,-0.491,-0.270) lprev=(3.795,-0.573,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.7947,-0.4910,0.4800) mvmt=(0.0000,0.0816,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,11.991,94.500) lpos=(3.795,-0.491,0.480) lprev=(3.795,-0.573,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1163,2.3957,-0.9003) mvmt=(-0.0816,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0913,2.1557,-1.0053) mvmt=(-0.0816,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5983,3.2340,0.4900) mvmt=(0.0000,0.0816,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6003,1.9990,0.4925) mvmt=(0.0000,0.0816,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7403,-0.4910,-1.0000) mvmt=(0.0000,0.0816,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-0.4910,0.5000) mvmt=(0.0000,0.0816,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.1711,-0.2755,0.4800) mvmt=(0.3764,0.2155,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.329,11.776,94.500) lpos=(4.171,-0.276,0.480) lprev=(3.795,-0.491,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9008,2.7721,-0.9003) mvmt=(-0.2155,0.3764,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8758,2.5321,-1.0053) mvmt=(-0.2155,0.3764,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2219,3.4495,0.4900) mvmt=(0.3764,0.2155,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2239,2.2145,0.4925) mvmt=(0.3764,0.2155,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3639,-0.2755,-1.0000) mvmt=(0.3764,0.2155,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1711,-0.2755,0.4800) mvmt=(0.3764,0.2155,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.329,11.776,94.500) lpos=(4.171,-0.276,0.480) lprev=(3.795,-0.491,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9008,2.7721,-0.9003) mvmt=(-0.2155,0.3764,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8758,2.5321,-1.0053) mvmt=(-0.2155,0.3764,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2219,3.4495,0.4900) mvmt=(0.3764,0.2155,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2239,2.2145,0.4925) mvmt=(0.3764,0.2155,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3639,-0.2755,-1.0000) mvmt=(0.3764,0.2155,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.3639,-0.2755,-1.0000) out=(-1.3639,-0.2755,-0.8200) delta=(0.0000,0.0000,0.1800) deltaMag=0.1800 n=(0.0000,0.0000,1.0000) d=1.3000 r=0.4800 winterp=1.0000->0.7000 dpPos=0.3000 dpMove=-0.6000 iDist=0.3000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(4.1711,-0.2755,0.6600) mvmt=(0.3764,0.2155,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.329,11.776,94.680) lpos=(4.171,-0.276,0.660) lprev=(3.795,-0.491,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9008,2.7721,-0.7203) mvmt=(-0.2155,0.3764,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(3.8758,2.5321,-0.8253) mvmt=(-0.2155,0.3764,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2219,3.4495,0.6700) mvmt=(0.3764,0.2155,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2239,2.2145,0.6725) mvmt=(0.3764,0.2155,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.3639,-0.2755,-0.8200) mvmt=(0.3764,0.2155,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1711,-0.2755,0.6800) mvmt=(0.3764,0.2155,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1711,-0.2755,0.6600) mvmt=(0.3764,0.2155,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.329,11.776,94.680) lpos=(4.171,-0.276,0.660) lprev=(3.795,-0.491,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9008,2.7721,-0.7203) mvmt=(-0.2155,0.3764,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(3.8758,2.5321,-0.8253) mvmt=(-0.2155,0.3764,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2219,3.4495,0.6700) mvmt=(0.3764,0.2155,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2239,2.2145,0.6725) mvmt=(0.3764,0.2155,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.3639,-0.2755,-0.8200) mvmt=(0.3764,0.2155,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1711,-0.2755,0.6800) mvmt=(0.3764,0.2155,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(3.7947,-0.2755,0.4800) mvmt=(0.0000,0.2155,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,11.776,94.500) lpos=(3.795,-0.276,0.480) lprev=(3.795,-0.491,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9008,2.3957,-0.9003) mvmt=(-0.2155,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(3.8758,2.1557,-1.0053) mvmt=(-0.2155,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.5983,3.4495,0.4900) mvmt=(0.0000,0.2155,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.6003,2.2145,0.4925) mvmt=(0.0000,0.2155,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.7403,-0.2755,-1.0000) mvmt=(0.0000,0.2155,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-0.2755,0.5000) mvmt=(0.0000,0.2155,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-0.2755,-0.2700) mvmt=(0.0000,0.2155,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.7947,-0.2755,-0.2700) out=(3.7947,-0.2755,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,11.776,93.750) lpos=(3.795,-0.276,-0.270) lprev=(3.795,-0.491,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.7947,-0.2755,0.4800) mvmt=(0.0000,0.2155,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,11.776,94.500) lpos=(3.795,-0.276,0.480) lprev=(3.795,-0.491,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9008,2.3957,-0.9003) mvmt=(-0.2155,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8758,2.1557,-1.0053) mvmt=(-0.2155,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5983,3.4495,0.4900) mvmt=(0.0000,0.2155,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6003,2.2145,0.4925) mvmt=(0.0000,0.2155,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7403,-0.2755,-1.0000) mvmt=(0.0000,0.2155,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-0.2755,0.5000) mvmt=(0.0000,0.2155,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.7947,-0.0276,0.4800) mvmt=(0.0000,0.2479,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,11.528,94.500) lpos=(3.795,-0.028,0.480) lprev=(3.795,-0.276,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6528,2.3957,-0.9003) mvmt=(-0.2479,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6278,2.1557,-1.0053) mvmt=(-0.2479,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5983,3.6974,0.4900) mvmt=(0.0000,0.2479,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6003,2.4624,0.4925) mvmt=(0.0000,0.2479,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7403,-0.0276,-1.0000) mvmt=(0.0000,0.2479,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-0.0276,0.5000) mvmt=(0.0000,0.2479,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-0.0276,-0.2700) mvmt=(0.0000,0.2479,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.7947,-0.0276,-0.2700) out=(3.7947,-0.0276,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,11.528,93.750) lpos=(3.795,-0.028,-0.270) lprev=(3.795,-0.276,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.7947,-0.0276,0.4800) mvmt=(0.0000,0.2479,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,11.528,94.500) lpos=(3.795,-0.028,0.480) lprev=(3.795,-0.276,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6528,2.3957,-0.9003) mvmt=(-0.2479,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6278,2.1557,-1.0053) mvmt=(-0.2479,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5983,3.6974,0.4900) mvmt=(0.0000,0.2479,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6003,2.4624,0.4925) mvmt=(0.0000,0.2479,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7403,-0.0276,-1.0000) mvmt=(0.0000,0.2479,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,-0.0276,0.5000) mvmt=(0.0000,0.2479,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.1221,0.2431,0.4800) mvmt=(0.3274,0.2707,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.378,11.257,94.500) lpos=(4.122,0.243,0.480) lprev=(3.795,-0.028,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3821,2.7231,-0.9003) mvmt=(-0.2707,0.3274,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3571,2.4831,-1.0053) mvmt=(-0.2707,0.3274,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3571,0.2718,-2.3553) mvmt=(-0.2707,0.3274,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2709,3.9681,0.4900) mvmt=(0.3274,0.2707,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2729,2.7331,0.4925) mvmt=(0.3274,0.2707,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4129,0.2431,-1.0000) mvmt=(0.3274,0.2707,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1221,0.2431,0.4800) mvmt=(0.3274,0.2707,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.378,11.257,94.500) lpos=(4.122,0.243,0.480) lprev=(3.795,-0.028,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3821,2.7231,-0.9003) mvmt=(-0.2707,0.3274,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3571,2.4831,-1.0053) mvmt=(-0.2707,0.3274,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3571,0.2718,-2.3553) mvmt=(-0.2707,0.3274,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2709,3.9681,0.4900) mvmt=(0.3274,0.2707,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2729,2.7331,0.4925) mvmt=(0.3274,0.2707,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4129,0.2431,-1.0000) mvmt=(0.3274,0.2707,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.4129,0.2431,-1.0000) out=(-1.4129,0.2431,-0.8200) delta=(0.0000,0.0000,0.1800) deltaMag=0.1800 n=(0.0000,0.0000,1.0000) d=1.3000 r=0.4800 winterp=1.0000->0.7000 dpPos=0.3000 dpMove=-0.6000 iDist=0.3000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(4.1221,0.2431,0.6600) mvmt=(0.3274,0.2707,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.378,11.257,94.680) lpos=(4.122,0.243,0.660) lprev=(3.795,-0.028,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3821,2.7231,-0.7203) mvmt=(-0.2707,0.3274,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(3.3571,2.4831,-0.8253) mvmt=(-0.2707,0.3274,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(3.3571,0.2718,-2.1753) mvmt=(-0.2707,0.3274,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2709,3.9681,0.6700) mvmt=(0.3274,0.2707,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2729,2.7331,0.6725) mvmt=(0.3274,0.2707,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.4129,0.2431,-0.8200) mvmt=(0.3274,0.2707,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.9357,3.1157,0.6750) mvmt=(0.2427,-0.3486,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1221,0.2431,0.6800) mvmt=(0.3274,0.2707,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1221,0.2431,0.6600) mvmt=(0.3274,0.2707,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.378,11.257,94.680) lpos=(4.122,0.243,0.660) lprev=(3.795,-0.028,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3821,2.7231,-0.7203) mvmt=(-0.2707,0.3274,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(3.3571,2.4831,-0.8253) mvmt=(-0.2707,0.3274,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(3.3571,0.2718,-2.1753) mvmt=(-0.2707,0.3274,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2709,3.9681,0.6700) mvmt=(0.3274,0.2707,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2729,2.7331,0.6725) mvmt=(0.3274,0.2707,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.4129,0.2431,-0.8200) mvmt=(0.3274,0.2707,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.9357,3.1157,0.6750) mvmt=(0.2427,-0.3486,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1221,0.2431,0.6800) mvmt=(0.3274,0.2707,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(3.7947,0.2431,0.4800) mvmt=(0.0000,0.2707,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,11.257,94.500) lpos=(3.795,0.243,0.480) lprev=(3.795,-0.028,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3821,2.3957,-0.9003) mvmt=(-0.2707,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(3.3571,2.1557,-1.0053) mvmt=(-0.2707,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.5983,3.9681,0.4900) mvmt=(0.0000,0.2707,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.6003,2.7331,0.4925) mvmt=(0.0000,0.2707,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.7403,0.2431,-1.0000) mvmt=(0.0000,0.2707,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,0.2431,0.5000) mvmt=(0.0000,0.2707,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,0.2431,-0.2700) mvmt=(0.0000,0.2707,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.7947,0.2431,-0.2700) out=(3.7947,0.2431,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,11.257,93.750) lpos=(3.795,0.243,-0.270) lprev=(3.795,-0.028,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.7947,0.2431,0.4800) mvmt=(0.0000,0.2707,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,11.257,94.500) lpos=(3.795,0.243,0.480) lprev=(3.795,-0.028,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3821,2.3957,-0.9003) mvmt=(-0.2707,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3571,2.1557,-1.0053) mvmt=(-0.2707,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5983,3.9681,0.4900) mvmt=(0.0000,0.2707,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6003,2.7331,0.4925) mvmt=(0.0000,0.2707,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7403,0.2431,-1.0000) mvmt=(0.0000,0.2707,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,0.2431,0.5000) mvmt=(0.0000,0.2707,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.7947,0.5458,0.4800) mvmt=(0.0000,0.3027,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,10.954,94.500) lpos=(3.795,0.546,0.480) lprev=(3.795,0.243,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0794,2.3957,-0.9003) mvmt=(-0.3027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0544,2.1557,-1.0053) mvmt=(-0.3027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0544,-0.0556,-2.3553) mvmt=(-0.3027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6003,3.0358,0.4925) mvmt=(0.0000,0.3027,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7403,0.5458,-1.0000) mvmt=(0.0000,0.3027,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6069,3.4169,0.4950) mvmt=(0.3017,-0.0250,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,0.5458,0.5000) mvmt=(0.0000,0.3027,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,0.5458,-0.2700) mvmt=(0.0000,0.3027,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.7947,0.5458,-0.2700) out=(3.7947,0.5458,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,10.954,93.750) lpos=(3.795,0.546,-0.270) lprev=(3.795,0.243,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.7947,0.5458,0.4800) mvmt=(0.0000,0.3027,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.705,10.954,94.500) lpos=(3.795,0.546,0.480) lprev=(3.795,0.243,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0794,2.3957,-0.9003) mvmt=(-0.3027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0544,2.1557,-1.0053) mvmt=(-0.3027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0544,-0.0556,-2.3553) mvmt=(-0.3027,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6003,3.0358,0.4925) mvmt=(0.0000,0.3027,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7403,0.5458,-1.0000) mvmt=(0.0000,0.3027,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6069,3.4169,0.4950) mvmt=(0.3017,-0.0250,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7947,0.5458,0.5000) mvmt=(0.0000,0.3027,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.0767,0.8754,0.4800) mvmt=(0.2820,0.3296,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.423,10.625,94.500) lpos=(4.077,0.875,0.480) lprev=(3.795,0.546,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7498,2.6777,-0.9003) mvmt=(-0.3296,0.2820,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7248,2.4377,-1.0053) mvmt=(-0.3296,0.2820,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7248,0.2265,-2.3553) mvmt=(-0.3296,0.2820,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3183,3.3654,0.4925) mvmt=(0.2820,0.3296,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4583,0.8754,-1.0000) mvmt=(0.2820,0.3296,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3018,3.1086,0.4950) mvmt=(0.3052,-0.3083,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0767,0.8754,0.5000) mvmt=(0.2820,0.3296,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0767,0.8754,-0.2700) mvmt=(0.2820,0.3296,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.0767,0.8754,-0.2700) out=(4.0767,0.8754,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.423,10.625,93.750) lpos=(4.077,0.875,-0.270) lprev=(3.795,0.546,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.0767,0.8754,0.4800) mvmt=(0.2820,0.3296,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.423,10.625,94.500) lpos=(4.077,0.875,0.480) lprev=(3.795,0.546,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7498,2.6777,-0.9003) mvmt=(-0.3296,0.2820,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7248,2.4377,-1.0053) mvmt=(-0.3296,0.2820,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7248,0.2265,-2.3553) mvmt=(-0.3296,0.2820,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3183,3.3654,0.4925) mvmt=(0.2820,0.3296,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4583,0.8754,-1.0000) mvmt=(0.2820,0.3296,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3018,3.1086,0.4950) mvmt=(0.3052,-0.3083,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0767,0.8754,0.5000) mvmt=(0.2820,0.3296,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.3105,1.1969,0.4800) mvmt=(0.2338,0.3215,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.190,10.303,94.500) lpos=(4.310,1.197,0.480) lprev=(4.077,0.875,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.4283,2.9115,-0.9003) mvmt=(-0.3215,0.2338,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4033,2.6715,-1.0053) mvmt=(-0.3215,0.2338,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4033,0.4602,-2.3553) mvmt=(-0.3215,0.2338,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0845,3.6869,0.4925) mvmt=(0.2338,0.3215,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2245,1.1969,-1.0000) mvmt=(0.2338,0.3215,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3105,1.1969,0.4800) mvmt=(0.2338,0.3215,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.190,10.303,94.500) lpos=(4.310,1.197,0.480) lprev=(4.077,0.875,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.4283,2.9115,-0.9003) mvmt=(-0.3215,0.2338,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4033,2.6715,-1.0053) mvmt=(-0.3215,0.2338,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4033,0.4602,-2.3553) mvmt=(-0.3215,0.2338,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0845,3.6869,0.4925) mvmt=(0.2338,0.3215,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2245,1.1969,-1.0000) mvmt=(0.2338,0.3215,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.2245,1.1969,-1.0000) out=(-1.2245,1.1969,-0.8200) delta=(0.0000,0.0000,0.1800) deltaMag=0.1800 n=(0.0000,0.0000,1.0000) d=1.3000 r=0.4800 winterp=1.0000->0.7000 dpPos=0.3000 dpMove=-0.6000 iDist=0.3000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(4.3105,1.1969,0.6600) mvmt=(0.2338,0.3215,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.190,10.303,94.680) lpos=(4.310,1.197,0.660) lprev=(4.077,0.875,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.4283,2.9115,-0.7203) mvmt=(-0.3215,0.2338,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.4033,2.6715,-0.8253) mvmt=(-0.3215,0.2338,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.4033,0.4602,-2.1753) mvmt=(-0.3215,0.2338,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.0845,3.6869,0.6725) mvmt=(0.2338,0.3215,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2245,1.1969,-0.8200) mvmt=(0.2338,0.3215,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.0007,2.8490,0.6750) mvmt=(0.3011,-0.2596,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.3105,1.1969,0.6800) mvmt=(0.2338,0.3215,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.3105,1.1969,0.6600) mvmt=(0.2338,0.3215,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.190,10.303,94.680) lpos=(4.310,1.197,0.660) lprev=(4.077,0.875,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.4283,2.9115,-0.7203) mvmt=(-0.3215,0.2338,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.4033,2.6715,-0.8253) mvmt=(-0.3215,0.2338,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.4033,0.4602,-2.1753) mvmt=(-0.3215,0.2338,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.0845,3.6869,0.6725) mvmt=(0.2338,0.3215,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2245,1.1969,-0.8200) mvmt=(0.2338,0.3215,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.0007,2.8490,0.6750) mvmt=(0.3011,-0.2596,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.3105,1.1969,0.6800) mvmt=(0.2338,0.3215,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(4.0767,1.1969,0.4800) mvmt=(0.0000,0.3215,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.423,10.303,94.500) lpos=(4.077,1.197,0.480) lprev=(4.077,0.875,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.4283,2.6777,-0.9003) mvmt=(-0.3215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.4033,2.4377,-1.0053) mvmt=(-0.3215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.4033,0.2265,-2.3553) mvmt=(-0.3215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.3183,3.6869,0.4925) mvmt=(0.0000,0.3215,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.4583,1.1969,-1.0000) mvmt=(0.0000,0.3215,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-0.9814,3.0820,0.4950) mvmt=(0.3204,-0.0266,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.0767,1.1969,0.5000) mvmt=(0.0000,0.3215,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.0767,1.1969,-0.2700) mvmt=(0.0000,0.3215,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.0767,1.1969,-0.2700) out=(4.0767,1.1969,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.423,10.303,93.750) lpos=(4.077,1.197,-0.270) lprev=(4.077,0.875,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.0767,1.1969,0.4800) mvmt=(0.0000,0.3215,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.423,10.303,94.500) lpos=(4.077,1.197,0.480) lprev=(4.077,0.875,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.4283,2.6777,-0.9003) mvmt=(-0.3215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4033,2.4377,-1.0053) mvmt=(-0.3215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4033,0.2265,-2.3553) mvmt=(-0.3215,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3183,3.6869,0.4925) mvmt=(0.0000,0.3215,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4583,1.1969,-1.0000) mvmt=(0.0000,0.3215,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9814,3.0820,0.4950) mvmt=(0.3204,-0.0266,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0767,1.1969,0.5000) mvmt=(0.0000,0.3215,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.0767,1.5404,0.4800) mvmt=(0.0000,0.3435,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.423,9.960,94.500) lpos=(4.077,1.540,0.480) lprev=(4.077,1.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.0849,2.6777,-0.9003) mvmt=(-0.3435,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0599,2.4377,-1.0053) mvmt=(-0.3435,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0599,0.2265,-2.3553) mvmt=(-0.3435,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4583,1.5404,-1.0000) mvmt=(-0.0000,0.3435,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8626,2.6454,0.4925) mvmt=(0.3423,-0.0284,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6391,3.0536,0.4950) mvmt=(0.3423,-0.0284,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0767,1.5404,0.5000) mvmt=(0.0000,0.3435,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0767,1.5404,-0.2700) mvmt=(0.0000,0.3435,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.0767,1.5404,-0.2700) out=(4.0767,1.5404,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.423,9.960,93.750) lpos=(4.077,1.540,-0.270) lprev=(4.077,1.197,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.0767,1.5404,0.4800) mvmt=(0.0000,0.3435,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.423,9.960,94.500) lpos=(4.077,1.540,0.480) lprev=(4.077,1.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.0849,2.6777,-0.9003) mvmt=(-0.3435,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0599,2.4377,-1.0053) mvmt=(-0.3435,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0599,0.2265,-2.3553) mvmt=(-0.3435,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4583,1.5404,-1.0000) mvmt=(-0.0000,0.3435,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8626,2.6454,0.4925) mvmt=(0.3423,-0.0284,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6391,3.0536,0.4950) mvmt=(0.3423,-0.0284,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0767,1.5404,0.5000) mvmt=(0.0000,0.3435,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.3316,1.9072,0.4800) mvmt=(0.2549,0.3668,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.168,9.593,94.500) lpos=(4.332,1.907,0.480) lprev=(4.077,1.540,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.7180,2.9326,-0.9003) mvmt=(-0.3668,0.2549,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6930,2.6926,-1.0053) mvmt=(-0.3668,0.2549,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6930,0.4813,-2.3553) mvmt=(-0.3668,0.2549,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2034,1.9072,-1.0000) mvmt=(0.2549,0.3668,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3316,1.9072,0.4800) mvmt=(0.2549,0.3668,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.168,9.593,94.500) lpos=(4.332,1.907,0.480) lprev=(4.077,1.540,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.7180,2.9326,-0.9003) mvmt=(-0.3668,0.2549,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6930,2.6926,-1.0053) mvmt=(-0.3668,0.2549,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6930,0.4813,-2.3553) mvmt=(-0.3668,0.2549,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2034,1.9072,-1.0000) mvmt=(0.2549,0.3668,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.2034,1.9072,-1.0000) out=(-1.2034,1.9072,-0.8200) delta=(0.0000,0.0000,0.1800) deltaMag=0.1800 n=(0.0000,0.0000,1.0000) d=1.3000 r=0.4800 winterp=1.0000->0.7000 dpPos=0.3000 dpMove=-0.6000 iDist=0.3000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(4.3316,1.9072,0.6600) mvmt=(0.2549,0.3668,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.168,9.593,94.680) lpos=(4.332,1.907,0.660) lprev=(4.077,1.540,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.7180,2.9326,-0.7203) mvmt=(-0.3668,0.2549,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(1.6930,2.6926,-0.8253) mvmt=(-0.3668,0.2549,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(1.6930,0.4813,-2.1753) mvmt=(-0.3668,0.2549,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2034,1.9072,-0.8200) mvmt=(0.2549,0.3668,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.5181,2.3610,0.6725) mvmt=(0.3445,-0.2843,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-0.2946,2.7693,0.6750) mvmt=(0.3445,-0.2843,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.3316,1.9072,0.6800) mvmt=(0.2549,0.3668,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.3316,1.9072,0.6600) mvmt=(0.2549,0.3668,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.168,9.593,94.680) lpos=(4.332,1.907,0.660) lprev=(4.077,1.540,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.7180,2.9326,-0.7203) mvmt=(-0.3668,0.2549,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(1.6930,2.6926,-0.8253) mvmt=(-0.3668,0.2549,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(1.6930,0.4813,-2.1753) mvmt=(-0.3668,0.2549,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2034,1.9072,-0.8200) mvmt=(0.2549,0.3668,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.5181,2.3610,0.6725) mvmt=(0.3445,-0.2843,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-0.2946,2.7693,0.6750) mvmt=(0.3445,-0.2843,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.3316,1.9072,0.6800) mvmt=(0.2549,0.3668,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(4.0767,1.9072,0.4800) mvmt=(0.0000,0.3668,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.423,9.593,94.500) lpos=(4.077,1.907,0.480) lprev=(4.077,1.540,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.7180,2.6777,-0.9003) mvmt=(-0.3668,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(1.6930,2.4377,-1.0053) mvmt=(-0.3668,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(1.6930,0.2265,-2.3553) mvmt=(-0.3668,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.4583,1.9072,-1.0000) mvmt=(0.0000,0.3668,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.4970,2.6150,0.4925) mvmt=(0.3655,-0.0303,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-0.2736,3.0233,0.4950) mvmt=(0.3655,-0.0303,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.0767,1.9072,0.5000) mvmt=(0.0000,0.3668,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.0767,1.9072,-0.2700) mvmt=(0.0000,0.3668,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.0767,1.9072,-0.2700) out=(4.0767,1.9072,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.423,9.593,93.750) lpos=(4.077,1.907,-0.270) lprev=(4.077,1.540,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.0767,1.9072,0.4800) mvmt=(0.0000,0.3668,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.423,9.593,94.500) lpos=(4.077,1.907,0.480) lprev=(4.077,1.540,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.7180,2.6777,-0.9003) mvmt=(-0.3668,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6930,2.4377,-1.0053) mvmt=(-0.3668,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6930,0.2265,-2.3553) mvmt=(-0.3668,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4583,1.9072,-1.0000) mvmt=(0.0000,0.3668,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4970,2.6150,0.4925) mvmt=(0.3655,-0.0303,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2736,3.0233,0.4950) mvmt=(0.3655,-0.0303,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0767,1.9072,0.5000) mvmt=(0.0000,0.3668,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.0767,2.2397,0.4800) mvmt=(0.0000,0.3325,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.423,9.260,94.500) lpos=(4.077,2.240,0.480) lprev=(4.077,1.907,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.3855,2.6777,-0.9003) mvmt=(-0.3325,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3605,2.4377,-1.0053) mvmt=(-0.3325,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3605,0.2265,-2.3553) mvmt=(-0.3325,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4583,2.2397,-1.0000) mvmt=(0.0000,0.3325,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1657,2.5875,0.4925) mvmt=(0.3314,-0.0275,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0578,2.9958,0.4950) mvmt=(0.3314,-0.0275,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0767,2.2397,0.5000) mvmt=(0.0000,0.3325,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0767,2.2397,-0.2700) mvmt=(0.0000,0.3325,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.0767,2.2397,-0.2700) out=(4.0767,2.2397,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.423,9.260,93.750) lpos=(4.077,2.240,-0.270) lprev=(4.077,1.907,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.0767,2.2397,0.4800) mvmt=(0.0000,0.3325,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.423,9.260,94.500) lpos=(4.077,2.240,0.480) lprev=(4.077,1.907,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.3855,2.6777,-0.9003) mvmt=(-0.3325,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3605,2.4377,-1.0053) mvmt=(-0.3325,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3605,0.2265,-2.3553) mvmt=(-0.3325,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4583,2.2397,-1.0000) mvmt=(0.0000,0.3325,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1657,2.5875,0.4925) mvmt=(0.3314,-0.0275,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0578,2.9958,0.4950) mvmt=(0.3314,-0.0275,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0767,2.2397,0.5000) mvmt=(0.0000,0.3325,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.3108,2.5766,0.4800) mvmt=(0.2341,0.3369,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.189,8.923,94.500) lpos=(4.311,2.577,0.480) lprev=(4.077,2.240,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.0486,2.9118,-0.9003) mvmt=(-0.3369,0.2341,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0236,2.6718,-1.0053) mvmt=(-0.3369,0.2341,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0236,0.4606,-2.3553) mvmt=(-0.3369,0.2341,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2242,2.5766,-1.0000) mvmt=(0.2341,0.3369,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8493,2.3264,0.4925) mvmt=(0.3164,-0.2612,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3742,2.7346,0.4950) mvmt=(0.3164,-0.2612,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3108,2.5766,0.5000) mvmt=(0.2341,0.3369,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3108,2.5766,-0.2700) mvmt=(0.2341,0.3369,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.3108,2.5766,-0.2700) out=(4.3108,2.5766,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.189,8.923,93.750) lpos=(4.311,2.577,-0.270) lprev=(4.077,2.240,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.3108,2.5766,0.4800) mvmt=(0.2341,0.3369,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.189,8.923,94.500) lpos=(4.311,2.577,0.480) lprev=(4.077,2.240,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.0486,2.9118,-0.9003) mvmt=(-0.3369,0.2341,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0236,2.6718,-1.0053) mvmt=(-0.3369,0.2341,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0236,0.4606,-2.3553) mvmt=(-0.3369,0.2341,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2242,2.5766,-1.0000) mvmt=(0.2341,0.3369,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8493,2.3264,0.4925) mvmt=(0.3164,-0.2612,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3742,2.7346,0.4950) mvmt=(0.3164,-0.2612,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3108,2.5766,0.5000) mvmt=(0.2341,0.3369,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.5401,2.9066,0.4800) mvmt=(0.2293,0.3300,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.960,8.593,94.500) lpos=(4.540,2.907,0.480) lprev=(4.311,2.577,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2813,3.1411,-0.9003) mvmt=(-0.3300,0.2293,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6937,2.9011,-1.0053) mvmt=(-0.3300,0.2293,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6937,0.6899,-2.3553) mvmt=(-0.3300,0.2293,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9949,2.9066,-1.0000) mvmt=(0.2293,0.3300,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5394,2.0706,0.4925) mvmt=(0.3099,-0.2558,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6841,2.4788,0.4950) mvmt=(0.3099,-0.2558,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5401,2.9066,0.5000) mvmt=(0.2293,0.3300,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5401,2.9066,-0.2700) mvmt=(0.2293,0.3300,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.5401,2.9066,-0.2700) out=(4.5401,2.9066,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(125.960,8.593,93.750) lpos=(4.540,2.907,-0.270) lprev=(4.311,2.577,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.5401,2.9066,0.4800) mvmt=(0.2293,0.3300,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.960,8.593,94.500) lpos=(4.540,2.907,0.480) lprev=(4.311,2.577,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2813,3.1411,-0.9003) mvmt=(-0.3300,0.2293,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6937,2.9011,-1.0053) mvmt=(-0.3300,0.2293,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6937,0.6899,-2.3553) mvmt=(-0.3300,0.2293,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9949,2.9066,-1.0000) mvmt=(0.2293,0.3300,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5394,2.0706,0.4925) mvmt=(0.3099,-0.2558,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6841,2.4788,0.4950) mvmt=(0.3099,-0.2558,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5401,2.9066,0.5000) mvmt=(0.2293,0.3300,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.7680,3.2346,0.4800) mvmt=(0.2279,0.3280,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.732,8.265,94.500) lpos=(4.768,3.235,0.480) lprev=(4.540,2.907,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6093,3.3690,-0.9003) mvmt=(-0.3280,0.2279,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3657,3.1290,-1.0053) mvmt=(-0.3280,0.2279,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3657,0.9178,-2.3553) mvmt=(-0.3280,0.2279,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7670,3.2346,-1.0000) mvmt=(0.2279,0.3280,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2314,1.8163,0.4925) mvmt=(0.3080,-0.2543,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9921,2.2245,0.4950) mvmt=(0.3080,-0.2543,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7680,3.2346,0.5000) mvmt=(0.2279,0.3280,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7680,3.2346,-0.2700) mvmt=(0.2279,0.3280,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.7680,3.2346,-0.2700) out=(4.7680,3.2346,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(125.732,8.265,93.750) lpos=(4.768,3.235,-0.270) lprev=(4.540,2.907,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.7680,3.2346,0.4800) mvmt=(0.2279,0.3280,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.732,8.265,94.500) lpos=(4.768,3.235,0.480) lprev=(4.540,2.907,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6093,3.3690,-0.9003) mvmt=(-0.3280,0.2279,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3657,3.1290,-1.0053) mvmt=(-0.3280,0.2279,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3657,0.9178,-2.3553) mvmt=(-0.3280,0.2279,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7670,3.2346,-1.0000) mvmt=(0.2279,0.3280,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2314,1.8163,0.4925) mvmt=(0.3080,-0.2543,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9921,2.2245,0.4950) mvmt=(0.3080,-0.2543,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7680,3.2346,0.5000) mvmt=(0.2279,0.3280,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementStrafeRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.7620,3.1002,0.4800) mvmt=(-0.0061,-0.1344,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.738,8.400,94.500) lpos=(4.762,3.100,0.480) lprev=(4.768,3.235,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4750,3.3630,-0.9003) mvmt=(0.1344,-0.0061,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5000,3.1230,-1.0053) mvmt=(0.1344,-0.0061,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5000,0.9117,-2.3553) mvmt=(0.1344,-0.0061,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7730,3.1002,-1.0000) mvmt=(-0.0061,-0.1344,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3648,1.8335,0.4925) mvmt=(-0.1334,0.0171,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8587,2.2417,0.4950) mvmt=(-0.1334,0.0171,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7620,3.1002,0.5000) mvmt=(-0.0061,-0.1344,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7620,3.1002,-0.2700) mvmt=(-0.0061,-0.1344,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.7620,3.1002,-0.2700) out=(4.7620,3.1002,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(125.738,8.400,93.750) lpos=(4.762,3.100,-0.270) lprev=(4.768,3.235,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.7620,3.1002,0.4800) mvmt=(-0.0061,-0.1344,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.738,8.400,94.500) lpos=(4.762,3.100,0.480) lprev=(4.768,3.235,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4750,3.3630,-0.9003) mvmt=(0.1344,-0.0061,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5000,3.1230,-1.0053) mvmt=(0.1344,-0.0061,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5000,0.9117,-2.3553) mvmt=(0.1344,-0.0061,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7730,3.1002,-1.0000) mvmt=(-0.0061,-0.1344,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3648,1.8335,0.4925) mvmt=(-0.1334,0.0171,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8587,2.2417,0.4950) mvmt=(-0.1334,0.0171,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7620,3.1002,0.5000) mvmt=(-0.0061,-0.1344,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.7561,2.9688,0.4800) mvmt=(-0.0059,-0.1314,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.744,8.531,94.500) lpos=(4.756,2.969,0.480) lprev=(4.762,3.100,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3435,3.3571,-0.9003) mvmt=(0.1314,-0.0059,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6315,3.1171,-1.0053) mvmt=(0.1314,-0.0059,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6315,0.9058,-2.3553) mvmt=(0.1314,-0.0059,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7789,2.9688,-1.0000) mvmt=(-0.0059,-0.1314,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4953,1.8502,0.4925) mvmt=(-0.1305,0.0168,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7282,2.2584,0.4950) mvmt=(-0.1305,0.0168,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7561,2.9688,0.5000) mvmt=(-0.0059,-0.1314,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7561,2.9688,-0.2700) mvmt=(-0.0059,-0.1314,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.7561,2.9688,-0.2700) out=(4.7561,2.9688,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(125.744,8.531,93.750) lpos=(4.756,2.969,-0.270) lprev=(4.762,3.100,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.7561,2.9688,0.4800) mvmt=(-0.0059,-0.1314,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.744,8.531,94.500) lpos=(4.756,2.969,0.480) lprev=(4.762,3.100,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3435,3.3571,-0.9003) mvmt=(0.1314,-0.0059,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6315,3.1171,-1.0053) mvmt=(0.1314,-0.0059,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6315,0.9058,-2.3553) mvmt=(0.1314,-0.0059,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7789,2.9688,-1.0000) mvmt=(-0.0059,-0.1314,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4953,1.8502,0.4925) mvmt=(-0.1305,0.0168,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7282,2.2584,0.4950) mvmt=(-0.1305,0.0168,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7561,2.9688,0.5000) mvmt=(-0.0059,-0.1314,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementBackup Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.5302,2.8432,0.4800) mvmt=(-0.2258,-0.1255,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.970,8.657,94.500) lpos=(4.530,2.843,0.480) lprev=(4.756,2.969,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2180,3.1312,-0.9003) mvmt=(0.1255,-0.2258,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7570,2.8912,-1.0053) mvmt=(0.1255,-0.2258,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7570,0.6800,-2.3553) mvmt=(0.1255,-0.2258,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0048,2.8432,-1.0000) mvmt=(-0.2258,-0.1255,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6017,2.0857,0.4925) mvmt=(-0.1064,0.2354,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6218,2.4939,0.4950) mvmt=(-0.1064,0.2354,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5302,2.8432,0.5000) mvmt=(-0.2258,-0.1255,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5302,2.8432,-0.2700) mvmt=(-0.2258,-0.1255,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.5302,2.8432,-0.2700) out=(4.5302,2.8432,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(125.970,8.657,93.750) lpos=(4.530,2.843,-0.270) lprev=(4.756,2.969,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.5302,2.8432,0.4800) mvmt=(-0.2258,-0.1255,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.970,8.657,94.500) lpos=(4.530,2.843,0.480) lprev=(4.756,2.969,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2180,3.1312,-0.9003) mvmt=(0.1255,-0.2258,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7570,2.8912,-1.0053) mvmt=(0.1255,-0.2258,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7570,0.6800,-2.3553) mvmt=(0.1255,-0.2258,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0048,2.8432,-1.0000) mvmt=(-0.2258,-0.1255,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6017,2.0857,0.4925) mvmt=(-0.1064,0.2354,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6218,2.4939,0.4950) mvmt=(-0.1064,0.2354,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.5302,2.8432,0.5000) mvmt=(-0.2258,-0.1255,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.3047,2.7179,0.4800) mvmt=(-0.2255,-0.1254,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.195,8.782,94.500) lpos=(4.305,2.718,0.480) lprev=(4.530,2.843,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.0926,2.9057,-0.9003) mvmt=(0.1254,-0.2255,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8824,2.6657,-1.0053) mvmt=(0.1254,-0.2255,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8824,0.4545,-2.3553) mvmt=(0.1254,-0.2255,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2303,2.7179,-1.0000) mvmt=(-0.2255,-0.1254,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7080,2.3208,0.4925) mvmt=(-0.1063,0.2351,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5155,2.7290,0.4950) mvmt=(-0.1063,0.2351,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3047,2.7179,0.5000) mvmt=(-0.2255,-0.1254,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3047,2.7179,-0.2700) mvmt=(-0.2255,-0.1254,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.3047,2.7179,-0.2700) out=(4.3047,2.7179,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.195,8.782,93.750) lpos=(4.305,2.718,-0.270) lprev=(4.530,2.843,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.3047,2.7179,0.4800) mvmt=(-0.2255,-0.1254,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.195,8.782,94.500) lpos=(4.305,2.718,0.480) lprev=(4.530,2.843,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.0926,2.9057,-0.9003) mvmt=(0.1254,-0.2255,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8824,2.6657,-1.0053) mvmt=(0.1254,-0.2255,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8824,0.4545,-2.3553) mvmt=(0.1254,-0.2255,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2303,2.7179,-1.0000) mvmt=(-0.2255,-0.1254,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7080,2.3208,0.4925) mvmt=(-0.1063,0.2351,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5155,2.7290,0.4950) mvmt=(-0.1063,0.2351,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3047,2.7179,0.5000) mvmt=(-0.2255,-0.1254,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.0816,2.5938,0.4800) mvmt=(-0.2232,-0.1241,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.418,8.906,94.500) lpos=(4.082,2.594,0.480) lprev=(4.305,2.718,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.0314,2.6826,-0.9003) mvmt=(0.1241,-0.2232,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0064,2.4425,-1.0053) mvmt=(0.1241,-0.2232,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0064,0.2313,-2.3553) mvmt=(0.1241,-0.2232,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4534,2.5938,-1.0000) mvmt=(-0.2232,-0.1241,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8132,2.5534,0.4925) mvmt=(-0.1052,0.2327,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4103,2.9617,0.4950) mvmt=(-0.1052,0.2327,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0816,2.5938,0.5000) mvmt=(-0.2232,-0.1241,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0816,2.5938,-0.2700) mvmt=(-0.2232,-0.1241,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.0816,2.5938,-0.2700) out=(4.0816,2.5938,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.418,8.906,93.750) lpos=(4.082,2.594,-0.270) lprev=(4.305,2.718,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.0816,2.5938,0.4800) mvmt=(-0.2232,-0.1241,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.418,8.906,94.500) lpos=(4.082,2.594,0.480) lprev=(4.305,2.718,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.0314,2.6826,-0.9003) mvmt=(0.1241,-0.2232,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0064,2.4425,-1.0053) mvmt=(0.1241,-0.2232,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0064,0.2313,-2.3553) mvmt=(0.1241,-0.2232,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4534,2.5938,-1.0000) mvmt=(-0.2232,-0.1241,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8132,2.5534,0.4925) mvmt=(-0.1052,0.2327,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4103,2.9617,0.4950) mvmt=(-0.1052,0.2327,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0816,2.5938,0.5000) mvmt=(-0.2232,-0.1241,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.8568,2.4689,0.4800) mvmt=(-0.2247,-0.1249,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.643,9.031,94.500) lpos=(3.857,2.469,0.480) lprev=(4.082,2.594,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.1564,2.4578,-0.9003) mvmt=(0.1249,-0.2247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1314,2.2178,-1.0053) mvmt=(0.1249,-0.2247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1314,0.0066,-2.3553) mvmt=(0.1249,-0.2247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6782,2.4689,-1.0000) mvmt=(-0.2247,-0.1249,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9191,2.7877,0.4925) mvmt=(-0.1059,0.2343,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3044,3.1960,0.4950) mvmt=(-0.1059,0.2343,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8568,2.4689,0.5000) mvmt=(-0.2247,-0.1249,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8568,2.4689,-0.2700) mvmt=(-0.2247,-0.1249,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.8568,2.4689,-0.2700) out=(3.8568,2.4689,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.643,9.031,93.750) lpos=(3.857,2.469,-0.270) lprev=(4.082,2.594,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.8568,2.4689,0.4800) mvmt=(-0.2247,-0.1249,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.643,9.031,94.500) lpos=(3.857,2.469,0.480) lprev=(4.082,2.594,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.1564,2.4578,-0.9003) mvmt=(0.1249,-0.2247,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1314,2.2178,-1.0053) mvmt=(0.1249,-0.2247,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1314,0.0066,-2.3553) mvmt=(0.1249,-0.2247,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6782,2.4689,-1.0000) mvmt=(-0.2247,-0.1249,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9191,2.7877,0.4925) mvmt=(-0.1059,0.2343,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3044,3.1960,0.4950) mvmt=(-0.1059,0.2343,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8568,2.4689,0.5000) mvmt=(-0.2247,-0.1249,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.6293,2.3424,0.4800) mvmt=(-0.2275,-0.1265,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.871,9.158,94.500) lpos=(3.629,2.342,0.480) lprev=(3.857,2.469,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.2828,2.2303,-0.9003) mvmt=(0.1265,-0.2275,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2578,1.9903,-1.0053) mvmt=(0.1265,-0.2275,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2578,-0.2210,-2.3553) mvmt=(0.1265,-0.2275,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9057,2.3424,-1.0000) mvmt=(-0.2275,-0.1265,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0263,3.0249,0.4925) mvmt=(-0.1072,0.2372,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1972,3.4332,0.4950) mvmt=(-0.1072,0.2372,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6293,2.3424,0.5000) mvmt=(-0.2275,-0.1265,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6293,2.3424,-0.2700) mvmt=(-0.2275,-0.1265,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.6293,2.3424,-0.2700) out=(3.6293,2.3424,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.871,9.158,93.750) lpos=(3.629,2.342,-0.270) lprev=(3.857,2.469,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.6293,2.3424,0.4800) mvmt=(-0.2275,-0.1265,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.871,9.158,94.500) lpos=(3.629,2.342,0.480) lprev=(3.857,2.469,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.2828,2.2303,-0.9003) mvmt=(0.1265,-0.2275,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2578,1.9903,-1.0053) mvmt=(0.1265,-0.2275,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2578,-0.2210,-2.3553) mvmt=(0.1265,-0.2275,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9057,2.3424,-1.0000) mvmt=(-0.2275,-0.1265,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0263,3.0249,0.4925) mvmt=(-0.1072,0.2372,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1972,3.4332,0.4950) mvmt=(-0.1072,0.2372,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6293,2.3424,0.5000) mvmt=(-0.2275,-0.1265,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.4046,2.2175,0.4800) mvmt=(-0.2247,-0.1249,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.095,9.282,94.500) lpos=(3.405,2.218,0.480) lprev=(3.629,2.342,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.4077,2.0056,-0.9003) mvmt=(0.1249,-0.2247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3827,1.7656,-1.0053) mvmt=(0.1249,-0.2247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3827,-0.4456,-2.3553) mvmt=(0.1249,-0.2247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1304,2.2175,-1.0000) mvmt=(-0.2247,-0.1249,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1322,3.2592,0.4925) mvmt=(-0.1059,0.2342,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0913,3.6674,0.4950) mvmt=(-0.1059,0.2342,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4046,2.2175,0.5000) mvmt=(-0.2247,-0.1249,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4046,2.2175,-0.2700) mvmt=(-0.2247,-0.1249,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.4046,2.2175,-0.2700) out=(3.4046,2.2175,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(127.095,9.282,93.750) lpos=(3.405,2.218,-0.270) lprev=(3.629,2.342,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.4046,2.2175,0.4800) mvmt=(-0.2247,-0.1249,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.095,9.282,94.500) lpos=(3.405,2.218,0.480) lprev=(3.629,2.342,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.4077,2.0056,-0.9003) mvmt=(0.1249,-0.2247,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3827,1.7656,-1.0053) mvmt=(0.1249,-0.2247,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3827,-0.4456,-2.3553) mvmt=(0.1249,-0.2247,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1304,2.2175,-1.0000) mvmt=(-0.2247,-0.1249,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1322,3.2592,0.4925) mvmt=(-0.1059,0.2342,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0913,3.6674,0.4950) mvmt=(-0.1059,0.2342,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4046,2.2175,0.5000) mvmt=(-0.2247,-0.1249,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.1822,2.0939,0.4800) mvmt=(-0.2225,-0.1237,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.318,9.406,94.500) lpos=(3.182,2.094,0.480) lprev=(3.405,2.218,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.5314,1.7832,-0.9003) mvmt=(0.1237,-0.2225,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5064,1.5432,-1.0053) mvmt=(0.1237,-0.2225,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5064,-0.6681,-2.3553) mvmt=(0.1237,-0.2225,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3528,2.0939,-1.0000) mvmt=(-0.2225,-0.1237,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0136,3.8993,0.4950) mvmt=(-0.1048,0.2319,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1822,2.0939,0.5000) mvmt=(-0.2225,-0.1237,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1822,2.0939,-0.2700) mvmt=(-0.2225,-0.1237,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.1822,2.0939,-0.2700) out=(3.1822,2.0939,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(127.318,9.406,93.750) lpos=(3.182,2.094,-0.270) lprev=(3.405,2.218,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.1822,2.0939,0.4800) mvmt=(-0.2225,-0.1237,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.318,9.406,94.500) lpos=(3.182,2.094,0.480) lprev=(3.405,2.218,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.5314,1.7832,-0.9003) mvmt=(0.1237,-0.2225,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5064,1.5432,-1.0053) mvmt=(0.1237,-0.2225,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5064,-0.6681,-2.3553) mvmt=(0.1237,-0.2225,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3528,2.0939,-1.0000) mvmt=(-0.2225,-0.1237,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0136,3.8993,0.4950) mvmt=(-0.1048,0.2319,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1822,2.0939,0.5000) mvmt=(-0.2225,-0.1237,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.9590,1.9698,0.4800) mvmt=(-0.2232,-0.1241,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.541,9.530,94.500) lpos=(2.959,1.970,0.480) lprev=(3.182,2.094,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.6555,1.5600,-0.9003) mvmt=(0.1241,-0.2232,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6305,1.3200,-1.0053) mvmt=(0.1241,-0.2232,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6305,-0.8913,-2.3553) mvmt=(0.1241,-0.2232,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5760,1.9698,-1.0000) mvmt=(-0.2232,-0.1241,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1187,4.1320,0.4950) mvmt=(-0.1052,0.2327,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9590,1.9698,0.5000) mvmt=(-0.2232,-0.1241,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9590,1.9698,-0.2700) mvmt=(-0.2232,-0.1241,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.9590,1.9698,-0.2700) out=(2.9590,1.9698,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(127.541,9.530,93.750) lpos=(2.959,1.970,-0.270) lprev=(3.182,2.094,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.9590,1.9698,0.4800) mvmt=(-0.2232,-0.1241,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.541,9.530,94.500) lpos=(2.959,1.970,0.480) lprev=(3.182,2.094,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.6555,1.5600,-0.9003) mvmt=(0.1241,-0.2232,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6305,1.3200,-1.0053) mvmt=(0.1241,-0.2232,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6305,-0.8913,-2.3553) mvmt=(0.1241,-0.2232,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5760,1.9698,-1.0000) mvmt=(-0.2232,-0.1241,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1187,4.1320,0.4950) mvmt=(-0.1052,0.2327,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9590,1.9698,0.5000) mvmt=(-0.2232,-0.1241,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.9532,1.8430,0.4800) mvmt=(-0.0057,-0.1268,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.547,9.657,94.500) lpos=(2.953,1.843,0.480) lprev=(2.959,1.970,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.7823,1.5542,-0.9003) mvmt=(0.1268,-0.0057,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7573,1.3142,-1.0053) mvmt=(0.1268,-0.0057,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7573,-0.8970,-2.3553) mvmt=(0.1268,-0.0057,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5818,1.8430,-1.0000) mvmt=(-0.0057,-0.1268,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9532,1.8430,0.5000) mvmt=(-0.0057,-0.1268,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9532,1.8430,-0.2700) mvmt=(-0.0057,-0.1268,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.9532,1.8430,-0.2700) out=(2.9532,1.8430,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(127.547,9.657,93.750) lpos=(2.953,1.843,-0.270) lprev=(2.959,1.970,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.9532,1.8430,0.4800) mvmt=(-0.0057,-0.1268,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.547,9.657,94.500) lpos=(2.953,1.843,0.480) lprev=(2.959,1.970,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.7823,1.5542,-0.9003) mvmt=(0.1268,-0.0057,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7573,1.3142,-1.0053) mvmt=(0.1268,-0.0057,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7573,-0.8970,-2.3553) mvmt=(0.1268,-0.0057,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5818,1.8430,-1.0000) mvmt=(-0.0057,-0.1268,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9532,1.8430,0.5000) mvmt=(-0.0057,-0.1268,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementStrafeRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.0102,1.7198,0.4800) mvmt=(0.0569,-0.1231,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.490,9.780,94.500) lpos=(3.010,1.720,0.480) lprev=(2.953,1.843,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.9054,1.6112,-0.9003) mvmt=(0.1231,0.0569,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8804,1.3711,-1.0053) mvmt=(0.1231,0.0569,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8804,-0.8401,-2.3553) mvmt=(0.1231,0.0569,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5248,1.7198,-1.0000) mvmt=(0.0569,-0.1231,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0102,1.7198,0.5000) mvmt=(0.0569,-0.1231,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0102,1.7198,-0.2700) mvmt=(0.0569,-0.1231,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.0102,1.7198,-0.2700) out=(3.0102,1.7198,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(127.490,9.780,93.750) lpos=(3.010,1.720,-0.270) lprev=(2.953,1.843,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.0102,1.7198,0.4800) mvmt=(0.0569,-0.1231,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.490,9.780,94.500) lpos=(3.010,1.720,0.480) lprev=(2.953,1.843,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.9054,1.6112,-0.9003) mvmt=(0.1231,0.0569,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8804,1.3711,-1.0053) mvmt=(0.1231,0.0569,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8804,-0.8401,-2.3553) mvmt=(0.1231,0.0569,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5248,1.7198,-1.0000) mvmt=(0.0569,-0.1231,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0102,1.7198,0.5000) mvmt=(0.0569,-0.1231,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.0959,1.5765,0.4800) mvmt=(0.0858,-0.1434,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.404,9.924,94.500) lpos=(3.096,1.576,0.480) lprev=(3.010,1.720,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.0488,1.6969,-0.9003) mvmt=(0.1434,0.0858,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0238,1.4569,-1.0053) mvmt=(0.1434,0.0858,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0238,-0.7543,-2.3553) mvmt=(0.1434,0.0858,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4391,1.5765,-1.0000) mvmt=(0.0858,-0.1434,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0959,1.5765,0.5000) mvmt=(0.0858,-0.1434,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0959,1.5765,-0.2700) mvmt=(0.0858,-0.1434,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.0959,1.5765,-0.2700) out=(3.0959,1.5765,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(127.404,9.924,93.750) lpos=(3.096,1.576,-0.270) lprev=(3.010,1.720,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.0959,1.5765,0.4800) mvmt=(0.0858,-0.1434,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.404,9.924,94.500) lpos=(3.096,1.576,0.480) lprev=(3.010,1.720,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.0488,1.6969,-0.9003) mvmt=(0.1434,0.0858,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0238,1.4569,-1.0053) mvmt=(0.1434,0.0858,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0238,-0.7543,-2.3553) mvmt=(0.1434,0.0858,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4391,1.5765,-1.0000) mvmt=(0.0858,-0.1434,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0959,1.5765,0.5000) mvmt=(0.0858,-0.1434,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.1749,1.4671,0.4800) mvmt=(0.0789,-0.1094,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.325,10.033,94.500) lpos=(3.175,1.467,0.480) lprev=(3.096,1.576,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.1581,1.7759,-0.9003) mvmt=(0.1094,0.0789,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1331,1.5358,-1.0053) mvmt=(0.1094,0.0789,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1331,-0.6754,-2.3553) mvmt=(0.1094,0.0789,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3601,1.4671,-1.0000) mvmt=(0.0789,-0.1094,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1749,1.4671,0.5000) mvmt=(0.0789,-0.1094,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1749,1.4671,-0.2700) mvmt=(0.0789,-0.1094,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.1749,1.4671,-0.2700) out=(3.1749,1.4671,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(127.325,10.033,93.750) lpos=(3.175,1.467,-0.270) lprev=(3.096,1.576,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.1749,1.4671,0.4800) mvmt=(0.0789,-0.1094,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.325,10.033,94.500) lpos=(3.175,1.467,0.480) lprev=(3.096,1.576,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.1581,1.7759,-0.9003) mvmt=(0.1094,0.0789,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1331,1.5358,-1.0053) mvmt=(0.1094,0.0789,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1331,-0.6754,-2.3553) mvmt=(0.1094,0.0789,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3601,1.4671,-1.0000) mvmt=(0.0789,-0.1094,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1749,1.4671,0.5000) mvmt=(0.0789,-0.1094,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.2602,1.3675,0.4800) mvmt=(0.0854,-0.0996,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.240,10.133,94.500) lpos=(3.260,1.367,0.480) lprev=(3.175,1.467,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.2578,1.8612,-0.9003) mvmt=(0.0996,0.0854,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2328,1.6212,-1.0053) mvmt=(0.0996,0.0854,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2328,-0.5900,-2.3553) mvmt=(0.0996,0.0854,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.2748,1.3675,-1.0000) mvmt=(0.0854,-0.0996,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2602,1.3675,0.5000) mvmt=(0.0854,-0.0996,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2602,1.3675,-0.2700) mvmt=(0.0854,-0.0996,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.2602,1.3675,-0.2700) out=(3.2602,1.3675,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(127.240,10.133,93.750) lpos=(3.260,1.367,-0.270) lprev=(3.175,1.467,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.2602,1.3675,0.4800) mvmt=(0.0854,-0.0996,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.240,10.133,94.500) lpos=(3.260,1.367,0.480) lprev=(3.175,1.467,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.2578,1.8612,-0.9003) mvmt=(0.0996,0.0854,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2328,1.6212,-1.0053) mvmt=(0.0996,0.0854,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2328,-0.5900,-2.3553) mvmt=(0.0996,0.0854,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.2748,1.3675,-1.0000) mvmt=(0.0854,-0.0996,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2602,1.3675,0.5000) mvmt=(0.0854,-0.0996,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.3544,1.2747,0.4800) mvmt=(0.0942,-0.0928,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.146,10.225,94.500) lpos=(3.354,1.275,0.480) lprev=(3.260,1.367,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.3506,1.9554,-0.9003) mvmt=(0.0928,0.0942,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3256,1.7154,-1.0053) mvmt=(0.0928,0.0942,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3256,-0.4958,-2.3553) mvmt=(0.0928,0.0942,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1806,1.2747,-1.0000) mvmt=(0.0942,-0.0928,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3544,1.2747,0.5000) mvmt=(0.0942,-0.0928,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3544,1.2747,-0.2700) mvmt=(0.0942,-0.0928,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.3544,1.2747,-0.2700) out=(3.3544,1.2747,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(127.146,10.225,93.750) lpos=(3.354,1.275,-0.270) lprev=(3.260,1.367,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.3544,1.2747,0.4800) mvmt=(0.0942,-0.0928,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.146,10.225,94.500) lpos=(3.354,1.275,0.480) lprev=(3.260,1.367,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.3506,1.9554,-0.9003) mvmt=(0.0928,0.0942,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3256,1.7154,-1.0053) mvmt=(0.0928,0.0942,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3256,-0.4958,-2.3553) mvmt=(0.0928,0.0942,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1806,1.2747,-1.0000) mvmt=(0.0942,-0.0928,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3544,1.2747,0.5000) mvmt=(0.0942,-0.0928,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.4590,1.1880,0.4800) mvmt=(0.1046,-0.0866,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.041,10.312,94.500) lpos=(3.459,1.188,0.480) lprev=(3.354,1.275,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.4372,2.0600,-0.9003) mvmt=(0.0866,0.1046,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4122,1.8200,-1.0053) mvmt=(0.0866,0.1046,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4122,-0.3912,-2.3553) mvmt=(0.0866,0.1046,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0760,1.1880,-1.0000) mvmt=(0.1046,-0.0866,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9392,3.6983,0.4950) mvmt=(-0.0950,-0.0971,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4590,1.1880,0.5000) mvmt=(0.1046,-0.0866,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4590,1.1880,-0.2700) mvmt=(0.1046,-0.0866,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.4590,1.1880,-0.2700) out=(3.4590,1.1880,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(127.041,10.312,93.750) lpos=(3.459,1.188,-0.270) lprev=(3.354,1.275,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.4590,1.1880,0.4800) mvmt=(0.1046,-0.0866,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.041,10.312,94.500) lpos=(3.459,1.188,0.480) lprev=(3.354,1.275,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.4372,2.0600,-0.9003) mvmt=(0.0866,0.1046,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4122,1.8200,-1.0053) mvmt=(0.0866,0.1046,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4122,-0.3912,-2.3553) mvmt=(0.0866,0.1046,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0760,1.1880,-1.0000) mvmt=(0.1046,-0.0866,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9392,3.6983,0.4950) mvmt=(-0.0950,-0.0971,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4590,1.1880,0.5000) mvmt=(0.1046,-0.0866,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.5601,1.1170,0.4800) mvmt=(0.1011,-0.0711,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.940,10.383,94.500) lpos=(3.560,1.117,0.480) lprev=(3.459,1.188,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5083,2.1611,-0.9003) mvmt=(0.0711,0.1011,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4833,1.9211,-1.0053) mvmt=(0.0711,0.1011,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4833,-0.2902,-2.3553) mvmt=(0.0711,0.1011,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9749,1.1169,-1.0000) mvmt=(0.1011,-0.0711,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0184,3.6035,0.4950) mvmt=(-0.0792,-0.0948,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5601,1.1170,0.5000) mvmt=(0.1011,-0.0711,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5601,1.1170,-0.2700) mvmt=(0.1011,-0.0711,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.5601,1.1170,-0.2700) out=(3.5601,1.1170,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.940,10.383,93.750) lpos=(3.560,1.117,-0.270) lprev=(3.459,1.188,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.5601,1.1170,0.4800) mvmt=(0.1011,-0.0711,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.940,10.383,94.500) lpos=(3.560,1.117,0.480) lprev=(3.459,1.188,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5083,2.1611,-0.9003) mvmt=(0.0711,0.1011,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4833,1.9211,-1.0053) mvmt=(0.0711,0.1011,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4833,-0.2902,-2.3553) mvmt=(0.0711,0.1011,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9749,1.1169,-1.0000) mvmt=(0.1011,-0.0711,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0184,3.6035,0.4950) mvmt=(-0.0792,-0.0948,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5601,1.1170,0.5000) mvmt=(0.1011,-0.0711,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.6805,1.0455,0.4800) mvmt=(0.1205,-0.0714,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.819,10.454,94.500) lpos=(3.681,1.046,0.480) lprev=(3.560,1.117,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5797,2.2815,-0.9003) mvmt=(0.0714,0.1205,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5547,2.0415,-1.0053) mvmt=(0.0714,0.1205,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5547,-0.1697,-2.3553) mvmt=(0.0714,0.1205,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8545,1.0455,-1.0000) mvmt=(0.1205,-0.0714,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0995,3.4893,0.4950) mvmt=(-0.0812,-0.1141,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6805,1.0455,0.5000) mvmt=(0.1205,-0.0714,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6805,1.0455,-0.2700) mvmt=(0.1205,-0.0714,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.6805,1.0455,-0.2700) out=(3.6805,1.0455,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.819,10.454,93.750) lpos=(3.681,1.046,-0.270) lprev=(3.560,1.117,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.6805,1.0455,0.4800) mvmt=(0.1205,-0.0714,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.819,10.454,94.500) lpos=(3.681,1.046,0.480) lprev=(3.560,1.117,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5797,2.2815,-0.9003) mvmt=(0.0714,0.1205,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5547,2.0415,-1.0053) mvmt=(0.0714,0.1205,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5547,-0.1697,-2.3553) mvmt=(0.0714,0.1205,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8545,1.0455,-1.0000) mvmt=(0.1205,-0.0714,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0995,3.4893,0.4950) mvmt=(-0.0812,-0.1141,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6805,1.0455,0.5000) mvmt=(0.1205,-0.0714,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.7970,0.9764,0.4800) mvmt=(0.1165,-0.0691,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.703,10.524,94.500) lpos=(3.797,0.976,0.480) lprev=(3.681,1.046,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6488,2.3980,-0.9003) mvmt=(0.0691,0.1165,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6238,2.1580,-1.0053) mvmt=(0.0691,0.1165,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6238,-0.0532,-2.3553) mvmt=(0.0691,0.1165,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7380,0.9764,-1.0000) mvmt=(0.1165,-0.0691,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1780,3.3790,0.4950) mvmt=(-0.0785,-0.1104,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7970,0.9764,0.5000) mvmt=(0.1165,-0.0691,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7970,0.9764,-0.2700) mvmt=(0.1165,-0.0691,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.7970,0.9764,-0.2700) out=(3.7970,0.9764,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.703,10.524,93.750) lpos=(3.797,0.976,-0.270) lprev=(3.681,1.046,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.7970,0.9764,0.4800) mvmt=(0.1165,-0.0691,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.703,10.524,94.500) lpos=(3.797,0.976,0.480) lprev=(3.681,1.046,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6488,2.3980,-0.9003) mvmt=(0.0691,0.1165,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6238,2.1580,-1.0053) mvmt=(0.0691,0.1165,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6238,-0.0532,-2.3553) mvmt=(0.0691,0.1165,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7380,0.9764,-1.0000) mvmt=(0.1165,-0.0691,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1780,3.3790,0.4950) mvmt=(-0.0785,-0.1104,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7970,0.9764,0.5000) mvmt=(0.1165,-0.0691,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.9079,0.9107,0.4800) mvmt=(0.1109,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.592,10.589,94.500) lpos=(3.908,0.911,0.480) lprev=(3.797,0.976,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7146,2.5089,-0.9003) mvmt=(0.0658,0.1109,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6896,2.2689,-1.0053) mvmt=(0.0658,0.1109,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6896,0.0577,-2.3553) mvmt=(0.0658,0.1109,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6271,0.9107,-1.0000) mvmt=(0.1109,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2527,3.2739,0.4950) mvmt=(-0.0747,-0.1051,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9079,0.9107,0.5000) mvmt=(0.1109,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9079,0.9107,-0.2700) mvmt=(0.1109,-0.0658,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9079,0.9107,-0.2700) out=(3.9079,0.9107,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.592,10.589,93.750) lpos=(3.908,0.911,-0.270) lprev=(3.797,0.976,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.9079,0.9107,0.4800) mvmt=(0.1109,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.592,10.589,94.500) lpos=(3.908,0.911,0.480) lprev=(3.797,0.976,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7146,2.5089,-0.9003) mvmt=(0.0658,0.1109,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6896,2.2689,-1.0053) mvmt=(0.0658,0.1109,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6896,0.0577,-2.3553) mvmt=(0.0658,0.1109,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6271,0.9107,-1.0000) mvmt=(0.1109,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2527,3.2739,0.4950) mvmt=(-0.0747,-0.1051,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9079,0.9107,0.5000) mvmt=(0.1109,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.0153,0.8470,0.4800) mvmt=(0.1074,-0.0637,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.485,10.653,94.500) lpos=(4.015,0.847,0.480) lprev=(3.908,0.911,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7783,2.6163,-0.9003) mvmt=(0.0637,0.1074,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7533,2.3763,-1.0053) mvmt=(0.0637,0.1074,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7533,0.1651,-2.3553) mvmt=(0.0637,0.1074,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5197,0.8470,-1.0000) mvmt=(0.1074,-0.0637,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3251,3.1721,0.4950) mvmt=(-0.0724,-0.1018,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0153,0.8470,0.5000) mvmt=(0.1074,-0.0637,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0153,0.8470,-0.2700) mvmt=(0.1074,-0.0637,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.0153,0.8470,-0.2700) out=(4.0153,0.8470,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.485,10.653,93.750) lpos=(4.015,0.847,-0.270) lprev=(3.908,0.911,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.0153,0.8470,0.4800) mvmt=(0.1074,-0.0637,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.485,10.653,94.500) lpos=(4.015,0.847,0.480) lprev=(3.908,0.911,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7783,2.6163,-0.9003) mvmt=(0.0637,0.1074,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7533,2.3763,-1.0053) mvmt=(0.0637,0.1074,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7533,0.1651,-2.3553) mvmt=(0.0637,0.1074,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5197,0.8470,-1.0000) mvmt=(0.1074,-0.0637,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3251,3.1721,0.4950) mvmt=(-0.0724,-0.1018,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0153,0.8470,0.5000) mvmt=(0.1074,-0.0637,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.1234,0.7828,0.4800) mvmt=(0.1081,-0.0641,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.377,10.717,94.500) lpos=(4.123,0.783,0.480) lprev=(4.015,0.847,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.8424,2.7244,-0.9003) mvmt=(0.0641,0.1081,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8174,2.4844,-1.0053) mvmt=(0.0641,0.1081,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8174,0.2732,-2.3553) mvmt=(0.0641,0.1081,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2716,3.2728,0.4925) mvmt=(0.1081,-0.0641,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4116,0.7828,-1.0000) mvmt=(0.1081,-0.0641,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1234,0.7828,0.4800) mvmt=(0.1081,-0.0641,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.377,10.717,94.500) lpos=(4.123,0.783,0.480) lprev=(4.015,0.847,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.8424,2.7244,-0.9003) mvmt=(0.0641,0.1081,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8174,2.4844,-1.0053) mvmt=(0.0641,0.1081,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8174,0.2732,-2.3553) mvmt=(0.0641,0.1081,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2716,3.2728,0.4925) mvmt=(0.1081,-0.0641,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4116,0.7828,-1.0000) mvmt=(0.1081,-0.0641,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.4116,0.7828,-1.0000) out=(-1.4116,0.7828,-0.8200) delta=(0.0000,0.0000,0.1800) deltaMag=0.1800 n=(0.0000,0.0000,1.0000) d=1.3000 r=0.4800 winterp=1.0000->0.7000 dpPos=0.3000 dpMove=-0.6000 iDist=0.3000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(4.1234,0.7828,0.6600) mvmt=(0.1081,-0.0641,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.377,10.717,94.680) lpos=(4.123,0.783,0.660) lprev=(4.015,0.847,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.8424,2.7244,-0.7203) mvmt=(0.0641,0.1081,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.8174,2.4844,-0.8253) mvmt=(0.0641,0.1081,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.8174,0.2732,-2.1753) mvmt=(0.0641,0.1081,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2716,3.2728,0.6725) mvmt=(0.1081,-0.0641,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.4116,0.7828,-0.8200) mvmt=(0.1081,-0.0641,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.3979,3.0697,0.6750) mvmt=(-0.0728,-0.1024,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1234,0.7828,0.6800) mvmt=(0.1081,-0.0641,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1234,0.7828,0.6600) mvmt=(0.1081,-0.0641,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.377,10.717,94.680) lpos=(4.123,0.783,0.660) lprev=(4.015,0.847,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.8424,2.7244,-0.7203) mvmt=(0.0641,0.1081,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.8174,2.4844,-0.8253) mvmt=(0.0641,0.1081,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.8174,0.2732,-2.1753) mvmt=(0.0641,0.1081,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2716,3.2728,0.6725) mvmt=(0.1081,-0.0641,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.4116,0.7828,-0.8200) mvmt=(0.1081,-0.0641,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.3979,3.0697,0.6750) mvmt=(-0.0728,-0.1024,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1234,0.7828,0.6800) mvmt=(0.1081,-0.0641,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(4.0153,0.7828,0.4800) mvmt=(0.0000,-0.0641,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.485,10.717,94.500) lpos=(4.015,0.783,0.480) lprev=(4.015,0.847,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.8424,2.6163,-0.9003) mvmt=(0.0641,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.8174,2.3763,-1.0053) mvmt=(0.0641,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.8174,0.1651,-2.3553) mvmt=(0.0641,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.5197,0.7828,-1.0000) mvmt=(0.0000,-0.0641,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.3890,3.1774,0.4950) mvmt=(-0.0639,0.0053,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.0153,0.7828,0.5000) mvmt=(0.0000,-0.0641,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.0153,0.7828,-0.2700) mvmt=(0.0000,-0.0641,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.0153,0.7828,-0.2700) out=(4.0153,0.7828,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.485,10.717,93.750) lpos=(4.015,0.783,-0.270) lprev=(4.015,0.847,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.0153,0.7828,0.4800) mvmt=(0.0000,-0.0641,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.485,10.717,94.500) lpos=(4.015,0.783,0.480) lprev=(4.015,0.847,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.8424,2.6163,-0.9003) mvmt=(0.0641,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8174,2.3763,-1.0053) mvmt=(0.0641,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8174,0.1651,-2.3553) mvmt=(0.0641,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5197,0.7828,-1.0000) mvmt=(0.0000,-0.0641,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3890,3.1774,0.4950) mvmt=(-0.0639,0.0053,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0153,0.7828,0.5000) mvmt=(0.0000,-0.0641,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.0153,0.7170,0.4800) mvmt=(0.0000,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.485,10.783,94.500) lpos=(4.015,0.717,0.480) lprev=(4.015,0.783,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9082,2.6163,-0.9003) mvmt=(0.0658,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8832,2.3763,-1.0053) mvmt=(0.0658,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8832,0.1651,-2.3553) mvmt=(0.0658,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3797,3.2070,0.4925) mvmt=(0.0000,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5197,0.7170,-1.0000) mvmt=(0.0000,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4546,3.1829,0.4950) mvmt=(-0.0656,0.0054,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0153,0.7170,0.5000) mvmt=(0.0000,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0153,0.7170,-0.2700) mvmt=(0.0000,-0.0658,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.0153,0.7170,-0.2700) out=(4.0153,0.7170,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.485,10.783,93.750) lpos=(4.015,0.717,-0.270) lprev=(4.015,0.783,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.0153,0.7170,0.4800) mvmt=(0.0000,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.485,10.783,94.500) lpos=(4.015,0.717,0.480) lprev=(4.015,0.783,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9082,2.6163,-0.9003) mvmt=(0.0658,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8832,2.3763,-1.0053) mvmt=(0.0658,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8832,0.1651,-2.3553) mvmt=(0.0658,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3797,3.2070,0.4925) mvmt=(0.0000,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5197,0.7170,-1.0000) mvmt=(0.0000,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4546,3.1829,0.4950) mvmt=(-0.0656,0.0054,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0153,0.7170,0.5000) mvmt=(0.0000,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.1264,0.6512,0.4800) mvmt=(0.1110,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.374,10.849,94.500) lpos=(4.126,0.651,0.480) lprev=(4.015,0.717,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9741,2.7274,-0.9003) mvmt=(0.0658,0.1110,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9491,2.4874,-1.0053) mvmt=(0.0658,0.1110,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9491,0.2761,-2.3553) mvmt=(0.0658,0.1110,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2686,3.1412,0.4925) mvmt=(0.1110,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4086,0.6512,-1.0000) mvmt=(0.1110,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1264,0.6512,0.4800) mvmt=(0.1110,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.374,10.849,94.500) lpos=(4.126,0.651,0.480) lprev=(4.015,0.717,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9741,2.7274,-0.9003) mvmt=(0.0658,0.1110,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9491,2.4874,-1.0053) mvmt=(0.0658,0.1110,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9491,0.2761,-2.3553) mvmt=(0.0658,0.1110,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2686,3.1412,0.4925) mvmt=(0.1110,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4086,0.6512,-1.0000) mvmt=(0.1110,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.4086,0.6512,-1.0000) out=(-1.4086,0.6512,-0.8200) delta=(0.0000,0.0000,0.1800) deltaMag=0.1800 n=(0.0000,0.0000,1.0000) d=1.3000 r=0.4800 winterp=1.0000->0.7000 dpPos=0.3000 dpMove=-0.6000 iDist=0.3000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(4.1264,0.6512,0.6600) mvmt=(0.1110,-0.0658,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.374,10.849,94.680) lpos=(4.126,0.651,0.660) lprev=(4.015,0.717,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9741,2.7274,-0.7203) mvmt=(0.0658,0.1110,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.9491,2.4874,-0.8253) mvmt=(0.0658,0.1110,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.9491,0.2761,-2.1753) mvmt=(0.0658,0.1110,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2686,3.1412,0.6725) mvmt=(0.1110,-0.0658,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.4086,0.6512,-0.8200) mvmt=(0.1110,-0.0658,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.5294,3.0777,0.6750) mvmt=(-0.0748,-0.1052,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1264,0.6512,0.6800) mvmt=(0.1110,-0.0658,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1264,0.6512,0.6600) mvmt=(0.1110,-0.0658,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.374,10.849,94.680) lpos=(4.126,0.651,0.660) lprev=(4.015,0.717,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9741,2.7274,-0.7203) mvmt=(0.0658,0.1110,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.9491,2.4874,-0.8253) mvmt=(0.0658,0.1110,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.9491,0.2761,-2.1753) mvmt=(0.0658,0.1110,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2686,3.1412,0.6725) mvmt=(0.1110,-0.0658,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.4086,0.6512,-0.8200) mvmt=(0.1110,-0.0658,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.5294,3.0777,0.6750) mvmt=(-0.0748,-0.1052,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1264,0.6512,0.6800) mvmt=(0.1110,-0.0658,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(4.0153,0.6512,0.4800) mvmt=(0.0000,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.485,10.849,94.500) lpos=(4.015,0.651,0.480) lprev=(4.015,0.717,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9741,2.6163,-0.9003) mvmt=(0.0658,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.9491,2.3763,-1.0053) mvmt=(0.0658,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.9491,0.1651,-2.3553) mvmt=(0.0658,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.3797,3.1412,0.4925) mvmt=(0.0000,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.5197,0.6512,-1.0000) mvmt=(0.0000,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.5202,3.1883,0.4950) mvmt=(-0.0656,0.0054,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.0153,0.6512,0.5000) mvmt=(0.0000,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.0153,0.6512,-0.2700) mvmt=(0.0000,-0.0658,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.0153,0.6512,-0.2700) out=(4.0153,0.6512,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.485,10.849,93.750) lpos=(4.015,0.651,-0.270) lprev=(4.015,0.717,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.0153,0.6512,0.4800) mvmt=(0.0000,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.485,10.849,94.500) lpos=(4.015,0.651,0.480) lprev=(4.015,0.717,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9741,2.6163,-0.9003) mvmt=(0.0658,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9491,2.3763,-1.0053) mvmt=(0.0658,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9491,0.1651,-2.3553) mvmt=(0.0658,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3797,3.1412,0.4925) mvmt=(0.0000,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5197,0.6512,-1.0000) mvmt=(0.0000,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5202,3.1883,0.4950) mvmt=(-0.0656,0.0054,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0153,0.6512,0.5000) mvmt=(0.0000,-0.0658,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementBackup Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.9085,0.4710,0.4800) mvmt=(-0.1069,-0.1802,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.592,11.029,94.500) lpos=(3.908,0.471,0.480) lprev=(4.015,0.651,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1542,2.5095,-0.9003) mvmt=(0.1802,-0.1069,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1292,2.2695,-1.0053) mvmt=(0.1802,-0.1069,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1292,0.0582,-2.3553) mvmt=(0.1802,-0.1069,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4865,2.9610,0.4925) mvmt=(-0.1069,-0.1802,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6265,0.4710,-1.0000) mvmt=(-0.1069,-0.1802,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6909,3.3097,0.4950) mvmt=(-0.1707,0.1214,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9085,0.4710,0.5000) mvmt=(-0.1069,-0.1802,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9085,0.4710,-0.2700) mvmt=(-0.1069,-0.1802,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9085,0.4710,-0.2700) out=(3.9085,0.4710,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.592,11.029,93.750) lpos=(3.908,0.471,-0.270) lprev=(4.015,0.651,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.9085,0.4710,0.4800) mvmt=(-0.1069,-0.1802,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.592,11.029,94.500) lpos=(3.908,0.471,0.480) lprev=(4.015,0.651,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1542,2.5095,-0.9003) mvmt=(0.1802,-0.1069,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1292,2.2695,-1.0053) mvmt=(0.1802,-0.1069,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1292,0.0582,-2.3553) mvmt=(0.1802,-0.1069,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4865,2.9610,0.4925) mvmt=(-0.1069,-0.1802,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6265,0.4710,-1.0000) mvmt=(-0.1069,-0.1802,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6909,3.3097,0.4950) mvmt=(-0.1707,0.1214,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9085,0.4710,0.5000) mvmt=(-0.1069,-0.1802,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.8004,0.2888,0.4800) mvmt=(-0.1080,-0.1822,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.700,11.211,94.500) lpos=(3.800,0.289,0.480) lprev=(3.908,0.471,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3364,2.4014,-0.9003) mvmt=(0.1822,-0.1080,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3114,2.1614,-1.0053) mvmt=(0.1822,-0.1080,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3114,-0.0498,-2.3553) mvmt=(0.1822,-0.1080,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5946,2.7788,0.4925) mvmt=(-0.1080,-0.1822,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7346,0.2888,-1.0000) mvmt=(-0.1080,-0.1822,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8635,3.4324,0.4950) mvmt=(-0.1726,0.1227,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8004,0.2888,0.5000) mvmt=(-0.1080,-0.1822,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8004,0.2888,-0.2700) mvmt=(-0.1080,-0.1822,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.8004,0.2888,-0.2700) out=(3.8004,0.2888,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.700,11.211,93.750) lpos=(3.800,0.289,-0.270) lprev=(3.908,0.471,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.8004,0.2888,0.4800) mvmt=(-0.1080,-0.1822,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.700,11.211,94.500) lpos=(3.800,0.289,0.480) lprev=(3.908,0.471,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3364,2.4014,-0.9003) mvmt=(0.1822,-0.1080,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3114,2.1614,-1.0053) mvmt=(0.1822,-0.1080,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3114,-0.0498,-2.3553) mvmt=(0.1822,-0.1080,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5946,2.7788,0.4925) mvmt=(-0.1080,-0.1822,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7346,0.2888,-1.0000) mvmt=(-0.1080,-0.1822,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8635,3.4324,0.4950) mvmt=(-0.1726,0.1227,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8004,0.2888,0.5000) mvmt=(-0.1080,-0.1822,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.6955,0.1119,0.4800) mvmt=(-0.1049,-0.1770,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.805,11.388,94.500) lpos=(3.695,0.112,0.480) lprev=(3.800,0.289,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5134,2.2965,-0.9003) mvmt=(0.1770,-0.1049,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4884,2.0565,-1.0053) mvmt=(0.1770,-0.1049,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4884,-0.1548,-2.3553) mvmt=(0.1770,-0.1050,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6995,2.6019,0.4925) mvmt=(-0.1049,-0.1770,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8395,0.1119,-1.0000) mvmt=(-0.1049,-0.1770,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0312,3.5517,0.4950) mvmt=(-0.1677,0.1192,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6955,0.1119,0.5000) mvmt=(-0.1049,-0.1770,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6955,0.1119,-0.2700) mvmt=(-0.1049,-0.1770,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.6955,0.1119,-0.2700) out=(3.6955,0.1119,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.805,11.388,93.750) lpos=(3.695,0.112,-0.270) lprev=(3.800,0.289,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.6955,0.1119,0.4800) mvmt=(-0.1049,-0.1770,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.805,11.388,94.500) lpos=(3.695,0.112,0.480) lprev=(3.800,0.289,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5134,2.2965,-0.9003) mvmt=(0.1770,-0.1049,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4884,2.0565,-1.0053) mvmt=(0.1770,-0.1049,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4884,-0.1548,-2.3553) mvmt=(0.1770,-0.1050,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6995,2.6019,0.4925) mvmt=(-0.1049,-0.1770,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8395,0.1119,-1.0000) mvmt=(-0.1049,-0.1770,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0312,3.5517,0.4950) mvmt=(-0.1677,0.1192,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6955,0.1119,0.5000) mvmt=(-0.1049,-0.1770,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.9155,0.4829,0.4800) mvmt=(0.2200,0.3710,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.584,11.017,94.500) lpos=(3.916,0.483,0.480) lprev=(3.695,0.112,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1424,2.5165,-0.9003) mvmt=(-0.3710,0.2200,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1174,2.2765,-1.0053) mvmt=(-0.3710,0.2200,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1174,0.0653,-2.3553) mvmt=(-0.3710,0.2200,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4775,4.2079,0.4900) mvmt=(0.2200,0.3710,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4795,2.9729,0.4925) mvmt=(0.2200,0.3710,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6195,0.4829,-1.0000) mvmt=(0.2200,0.3710,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6797,3.3017,0.4950) mvmt=(0.3515,-0.2500,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9155,0.4829,0.5000) mvmt=(0.2200,0.3710,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9155,0.4829,-0.2700) mvmt=(0.2200,0.3710,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9155,0.4829,-0.2700) out=(3.9155,0.4829,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.584,11.017,93.750) lpos=(3.916,0.483,-0.270) lprev=(3.695,0.112,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.9155,0.4829,0.4800) mvmt=(0.2200,0.3710,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.584,11.017,94.500) lpos=(3.916,0.483,0.480) lprev=(3.695,0.112,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1424,2.5165,-0.9003) mvmt=(-0.3710,0.2200,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1174,2.2765,-1.0053) mvmt=(-0.3710,0.2200,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1174,0.0653,-2.3553) mvmt=(-0.3710,0.2200,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4775,4.2079,0.4900) mvmt=(0.2200,0.3710,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4795,2.9729,0.4925) mvmt=(0.2200,0.3710,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6195,0.4829,-1.0000) mvmt=(0.2200,0.3710,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6797,3.3017,0.4950) mvmt=(0.3515,-0.2500,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9155,0.4829,0.5000) mvmt=(0.2200,0.3710,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.1243,0.8349,0.4800) mvmt=(0.2088,0.3521,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.376,10.665,94.500) lpos=(4.124,0.835,0.480) lprev=(3.916,0.483,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7903,2.7253,-0.9003) mvmt=(-0.3521,0.2088,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7653,2.4853,-1.0053) mvmt=(-0.3521,0.2088,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7653,0.2740,-2.3553) mvmt=(-0.3521,0.2088,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2707,3.3249,0.4925) mvmt=(0.2088,0.3521,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4107,0.8349,-1.0000) mvmt=(0.2088,0.3521,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1243,0.8349,0.4800) mvmt=(0.2088,0.3521,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.376,10.665,94.500) lpos=(4.124,0.835,0.480) lprev=(3.916,0.483,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7903,2.7253,-0.9003) mvmt=(-0.3521,0.2088,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7653,2.4853,-1.0053) mvmt=(-0.3521,0.2088,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7653,0.2740,-2.3553) mvmt=(-0.3521,0.2088,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2707,3.3249,0.4925) mvmt=(0.2088,0.3521,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4107,0.8349,-1.0000) mvmt=(0.2088,0.3521,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.4107,0.8349,-1.0000) out=(-1.4107,0.8349,-0.8200) delta=(0.0000,0.0000,0.1800) deltaMag=0.1800 n=(0.0000,0.0000,1.0000) d=1.3000 r=0.4800 winterp=1.0000->0.7000 dpPos=0.3000 dpMove=-0.6000 iDist=0.3000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(4.1243,0.8349,0.6600) mvmt=(0.2088,0.3521,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.376,10.665,94.680) lpos=(4.124,0.835,0.660) lprev=(3.916,0.483,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7903,2.7253,-0.7203) mvmt=(-0.3521,0.2088,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.7653,2.4853,-0.8253) mvmt=(-0.3521,0.2088,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.7653,0.2740,-2.1753) mvmt=(-0.3521,0.2088,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2707,3.3249,0.6725) mvmt=(0.2088,0.3521,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.4107,0.8349,-0.8200) mvmt=(0.2088,0.3521,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.3461,3.0645,0.6750) mvmt=(0.3336,-0.2372,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1243,0.8349,0.6800) mvmt=(0.2088,0.3521,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1243,0.8349,0.6600) mvmt=(0.2088,0.3521,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.376,10.665,94.680) lpos=(4.124,0.835,0.660) lprev=(3.916,0.483,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7903,2.7253,-0.7203) mvmt=(-0.3521,0.2088,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.7653,2.4853,-0.8253) mvmt=(-0.3521,0.2088,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.7653,0.2740,-2.1753) mvmt=(-0.3521,0.2088,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2707,3.3249,0.6725) mvmt=(0.2088,0.3521,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.4107,0.8349,-0.8200) mvmt=(0.2088,0.3521,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.3461,3.0645,0.6750) mvmt=(0.3336,-0.2372,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1243,0.8349,0.6800) mvmt=(0.2088,0.3521,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(3.9155,0.8349,0.4800) mvmt=(0.0000,0.3521,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.584,10.665,94.500) lpos=(3.916,0.835,0.480) lprev=(3.916,0.483,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7903,2.5165,-0.9003) mvmt=(-0.3521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.7653,2.2765,-1.0053) mvmt=(-0.3521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.7653,0.0653,-2.3553) mvmt=(-0.3521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.4795,3.3249,0.4925) mvmt=(0.0000,0.3521,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.6195,0.8349,-1.0000) mvmt=(0.0000,0.3521,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.3288,3.2726,0.4950) mvmt=(0.3508,-0.0291,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(3.9155,0.8349,0.5000) mvmt=(0.0000,0.3521,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(3.9155,0.8349,-0.2700) mvmt=(0.0000,0.3521,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9155,0.8349,-0.2700) out=(3.9155,0.8349,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.584,10.665,93.750) lpos=(3.916,0.835,-0.270) lprev=(3.916,0.483,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.9155,0.8349,0.4800) mvmt=(0.0000,0.3521,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.584,10.665,94.500) lpos=(3.916,0.835,0.480) lprev=(3.916,0.483,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7903,2.5165,-0.9003) mvmt=(-0.3521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7653,2.2765,-1.0053) mvmt=(-0.3521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7653,0.0653,-2.3553) mvmt=(-0.3521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4795,3.3249,0.4925) mvmt=(0.0000,0.3521,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6195,0.8349,-1.0000) mvmt=(0.0000,0.3521,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3288,3.2726,0.4950) mvmt=(0.3508,-0.0291,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9155,0.8349,0.5000) mvmt=(0.0000,0.3521,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.9155,1.1944,0.4800) mvmt=(0.0000,0.3595,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.584,10.306,94.500) lpos=(3.916,1.194,0.480) lprev=(3.916,0.835,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.4308,2.5165,-0.9003) mvmt=(-0.3595,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4058,2.2765,-1.0053) mvmt=(-0.3595,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4058,0.0653,-2.3553) mvmt=(-0.3595,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4795,3.6844,0.4925) mvmt=(0.0000,0.3595,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6195,1.1944,-1.0000) mvmt=(0.0000,0.3595,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9706,3.2429,0.4950) mvmt=(0.3583,-0.0297,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9155,1.1944,0.5000) mvmt=(0.0000,0.3595,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9155,1.1944,-0.2700) mvmt=(0.0000,0.3595,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9155,1.1944,-0.2700) out=(3.9155,1.1944,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.584,10.306,93.750) lpos=(3.916,1.194,-0.270) lprev=(3.916,0.835,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.9155,1.1944,0.4800) mvmt=(0.0000,0.3595,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.584,10.306,94.500) lpos=(3.916,1.194,0.480) lprev=(3.916,0.835,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.4308,2.5165,-0.9003) mvmt=(-0.3595,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4058,2.2765,-1.0053) mvmt=(-0.3595,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4058,0.0653,-2.3553) mvmt=(-0.3595,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4795,3.6844,0.4925) mvmt=(0.0000,0.3595,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6195,1.1944,-1.0000) mvmt=(0.0000,0.3595,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9706,3.2429,0.4950) mvmt=(0.3583,-0.0297,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9155,1.1944,0.5000) mvmt=(0.0000,0.3595,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.1244,1.5466,0.4800) mvmt=(0.2089,0.3522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.376,9.953,94.500) lpos=(4.124,1.547,0.480) lprev=(3.916,1.194,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.0786,2.7254,-0.9003) mvmt=(-0.3522,0.2089,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0536,2.4854,-1.0053) mvmt=(-0.3522,0.2089,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0536,0.2741,-2.3553) mvmt=(-0.3522,0.2089,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4106,1.5466,-1.0000) mvmt=(0.2089,0.3522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1244,1.5466,0.4800) mvmt=(0.2089,0.3522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.376,9.953,94.500) lpos=(4.124,1.547,0.480) lprev=(3.916,1.194,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.0786,2.7254,-0.9003) mvmt=(-0.3522,0.2089,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0536,2.4854,-1.0053) mvmt=(-0.3522,0.2089,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0536,0.2741,-2.3553) mvmt=(-0.3522,0.2089,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4106,1.5466,-1.0000) mvmt=(0.2089,0.3522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.4106,1.5466,-1.0000) out=(-1.4106,1.5466,-0.8200) delta=(0.0000,0.0000,0.1800) deltaMag=0.1800 n=(0.0000,0.0000,1.0000) d=1.3000 r=0.4800 winterp=1.0000->0.7000 dpPos=0.3000 dpMove=-0.6000 iDist=0.3000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(4.1244,1.5466,0.6600) mvmt=(0.2089,0.3522,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.376,9.953,94.680) lpos=(4.124,1.547,0.660) lprev=(3.916,1.194,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.0786,2.7254,-0.7203) mvmt=(-0.3522,0.2089,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.0536,2.4854,-0.8253) mvmt=(-0.3522,0.2089,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.0536,0.2741,-2.1753) mvmt=(-0.3522,0.2089,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2706,4.0366,0.6725) mvmt=(0.2089,0.3522,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.4106,1.5466,-0.8200) mvmt=(0.2089,0.3522,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.8603,2.5973,0.6725) mvmt=(0.3337,-0.2373,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-0.6368,3.0056,0.6750) mvmt=(0.3337,-0.2373,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1244,1.5466,0.6800) mvmt=(0.2089,0.3522,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1244,1.5466,0.6600) mvmt=(0.2089,0.3522,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.376,9.953,94.680) lpos=(4.124,1.547,0.660) lprev=(3.916,1.194,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.0786,2.7254,-0.7203) mvmt=(-0.3522,0.2089,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.0536,2.4854,-0.8253) mvmt=(-0.3522,0.2089,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.0536,0.2741,-2.1753) mvmt=(-0.3522,0.2089,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2706,4.0366,0.6725) mvmt=(0.2089,0.3522,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.4106,1.5466,-0.8200) mvmt=(0.2089,0.3522,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.8603,2.5973,0.6725) mvmt=(0.3337,-0.2373,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-0.6368,3.0056,0.6750) mvmt=(0.3337,-0.2373,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.1244,1.5466,0.6800) mvmt=(0.2089,0.3522,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(3.9155,1.5466,0.4800) mvmt=(0.0000,0.3522,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.584,9.953,94.500) lpos=(3.916,1.547,0.480) lprev=(3.916,1.194,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.0786,2.5165,-0.9003) mvmt=(-0.3522,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.0536,2.2765,-1.0053) mvmt=(-0.3522,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.0536,0.0653,-2.3553) mvmt=(-0.3522,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.6195,1.5466,-1.0000) mvmt=(-0.0000,0.3522,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-0.6195,3.2137,0.4950) mvmt=(0.3510,-0.0291,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(3.9155,1.5466,0.5000) mvmt=(0.0000,0.3522,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(3.9155,1.5466,-0.2700) mvmt=(0.0000,0.3522,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9155,1.5466,-0.2700) out=(3.9155,1.5466,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.584,9.953,93.750) lpos=(3.916,1.547,-0.270) lprev=(3.916,1.194,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.9155,1.5466,0.4800) mvmt=(0.0000,0.3522,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.584,9.953,94.500) lpos=(3.916,1.547,0.480) lprev=(3.916,1.194,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.0786,2.5165,-0.9003) mvmt=(-0.3522,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0536,2.2765,-1.0053) mvmt=(-0.3522,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0536,0.0653,-2.3553) mvmt=(-0.3522,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6195,1.5466,-1.0000) mvmt=(-0.0000,0.3522,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6195,3.2137,0.4950) mvmt=(0.3510,-0.0291,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9155,1.5466,0.5000) mvmt=(0.0000,0.3522,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.9155,1.9069,0.4800) mvmt=(0.0000,0.3603,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.584,9.593,94.500) lpos=(3.916,1.907,0.480) lprev=(3.916,1.547,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.7183,2.5165,-0.9003) mvmt=(-0.3603,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6933,2.2765,-1.0053) mvmt=(-0.3603,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6933,0.0653,-2.3553) mvmt=(-0.3603,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6195,1.9069,-1.0000) mvmt=(0.0000,0.3603,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4840,2.7757,0.4925) mvmt=(0.3590,-0.0298,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2605,3.1839,0.4950) mvmt=(0.3590,-0.0298,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9155,1.9069,0.5000) mvmt=(0.0000,0.3603,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9155,1.9069,-0.2700) mvmt=(0.0000,0.3603,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9155,1.9069,-0.2700) out=(3.9155,1.9069,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.584,9.593,93.750) lpos=(3.916,1.907,-0.270) lprev=(3.916,1.547,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.9155,1.9069,0.4800) mvmt=(0.0000,0.3603,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.584,9.593,94.500) lpos=(3.916,1.907,0.480) lprev=(3.916,1.547,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.7183,2.5165,-0.9003) mvmt=(-0.3603,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6933,2.2765,-1.0053) mvmt=(-0.3603,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6933,0.0653,-2.3553) mvmt=(-0.3603,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6195,1.9069,-1.0000) mvmt=(0.0000,0.3603,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4840,2.7757,0.4925) mvmt=(0.3590,-0.0298,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2605,3.1839,0.4950) mvmt=(0.3590,-0.0298,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9155,1.9069,0.5000) mvmt=(0.0000,0.3603,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.3083,2.0044,0.4800) mvmt=(0.3928,0.0975,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.192,9.496,94.500) lpos=(4.308,2.004,0.480) lprev=(3.916,1.907,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.6208,2.9093,-0.9003) mvmt=(-0.0975,0.3928,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5958,2.6693,-1.0053) mvmt=(-0.0975,0.3928,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5958,0.4580,-2.3553) mvmt=(-0.0975,0.3928,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2267,2.0044,-1.0000) mvmt=(0.3928,0.0975,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3083,2.0044,0.4800) mvmt=(0.3928,0.0975,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.192,9.496,94.500) lpos=(4.308,2.004,0.480) lprev=(3.916,1.907,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.6208,2.9093,-0.9003) mvmt=(-0.0975,0.3928,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5958,2.6693,-1.0053) mvmt=(-0.0975,0.3928,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5958,0.4580,-2.3553) mvmt=(-0.0975,0.3928,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2267,2.0044,-1.0000) mvmt=(0.3928,0.0975,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.2267,2.0044,-1.0000) out=(-1.2267,2.0044,-0.8200) delta=(0.0000,0.0000,0.1800) deltaMag=0.1800 n=(0.0000,0.0000,1.0000) d=1.3000 r=0.4800 winterp=1.0000->0.7000 dpPos=0.3000 dpMove=-0.6000 iDist=0.3000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(4.3083,2.0044,0.6600) mvmt=(0.3928,0.0975,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.192,9.496,94.680) lpos=(4.308,2.004,0.660) lprev=(3.916,1.907,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.6208,2.9093,-0.7203) mvmt=(-0.0975,0.3928,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(1.5958,2.6693,-0.8253) mvmt=(-0.0975,0.3928,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(1.5958,0.4580,-2.1753) mvmt=(-0.0975,0.3928,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2267,2.0044,-0.8200) mvmt=(0.3928,0.0975,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.4193,2.3762,0.6725) mvmt=(0.0647,-0.3995,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-0.1958,2.7845,0.6750) mvmt=(0.0647,-0.3995,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.3083,2.0044,0.6800) mvmt=(0.3928,0.0975,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.3083,2.0044,0.6600) mvmt=(0.3928,0.0975,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.192,9.496,94.680) lpos=(4.308,2.004,0.660) lprev=(3.916,1.907,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.6208,2.9093,-0.7203) mvmt=(-0.0975,0.3928,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(1.5958,2.6693,-0.8253) mvmt=(-0.0975,0.3928,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(1.5958,0.4580,-2.1753) mvmt=(-0.0975,0.3928,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2267,2.0044,-0.8200) mvmt=(0.3928,0.0975,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.4193,2.3762,0.6725) mvmt=(0.0647,-0.3995,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-0.1958,2.7845,0.6750) mvmt=(0.0647,-0.3995,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.3083,2.0044,0.6800) mvmt=(0.3928,0.0975,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(3.9155,2.0044,0.4800) mvmt=(0.0000,0.0975,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.584,9.496,94.500) lpos=(3.916,2.004,0.480) lprev=(3.916,1.907,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.6208,2.5165,-0.9003) mvmt=(-0.0975,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(1.5958,2.2765,-1.0053) mvmt=(-0.0975,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(1.5958,0.0653,-2.3553) mvmt=(-0.0975,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.6195,2.0044,-1.0000) mvmt=(0.0000,0.0975,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.3868,2.7677,0.4925) mvmt=(0.0972,-0.0081,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-0.1633,3.1759,0.4950) mvmt=(0.0972,-0.0081,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(3.9155,2.0044,0.5000) mvmt=(0.0000,0.0975,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(3.9155,2.0044,-0.2700) mvmt=(0.0000,0.0975,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9155,2.0044,-0.2700) out=(3.9155,2.0044,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.584,9.496,93.750) lpos=(3.916,2.004,-0.270) lprev=(3.916,1.907,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.9155,2.0044,0.4800) mvmt=(0.0000,0.0975,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.584,9.496,94.500) lpos=(3.916,2.004,0.480) lprev=(3.916,1.907,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.6208,2.5165,-0.9003) mvmt=(-0.0975,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5958,2.2765,-1.0053) mvmt=(-0.0975,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5958,0.0653,-2.3553) mvmt=(-0.0975,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6195,2.0044,-1.0000) mvmt=(0.0000,0.0975,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3868,2.7677,0.4925) mvmt=(0.0972,-0.0081,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1633,3.1759,0.4950) mvmt=(0.0972,-0.0081,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9155,2.0044,0.5000) mvmt=(0.0000,0.0975,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.9155,2.0729,0.4800) mvmt=(0.0000,0.0685,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.584,9.427,94.500) lpos=(3.916,2.073,0.480) lprev=(3.916,2.004,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.5523,2.5165,-0.9003) mvmt=(-0.0685,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5273,2.2765,-1.0053) mvmt=(-0.0685,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5273,0.0653,-2.3553) mvmt=(-0.0685,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6195,2.0729,-1.0000) mvmt=(0.0000,0.0685,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3185,2.7620,0.4925) mvmt=(0.0683,-0.0057,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0950,3.1702,0.4950) mvmt=(0.0683,-0.0057,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9155,2.0729,0.5000) mvmt=(0.0000,0.0685,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9155,2.0729,-0.2700) mvmt=(0.0000,0.0685,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9155,2.0729,-0.2700) out=(3.9155,2.0729,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.584,9.427,93.750) lpos=(3.916,2.073,-0.270) lprev=(3.916,2.004,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.9155,2.0729,0.4800) mvmt=(0.0000,0.0685,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.584,9.427,94.500) lpos=(3.916,2.073,0.480) lprev=(3.916,2.004,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.5523,2.5165,-0.9003) mvmt=(-0.0685,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5273,2.2765,-1.0053) mvmt=(-0.0685,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5273,0.0653,-2.3553) mvmt=(-0.0685,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6195,2.0729,-1.0000) mvmt=(0.0000,0.0685,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3185,2.7620,0.4925) mvmt=(0.0683,-0.0057,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0950,3.1702,0.4950) mvmt=(0.0683,-0.0057,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9155,2.0729,0.5000) mvmt=(0.0000,0.0685,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.3500,2.1028,0.4800) mvmt=(0.4345,0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.150,9.397,94.500) lpos=(4.350,2.103,0.480) lprev=(3.916,2.073,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.5224,2.9510,-0.9003) mvmt=(-0.0299,0.4345,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4974,2.7110,-1.0053) mvmt=(-0.0299,0.4345,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4974,0.4997,-2.3553) mvmt=(-0.0299,0.4345,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1850,2.1028,-1.0000) mvmt=(0.4345,0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3247,2.3265,0.4925) mvmt=(-0.0062,-0.4354,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1012,2.7348,0.4950) mvmt=(-0.0062,-0.4354,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3500,2.1028,0.5000) mvmt=(0.4345,0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3500,2.1028,-0.2700) mvmt=(0.4345,0.0299,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.3500,2.1028,-0.2700) out=(4.3500,2.1028,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.150,9.397,93.750) lpos=(4.350,2.103,-0.270) lprev=(3.916,2.073,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.3500,2.1028,0.4800) mvmt=(0.4345,0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.150,9.397,94.500) lpos=(4.350,2.103,0.480) lprev=(3.916,2.073,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.5224,2.9510,-0.9003) mvmt=(-0.0299,0.4345,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4974,2.7110,-1.0053) mvmt=(-0.0299,0.4345,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4974,0.4997,-2.3553) mvmt=(-0.0299,0.4345,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1850,2.1028,-1.0000) mvmt=(0.4345,0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3247,2.3265,0.4925) mvmt=(-0.0062,-0.4354,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1012,2.7348,0.4950) mvmt=(-0.0062,-0.4354,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3500,2.1028,0.5000) mvmt=(0.4345,0.0299,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.7775,2.0958,0.4800) mvmt=(0.4275,-0.0070,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.722,9.404,94.500) lpos=(4.778,2.096,0.480) lprev=(4.350,2.103,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.5294,3.3785,-0.9003) mvmt=(0.0070,0.4275,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5044,3.1385,-1.0053) mvmt=(0.0070,0.4275,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5044,0.9273,-2.3553) mvmt=(0.0070,0.4275,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7575,2.0958,-1.0000) mvmt=(0.4275,-0.0070,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3670,1.9010,0.4925) mvmt=(-0.0423,-0.4255,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1435,2.3093,0.4950) mvmt=(-0.0423,-0.4255,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7775,2.0958,0.5000) mvmt=(0.4275,-0.0070,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7775,2.0958,-0.2700) mvmt=(0.4275,-0.0070,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.7775,2.0958,-0.2700) out=(4.7775,2.0958,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(125.722,9.404,93.750) lpos=(4.778,2.096,-0.270) lprev=(4.350,2.103,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.7775,2.0958,0.4800) mvmt=(0.4275,-0.0070,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.722,9.404,94.500) lpos=(4.778,2.096,0.480) lprev=(4.350,2.103,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.5294,3.3785,-0.9003) mvmt=(0.0070,0.4275,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5044,3.1385,-1.0053) mvmt=(0.0070,0.4275,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5044,0.9273,-2.3553) mvmt=(0.0070,0.4275,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7575,2.0958,-1.0000) mvmt=(0.4275,-0.0070,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3670,1.9010,0.4925) mvmt=(-0.0423,-0.4255,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1435,2.3093,0.4950) mvmt=(-0.0423,-0.4255,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7775,2.0958,0.5000) mvmt=(0.4275,-0.0070,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.2034,2.0525,0.4800) mvmt=(0.4258,-0.0434,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,9.448,94.500) lpos=(5.203,2.052,0.480) lprev=(4.778,2.096,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.5728,3.8044,-0.9003) mvmt=(0.0434,0.4258,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5478,3.5644,-1.0053) mvmt=(0.0434,0.4258,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5478,1.3531,-2.3553) mvmt=(0.0434,0.4258,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3316,2.0525,-1.0000) mvmt=(0.4258,-0.0434,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,2.0525,0.4800) mvmt=(0.4258,-0.0434,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,9.448,94.500) lpos=(5.203,2.052,0.480) lprev=(4.778,2.096,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.5728,3.8044,-0.9003) mvmt=(0.0434,0.4258,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5478,3.5644,-1.0053) mvmt=(0.0434,0.4258,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5478,1.3531,-2.3553) mvmt=(0.0434,0.4258,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3316,2.0525,-1.0000) mvmt=(0.4258,-0.0434,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3316,2.0525,-1.0000) out=(-0.3316,2.0525,-0.8200) delta=(0.0000,0.0000,0.1800) deltaMag=0.1800 n=(0.0000,0.0000,1.0000) d=1.3000 r=0.4800 winterp=1.0000->0.7000 dpPos=0.3000 dpMove=-0.6000 iDist=0.3000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(5.2034,2.0525,0.6600) mvmt=(0.4258,-0.0434,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,9.448,94.680) lpos=(5.203,2.052,0.660) lprev=(4.778,2.096,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.5728,3.8044,-0.7203) mvmt=(0.0434,0.4258,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(1.5478,3.5644,-0.8253) mvmt=(0.0434,0.4258,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(1.5478,1.3531,-2.1753) mvmt=(0.0434,0.4258,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-0.3316,2.0525,-0.8200) mvmt=(0.4258,-0.0434,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,2.0525,0.6800) mvmt=(0.4258,-0.0434,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.4454,1.4803,0.6725) mvmt=(-0.0784,-0.4208,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-0.2220,1.8885,0.6750) mvmt=(-0.0784,-0.4208,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,2.0525,0.6600) mvmt=(0.4258,-0.0434,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,9.448,94.680) lpos=(5.203,2.052,0.660) lprev=(4.778,2.096,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.5728,3.8044,-0.7203) mvmt=(0.0434,0.4258,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(1.5478,3.5644,-0.8253) mvmt=(0.0434,0.4258,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(1.5478,1.3531,-2.1753) mvmt=(0.0434,0.4258,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-0.3316,2.0525,-0.8200) mvmt=(0.4258,-0.0434,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,2.0525,0.6800) mvmt=(0.4258,-0.0434,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(5.2034,2.0958,0.4800) mvmt=(0.4258,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,9.404,94.500) lpos=(5.203,2.096,0.480) lprev=(4.778,2.096,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.5294,3.8044,-0.9003) mvmt=(0.0000,0.4258,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(1.5044,3.5644,-1.0053) mvmt=(0.0000,0.4258,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(1.5044,1.3531,-2.3553) mvmt=(0.0000,0.4258,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-0.3316,2.0958,-1.0000) mvmt=(0.4258,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,2.0958,0.5000) mvmt=(0.4258,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.4022,1.4767,0.4925) mvmt=(-0.0352,-0.4244,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-0.1787,1.8849,0.4950) mvmt=(-0.0352,-0.4244,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,2.0958,-0.2700) mvmt=(0.4258,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(5.2034,2.0958,-0.2700) out=(5.2034,2.0958,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,9.404,93.750) lpos=(5.203,2.096,-0.270) lprev=(4.778,2.096,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(5.2034,2.0958,0.4800) mvmt=(0.4258,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,9.404,94.500) lpos=(5.203,2.096,0.480) lprev=(4.778,2.096,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.5294,3.8044,-0.9003) mvmt=(0.0000,0.4258,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5044,3.5644,-1.0053) mvmt=(0.0000,0.4258,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5044,1.3531,-2.3553) mvmt=(0.0000,0.4258,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3316,2.0958,-1.0000) mvmt=(0.4258,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,2.0958,0.5000) mvmt=(0.4258,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4022,1.4767,0.4925) mvmt=(-0.0352,-0.4244,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1787,1.8849,0.4950) mvmt=(-0.0352,-0.4244,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.6196,2.0958,0.4800) mvmt=(0.4162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.6196,2.0958,0.4800) mvmt=(0.4162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(124.880,9.404,94.500) lpos=(5.620,2.096,0.480) lprev=(5.203,2.096,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.5294,4.2206,-0.9003) mvmt=(0.0000,0.4162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5044,3.9806,-1.0053) mvmt=(0.0000,0.4162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5044,1.7693,-2.3553) mvmt=(0.0000,0.4162,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0846,2.0958,-1.0000) mvmt=(0.4162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.6196,2.0958,0.5000) mvmt=(0.4162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4367,1.0618,0.4925) mvmt=(-0.0344,-0.4148,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2132,1.4701,0.4950) mvmt=(-0.0344,-0.4148,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(124.880,9.404,94.500) lpos=(5.620,2.096,0.480) lprev=(5.203,2.096,0.480) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.2034,1.9822,0.4800) mvmt=(0.0000,-0.1136,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,9.518,94.500) lpos=(5.203,1.982,0.480) lprev=(5.203,2.096,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.6430,3.8044,-0.9003) mvmt=(0.1136,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6180,3.5644,-1.0053) mvmt=(0.1136,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6180,1.3531,-2.3553) mvmt=(0.1136,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3316,1.9822,-1.0000) mvmt=(0.0000,-0.1136,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,1.9822,0.4800) mvmt=(0.0000,-0.1136,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,9.518,94.500) lpos=(5.203,1.982,0.480) lprev=(5.203,2.096,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.6430,3.8044,-0.9003) mvmt=(0.1136,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6180,3.5644,-1.0053) mvmt=(0.1136,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6180,1.3531,-2.3553) mvmt=(0.1136,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3316,1.9822,-1.0000) mvmt=(0.0000,-0.1136,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3316,1.9822,-1.0000) out=(-0.3316,1.9822,-0.8200) delta=(0.0000,0.0000,0.1800) deltaMag=0.1800 n=(0.0000,0.0000,1.0000) d=1.3000 r=0.4800 winterp=1.0000->0.7000 dpPos=0.3000 dpMove=-0.6000 iDist=0.3000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(5.2034,1.9822,0.6600) mvmt=(0.0000,-0.1136,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,9.518,94.680) lpos=(5.203,1.982,0.660) lprev=(5.203,2.096,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.6430,3.8044,-0.7203) mvmt=(0.1136,0.0000,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(1.6180,3.5644,-0.8253) mvmt=(0.1136,0.0000,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(1.6180,1.3531,-2.1753) mvmt=(0.1136,-0.0000,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-0.3316,1.9822,-0.8200) mvmt=(0.0000,-0.1136,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,1.9822,0.6800) mvmt=(0.0000,-0.1136,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.5155,1.4861,0.6725) mvmt=(-0.1132,0.0094,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-0.2920,1.8943,0.6750) mvmt=(-0.1132,0.0094,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,1.9822,0.6600) mvmt=(0.0000,-0.1136,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,9.518,94.680) lpos=(5.203,1.982,0.660) lprev=(5.203,2.096,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.6430,3.8044,-0.7203) mvmt=(0.1136,0.0000,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(1.6180,3.5644,-0.8253) mvmt=(0.1136,0.0000,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(1.6180,1.3531,-2.1753) mvmt=(0.1136,-0.0000,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-0.3316,1.9822,-0.8200) mvmt=(0.0000,-0.1136,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,1.9822,0.6800) mvmt=(0.0000,-0.1136,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.6085,2.0958,0.6600) mvmt=(0.4051,0.0000,0.1800) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.6085,2.0958,0.6600) mvmt=(0.4051,0.0000,0.1800) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(124.892,9.404,94.680) lpos=(5.608,2.096,0.660) lprev=(5.203,2.096,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.5294,4.2094,-0.7203) mvmt=(0.0000,0.4051,0.1800) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5044,3.9694,-0.8253) mvmt=(0.0000,0.4051,0.1800) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5044,1.7582,-2.1753) mvmt=(0.0000,0.4051,0.1800) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0734,2.0958,-0.8200) mvmt=(0.4051,0.0000,0.1800) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.6085,2.0958,0.6800) mvmt=(0.4051,0.0000,0.1800) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4357,1.0730,0.6725) mvmt=(-0.0335,-0.4037,0.1800) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,1.4812,0.6750) mvmt=(-0.0335,-0.4037,0.1800) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(124.892,9.404,94.680) lpos=(5.608,2.096,0.660) lprev=(5.203,2.096,0.480) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.2034,1.9175,0.6600) mvmt=(0.0000,-0.1784,0.1800) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,9.583,94.680) lpos=(5.203,1.917,0.660) lprev=(5.203,2.096,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.7078,3.8044,-0.7203) mvmt=(0.1784,0.0000,0.1800) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6828,3.5644,-0.8253) mvmt=(0.1784,0.0000,0.1800) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6828,1.3531,-2.1753) mvmt=(0.1784,-0.0000,0.1800) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3316,1.9175,-0.8200) mvmt=(0.0000,-0.1784,0.1800) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,1.9175,0.6800) mvmt=(0.0000,-0.1784,0.1800) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5800,1.4914,0.6725) mvmt=(-0.1777,0.0148,0.1800) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3565,1.8996,0.6750) mvmt=(-0.1777,0.0148,0.1800) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,1.9175,-0.0900) mvmt=(0.0000,-0.1784,-0.5700) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(5.2034,1.9175,-0.0900) out=(5.2034,1.9175,0.4800) delta=(0.0000,0.0000,0.5700) deltaMag=0.5700 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.2400 dpPos=-0.0900 dpMove=-0.7500 iDist=0.7600 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,9.583,93.930) lpos=(5.203,1.917,-0.090) lprev=(5.203,2.096,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(5.2034,1.9175,0.4800) mvmt=(0.0000,-0.1784,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2400 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,9.583,94.500) lpos=(5.203,1.917,0.480) lprev=(5.203,2.096,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.7078,3.8044,-0.9003) mvmt=(0.1784,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2400 return=-1 +[push-back-disp] site=dispatch center=(1.6828,3.5644,-1.0053) mvmt=(0.1784,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2400 return=-1 +[push-back-disp] site=dispatch center=(1.6828,1.3531,-2.3553) mvmt=(0.1784,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2400 return=-1 +[push-back-disp] site=dispatch center=(-0.3316,1.9175,-1.0000) mvmt=(0.0000,-0.1784,0.0000) collide=False insertType=0 objState=0x303 winterp=0.2400 return=-1 +[push-back] site=adjust_sphere in=(-0.3316,1.9175,-1.0000) out=(-0.3316,1.9175,-0.8200) delta=(0.0000,0.0000,0.1800) deltaMag=0.1800 n=(0.0000,0.0000,1.0000) d=1.3000 r=0.4800 winterp=0.2400->0.0000 dpPos=0.3000 dpMove=-0.1800 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(5.2034,1.9175,0.6600) mvmt=(0.0000,-0.1784,0.1800) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,9.583,94.680) lpos=(5.203,1.917,0.660) lprev=(5.203,2.096,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.7078,3.8044,-0.7203) mvmt=(0.1784,0.0000,0.1800) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6828,3.5644,-0.8253) mvmt=(0.1784,0.0000,0.1800) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6828,1.3531,-2.1753) mvmt=(0.1784,-0.0000,0.1800) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3316,1.9175,-0.8200) mvmt=(0.0000,-0.1784,0.1800) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,1.9175,0.6800) mvmt=(0.0000,-0.1784,0.1800) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5800,1.4914,0.6725) mvmt=(-0.1777,0.0148,0.1800) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3565,1.8996,0.6750) mvmt=(-0.1777,0.0148,0.1800) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.5951,1.7456,0.6600) mvmt=(0.3917,-0.1719,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.5951,1.7456,0.6600) mvmt=(0.3917,-0.1719,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(124.905,9.754,94.680) lpos=(5.595,1.746,0.660) lprev=(5.203,1.917,0.660) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.8796,4.1961,-0.7203) mvmt=(0.1719,0.3917,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8546,3.9561,-0.8253) mvmt=(0.1719,0.3917,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8546,1.7448,-2.1753) mvmt=(0.1719,0.3917,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0601,1.7456,-0.8200) mvmt=(0.3917,-0.1719,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.5951,1.7456,0.6800) mvmt=(0.3917,-0.1719,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7836,1.1153,0.6725) mvmt=(-0.2037,-0.3762,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5602,1.5235,0.6750) mvmt=(-0.2037,-0.3762,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(124.905,9.754,94.680) lpos=(5.595,1.746,0.660) lprev=(5.203,1.917,0.660) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(5.2034,1.7456,0.6600) mvmt=(0.0000,-0.1719,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,9.754,94.680) lpos=(5.203,1.746,0.660) lprev=(5.203,1.917,0.660) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.8796,3.8044,-0.7203) mvmt=(0.1719,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8546,3.5644,-0.8253) mvmt=(0.1719,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8546,1.3531,-2.1753) mvmt=(0.1719,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3316,1.7456,-0.8200) mvmt=(0.0000,-0.1719,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,1.7456,0.6600) mvmt=(0.0000,-0.1719,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,9.754,94.680) lpos=(5.203,1.746,0.660) lprev=(5.203,1.917,0.660) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.8796,3.8044,-0.7203) mvmt=(0.1719,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8546,3.5644,-0.8253) mvmt=(0.1719,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8546,1.3531,-2.1753) mvmt=(0.1719,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3316,1.7456,-0.8200) mvmt=(0.0000,-0.1719,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,1.7456,0.6800) mvmt=(0.0000,-0.1719,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7512,1.5056,0.6725) mvmt=(-0.1713,0.0142,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5278,1.9138,0.6750) mvmt=(-0.1713,0.0142,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.5983,1.9175,0.6600) mvmt=(0.3949,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.5983,1.9175,0.6600) mvmt=(0.3949,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(124.902,9.583,94.680) lpos=(5.598,1.917,0.660) lprev=(5.203,1.917,0.660) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.7078,4.1993,-0.7203) mvmt=(0.0000,0.3949,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6828,3.9593,-0.8253) mvmt=(0.0000,0.3949,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6828,1.7480,-2.1753) mvmt=(0.0000,0.3949,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0633,1.9175,-0.8200) mvmt=(0.3949,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.5983,1.9175,0.6800) mvmt=(0.3949,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6126,1.0979,0.6725) mvmt=(-0.0327,-0.3936,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3892,1.5061,0.6750) mvmt=(-0.0327,-0.3936,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(124.902,9.583,94.680) lpos=(5.598,1.917,0.660) lprev=(5.203,1.917,0.660) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.2034,1.7406,0.6600) mvmt=(0.0000,-0.1769,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,9.759,94.680) lpos=(5.203,1.741,0.660) lprev=(5.203,1.917,0.660) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.8847,3.8044,-0.7203) mvmt=(0.1769,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8597,3.5644,-0.8253) mvmt=(0.1769,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8597,1.3531,-2.1753) mvmt=(0.1769,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3316,1.7406,-0.8200) mvmt=(0.0000,-0.1769,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,1.7406,0.6600) mvmt=(0.0000,-0.1769,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,9.759,94.680) lpos=(5.203,1.741,0.660) lprev=(5.203,1.917,0.660) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.8847,3.8044,-0.7203) mvmt=(0.1769,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8597,3.5644,-0.8253) mvmt=(0.1769,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8597,1.3531,-2.1753) mvmt=(0.1769,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3316,1.7406,-0.8200) mvmt=(0.0000,-0.1769,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,1.7406,0.6800) mvmt=(0.0000,-0.1769,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7563,1.5060,0.6725) mvmt=(-0.1763,0.0146,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5328,1.9143,0.6750) mvmt=(-0.1763,0.0146,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.200 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.5961,2.1165,0.6600) mvmt=(0.3927,0.1990,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.5961,2.1165,0.6600) mvmt=(0.3927,0.1990,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(124.904,9.383,94.680) lpos=(5.596,2.117,0.660) lprev=(5.203,1.917,0.660) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.5087,4.1971,-0.7203) mvmt=(-0.1990,0.3927,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4837,3.9571,-0.8253) mvmt=(-0.1990,0.3927,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4837,1.7458,-2.1753) mvmt=(-0.1990,0.3927,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0611,2.1165,-0.8200) mvmt=(0.3927,0.1990,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.5961,2.1165,0.6800) mvmt=(0.3927,0.1990,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4141,1.0836,0.6725) mvmt=(0.1659,-0.4079,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1906,1.4918,0.6750) mvmt=(0.1659,-0.4079,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(124.904,9.383,94.680) lpos=(5.596,2.117,0.660) lprev=(5.203,1.917,0.660) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(5.2034,2.1165,0.6600) mvmt=(0.0000,0.1990,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,9.383,94.680) lpos=(5.203,2.117,0.660) lprev=(5.203,1.917,0.660) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.5087,3.8044,-0.7203) mvmt=(-0.1990,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4837,3.5644,-0.8253) mvmt=(-0.1990,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4837,1.3531,-2.1753) mvmt=(-0.1990,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3316,2.1165,-0.8200) mvmt=(0.0000,0.1990,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,2.1165,0.6800) mvmt=(0.0000,0.1990,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3816,1.4750,0.6725) mvmt=(0.1983,-0.0165,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1581,1.8832,0.6750) mvmt=(0.1983,-0.0165,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,2.1165,-0.0900) mvmt=(0.0000,0.1990,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(5.2034,2.1165,-0.0900) out=(5.2034,2.1165,0.4800) delta=(0.0000,0.0000,0.5700) deltaMag=0.5700 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.2400 dpPos=-0.0900 dpMove=-0.7500 iDist=0.7600 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,9.383,93.930) lpos=(5.203,2.117,-0.090) lprev=(5.203,1.917,0.660) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(5.2034,2.1165,0.4800) mvmt=(0.0000,0.1990,-0.1800) collide=False insertType=0 objState=0x303 winterp=0.2400 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,9.383,94.500) lpos=(5.203,2.117,0.480) lprev=(5.203,1.917,0.660) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.5087,3.8044,-0.9003) mvmt=(-0.1990,0.0000,-0.1800) collide=False insertType=0 objState=0x303 winterp=0.2400 return=-1 +[push-back-disp] site=dispatch center=(1.4837,3.5644,-1.0053) mvmt=(-0.1990,0.0000,-0.1800) collide=False insertType=0 objState=0x303 winterp=0.2400 return=-1 +[push-back-disp] site=dispatch center=(1.4837,1.3531,-2.3553) mvmt=(-0.1990,0.0000,-0.1800) collide=False insertType=0 objState=0x303 winterp=0.2400 return=-1 +[push-back-disp] site=dispatch center=(-0.3316,2.1165,-1.0000) mvmt=(0.0000,0.1990,-0.1800) collide=False insertType=0 objState=0x303 winterp=0.2400 return=-1 +[push-back-disp] site=dispatch center=(5.2034,2.1165,0.5000) mvmt=(0.0000,0.1990,-0.1800) collide=False insertType=0 objState=0x303 winterp=0.2400 return=-1 +[push-back-disp] site=dispatch center=(-1.3816,1.4750,0.4925) mvmt=(0.1983,-0.0165,-0.1800) collide=False insertType=0 objState=0x303 winterp=0.2400 return=-1 +[push-back-disp] site=dispatch center=(-0.1581,1.8832,0.4950) mvmt=(0.1983,-0.0165,-0.1800) collide=False insertType=0 objState=0x303 winterp=0.2400 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.2034,2.3431,0.4800) mvmt=(0.0000,0.2266,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,9.157,94.500) lpos=(5.203,2.343,0.480) lprev=(5.203,2.117,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.2821,3.8044,-0.9003) mvmt=(-0.2266,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2571,3.5644,-1.0053) mvmt=(-0.2266,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2571,1.3531,-2.3553) mvmt=(-0.2266,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3316,2.3431,-1.0000) mvmt=(0.0000,0.2266,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,2.3431,0.5000) mvmt=(0.0000,0.2266,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1558,1.4562,0.4925) mvmt=(0.2258,-0.0187,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0677,1.8644,0.4950) mvmt=(0.2258,-0.0187,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,2.3431,-0.2700) mvmt=(0.0000,0.2266,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(5.2034,2.3431,-0.2700) out=(5.2034,2.3431,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,9.157,93.750) lpos=(5.203,2.343,-0.270) lprev=(5.203,2.117,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(5.2034,2.3431,0.4800) mvmt=(0.0000,0.2266,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,9.157,94.500) lpos=(5.203,2.343,0.480) lprev=(5.203,2.117,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.2821,3.8044,-0.9003) mvmt=(-0.2266,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2571,3.5644,-1.0053) mvmt=(-0.2266,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2571,1.3531,-2.3553) mvmt=(-0.2266,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3316,2.3431,-1.0000) mvmt=(0.0000,0.2266,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,2.3431,0.5000) mvmt=(0.0000,0.2266,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1558,1.4562,0.4925) mvmt=(0.2258,-0.0187,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0677,1.8644,0.4950) mvmt=(0.2258,-0.0187,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.5480,2.5997,0.4800) mvmt=(0.3446,0.2566,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.5480,2.5997,0.4800) mvmt=(0.3446,0.2566,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(124.952,8.900,94.500) lpos=(5.548,2.600,0.480) lprev=(5.203,2.343,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.0255,4.1490,-0.9003) mvmt=(-0.2566,0.3446,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0005,3.9090,-1.0053) mvmt=(-0.2566,0.3446,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0005,1.6977,-2.3553) mvmt=(-0.2566,0.3446,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0130,2.5997,-1.0000) mvmt=(0.3446,0.2566,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.5480,2.5997,0.5000) mvmt=(0.3446,0.2566,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9286,1.0915,0.4925) mvmt=(0.2272,-0.3647,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2949,1.4998,0.4950) mvmt=(0.2272,-0.3647,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(124.952,8.900,94.500) lpos=(5.548,2.600,0.480) lprev=(5.203,2.343,0.480) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(5.2034,2.5997,0.4800) mvmt=(0.0000,0.2566,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,8.900,94.500) lpos=(5.203,2.600,0.480) lprev=(5.203,2.343,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.0255,3.8044,-0.9003) mvmt=(-0.2566,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0005,3.5644,-1.0053) mvmt=(-0.2566,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0005,1.3531,-2.3553) mvmt=(-0.2566,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3316,2.5997,-1.0000) mvmt=(-0.0000,0.2566,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,2.5997,0.5000) mvmt=(0.0000,0.2566,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9001,1.4350,0.4925) mvmt=(0.2557,-0.0212,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3234,1.8432,0.4950) mvmt=(0.2557,-0.0212,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,2.5997,-0.2700) mvmt=(0.0000,0.2566,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(5.2034,2.5997,-0.2700) out=(5.2034,2.5997,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,8.900,93.750) lpos=(5.203,2.600,-0.270) lprev=(5.203,2.343,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(5.2034,2.5997,0.4800) mvmt=(0.0000,0.2566,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,8.900,94.500) lpos=(5.203,2.600,0.480) lprev=(5.203,2.343,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.0255,3.8044,-0.9003) mvmt=(-0.2566,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0005,3.5644,-1.0053) mvmt=(-0.2566,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0005,1.3531,-2.3553) mvmt=(-0.2566,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3316,2.5997,-1.0000) mvmt=(-0.0000,0.2566,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,2.5997,0.5000) mvmt=(0.0000,0.2566,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9001,1.4350,0.4925) mvmt=(0.2557,-0.0212,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3234,1.8432,0.4950) mvmt=(0.2557,-0.0212,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.2034,2.8784,0.4800) mvmt=(0.0000,0.2787,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,8.622,94.500) lpos=(5.203,2.878,0.480) lprev=(5.203,2.600,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2532,3.8044,-0.9003) mvmt=(-0.2787,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7218,3.5644,-1.0053) mvmt=(-0.2787,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7218,1.3531,-2.3553) mvmt=(-0.2787,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3316,2.8784,-1.0000) mvmt=(0.0000,0.2787,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,2.8784,0.5000) mvmt=(0.0000,0.2787,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6223,1.4119,0.4925) mvmt=(0.2777,-0.0230,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6012,1.8202,0.4950) mvmt=(0.2777,-0.0230,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,2.8784,-0.2700) mvmt=(0.0000,0.2787,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(5.2034,2.8784,-0.2700) out=(5.2034,2.8784,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,8.622,93.750) lpos=(5.203,2.878,-0.270) lprev=(5.203,2.600,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(5.2034,2.8784,0.4800) mvmt=(0.0000,0.2787,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.297,8.622,94.500) lpos=(5.203,2.878,0.480) lprev=(5.203,2.600,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2532,3.8044,-0.9003) mvmt=(-0.2787,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7218,3.5644,-1.0053) mvmt=(-0.2787,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7218,1.3531,-2.3553) mvmt=(-0.2787,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3316,2.8784,-1.0000) mvmt=(0.0000,0.2787,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2034,2.8784,0.5000) mvmt=(0.0000,0.2787,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6223,1.4119,0.4925) mvmt=(0.2777,-0.0230,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6012,1.8202,0.4950) mvmt=(0.2777,-0.0230,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.4984,3.1876,0.4800) mvmt=(0.2950,0.3091,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.002,8.312,94.500) lpos=(5.498,3.188,0.480) lprev=(5.203,2.878,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5623,4.0994,-0.9003) mvmt=(-0.3091,0.2950,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4127,3.8594,-1.0053) mvmt=(-0.3091,0.2950,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4127,1.6481,-2.3553) mvmt=(-0.3091,0.2950,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0366,3.1876,-1.0000) mvmt=(0.2950,0.3091,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.4984,3.1876,0.5000) mvmt=(0.2950,0.3091,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3386,1.0924,0.4925) mvmt=(0.2837,-0.3196,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8848,1.5006,0.4950) mvmt=(0.2837,-0.3196,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.4984,3.1876,-0.2700) mvmt=(0.2950,0.3091,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(5.4984,3.1876,-0.2700) out=(5.4984,3.1876,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(125.002,8.312,93.750) lpos=(5.498,3.188,-0.270) lprev=(5.203,2.878,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(5.4984,3.1876,0.4800) mvmt=(0.2950,0.3091,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.002,8.312,94.500) lpos=(5.498,3.188,0.480) lprev=(5.203,2.878,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5623,4.0994,-0.9003) mvmt=(-0.3091,0.2950,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4127,3.8594,-1.0053) mvmt=(-0.3091,0.2950,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4127,1.6481,-2.3553) mvmt=(-0.3091,0.2950,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0366,3.1876,-1.0000) mvmt=(0.2950,0.3091,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(5.4984,3.1876,0.5000) mvmt=(0.2950,0.3091,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3386,1.0924,0.4925) mvmt=(0.2837,-0.3196,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8848,1.5006,0.4950) mvmt=(0.2837,-0.3196,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.7715,3.5286,0.4800) mvmt=(0.2731,0.3410,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.7715,3.5286,0.4800) mvmt=(0.2731,0.3410,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(124.729,7.971,94.500) lpos=(5.771,3.529,0.480) lprev=(5.498,3.188,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9034,4.3725,-0.9003) mvmt=(-0.3410,0.2731,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0716,4.1325,-1.0053) mvmt=(-0.3410,0.2731,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0716,1.9212,-2.3553) mvmt=(-0.3410,0.2731,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.8300,3.2598,0.4800) mvmt=(0.3316,0.0722,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(124.670,8.240,94.500) lpos=(5.830,3.260,0.480) lprev=(5.498,3.188,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6345,4.4310,-0.9003) mvmt=(-0.0722,0.3316,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3405,4.1910,-1.0053) mvmt=(-0.0722,0.3316,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3405,1.9798,-2.3553) mvmt=(-0.0722,0.3316,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2950,3.2598,-1.0000) mvmt=(0.3316,0.0722,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.8300,3.2598,0.5000) mvmt=(0.3316,0.0722,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2941,0.7559,0.4925) mvmt=(0.0446,-0.3365,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9294,1.1641,0.4950) mvmt=(0.0446,-0.3365,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(124.729,7.971,94.500) lpos=(5.771,3.529,0.480) lprev=(5.498,3.188,0.480) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(5.4984,3.5286,0.4800) mvmt=(0.0000,0.3410,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.002,7.971,94.500) lpos=(5.498,3.529,0.480) lprev=(5.498,3.188,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9034,4.0994,-0.9003) mvmt=(-0.3410,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0716,3.8594,-1.0053) mvmt=(-0.3410,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0716,1.6481,-2.3553) mvmt=(-0.3410,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.4255,3.2039,0.4800) mvmt=(-0.0729,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.075,8.296,94.500) lpos=(5.425,3.204,0.480) lprev=(5.498,3.188,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5787,4.0265,-0.9003) mvmt=(-0.0164,-0.0729,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3963,3.7865,-1.0053) mvmt=(-0.0164,-0.0729,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3963,1.5752,-2.3553) mvmt=(-0.0164,-0.0729,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1095,3.2039,-1.0000) mvmt=(-0.0729,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.4255,3.2039,0.5000) mvmt=(-0.0729,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3163,1.1637,0.4925) mvmt=(0.0223,0.0713,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9072,1.5719,0.4950) mvmt=(0.0223,0.0713,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.4255,3.2039,-0.2700) mvmt=(-0.0729,0.0164,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(5.4255,3.2039,-0.2700) out=(5.4255,3.2039,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(125.075,8.296,93.750) lpos=(5.425,3.204,-0.270) lprev=(5.498,3.188,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(5.4255,3.2039,0.4800) mvmt=(-0.0729,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.075,8.296,94.500) lpos=(5.425,3.204,0.480) lprev=(5.498,3.188,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5787,4.0265,-0.9003) mvmt=(-0.0164,-0.0729,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3963,3.7865,-1.0053) mvmt=(-0.0164,-0.0729,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3963,1.5752,-2.3553) mvmt=(-0.0164,-0.0729,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1095,3.2039,-1.0000) mvmt=(-0.0729,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(5.4255,3.2039,0.5000) mvmt=(-0.0729,0.0164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3163,1.1637,0.4925) mvmt=(0.0223,0.0713,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9072,1.5719,0.4950) mvmt=(0.0223,0.0713,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.5779,3.1697,0.4800) mvmt=(0.1524,-0.0342,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.5779,3.1697,0.4800) mvmt=(0.1524,-0.0342,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(124.922,8.330,94.500) lpos=(5.578,3.170,0.480) lprev=(5.425,3.204,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5445,4.1789,-0.9003) mvmt=(0.0342,0.1524,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4305,3.9389,-1.0053) mvmt=(0.0342,0.1524,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4305,1.7276,-2.3553) mvmt=(0.0342,0.1524,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0429,3.1697,-1.0000) mvmt=(0.1524,-0.0342,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.5779,3.1697,0.5000) mvmt=(0.1524,-0.0342,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3630,1.0146,0.4925) mvmt=(-0.0467,-0.1491,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8605,1.4228,0.4950) mvmt=(-0.0467,-0.1491,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(124.922,8.330,94.500) lpos=(5.578,3.170,0.480) lprev=(5.425,3.204,0.480) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(5.4255,3.1697,0.4800) mvmt=(0.0000,-0.0342,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.075,8.330,94.500) lpos=(5.425,3.170,0.480) lprev=(5.425,3.204,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5445,4.0265,-0.9003) mvmt=(0.0342,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4305,3.7865,-1.0053) mvmt=(0.0342,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4305,1.5752,-2.3553) mvmt=(0.0342,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1095,3.1697,-1.0000) mvmt=(0.0000,-0.0342,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.4255,3.1697,0.5000) mvmt=(0.0000,-0.0342,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3504,1.1665,0.4925) mvmt=(-0.0341,0.0028,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8731,1.5747,0.4950) mvmt=(-0.0341,0.0028,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.4255,3.1697,-0.2700) mvmt=(0.0000,-0.0342,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(5.4255,3.1697,-0.2700) out=(5.4255,3.1697,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(125.075,8.330,93.750) lpos=(5.425,3.170,-0.270) lprev=(5.425,3.204,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(5.4255,3.1697,0.4800) mvmt=(0.0000,-0.0342,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.075,8.330,94.500) lpos=(5.425,3.170,0.480) lprev=(5.425,3.204,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5445,4.0265,-0.9003) mvmt=(0.0342,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4305,3.7865,-1.0053) mvmt=(0.0342,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4305,1.5752,-2.3553) mvmt=(0.0342,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1095,3.1697,-1.0000) mvmt=(0.0000,-0.0342,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(5.4255,3.1697,0.5000) mvmt=(0.0000,-0.0342,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3504,1.1665,0.4925) mvmt=(-0.0341,0.0028,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8731,1.5747,0.4950) mvmt=(-0.0341,0.0028,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.4255,3.5521,0.4800) mvmt=(0.0000,0.3824,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.075,7.948,94.500) lpos=(5.425,3.552,0.480) lprev=(5.425,3.170,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9268,4.0265,-0.9003) mvmt=(-0.3824,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0482,3.7865,-1.0053) mvmt=(-0.3824,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0482,1.5752,-2.3553) mvmt=(-0.3824,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.3046,3.2128,0.4800) mvmt=(-0.1208,0.0430,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.195,8.287,94.500) lpos=(5.305,3.213,0.480) lprev=(5.425,3.170,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5875,3.9056,-0.9003) mvmt=(-0.0430,-0.1208,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3875,3.6656,-1.0053) mvmt=(-0.0430,-0.1208,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3875,1.4544,-2.3553) mvmt=(-0.0430,-0.1208,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2304,3.2128,-1.0000) mvmt=(-0.1208,0.0430,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.3046,3.2128,0.5000) mvmt=(-0.1208,0.0430,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2975,1.2834,0.4925) mvmt=(0.0529,0.1169,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9260,1.6916,0.4950) mvmt=(0.0529,0.1169,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.3046,3.2128,-0.2700) mvmt=(-0.1208,0.0430,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(5.3046,3.2128,-0.2700) out=(5.3046,3.2128,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(125.195,8.287,93.750) lpos=(5.305,3.213,-0.270) lprev=(5.425,3.170,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(5.3046,3.2128,0.4800) mvmt=(-0.1208,0.0430,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.195,8.287,94.500) lpos=(5.305,3.213,0.480) lprev=(5.425,3.170,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5875,3.9056,-0.9003) mvmt=(-0.0430,-0.1208,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3875,3.6656,-1.0053) mvmt=(-0.0430,-0.1208,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3875,1.4544,-2.3553) mvmt=(-0.0430,-0.1208,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2304,3.2128,-1.0000) mvmt=(-0.1208,0.0430,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(5.3046,3.2128,0.5000) mvmt=(-0.1208,0.0430,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2975,1.2834,0.4925) mvmt=(0.0529,0.1169,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9260,1.6916,0.4950) mvmt=(0.0529,0.1169,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.3349,3.2020,0.4800) mvmt=(0.0303,-0.0108,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.165,8.298,94.500) lpos=(5.335,3.202,0.480) lprev=(5.305,3.213,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5767,3.9359,-0.9003) mvmt=(0.0108,0.0303,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3983,3.6959,-1.0053) mvmt=(0.0108,0.0303,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3983,1.4846,-2.3553) mvmt=(0.0108,0.0303,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2001,3.2020,-1.0000) mvmt=(0.0303,-0.0108,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.3349,3.2020,0.5000) mvmt=(0.0303,-0.0108,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3107,1.2541,0.4925) mvmt=(-0.0132,-0.0293,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9127,1.6623,0.4950) mvmt=(-0.0132,-0.0293,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.3349,3.2020,-0.2700) mvmt=(0.0303,-0.0108,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(5.3349,3.2020,-0.2700) out=(5.3349,3.2020,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(125.165,8.298,93.750) lpos=(5.335,3.202,-0.270) lprev=(5.305,3.213,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(5.3349,3.2020,0.4800) mvmt=(0.0303,-0.0108,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.165,8.298,94.500) lpos=(5.335,3.202,0.480) lprev=(5.305,3.213,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5767,3.9359,-0.9003) mvmt=(0.0108,0.0303,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3983,3.6959,-1.0053) mvmt=(0.0108,0.0303,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3983,1.4846,-2.3553) mvmt=(0.0108,0.0303,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2001,3.2020,-1.0000) mvmt=(0.0303,-0.0108,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(5.3349,3.2020,0.5000) mvmt=(0.0303,-0.0108,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3107,1.2541,0.4925) mvmt=(-0.0132,-0.0293,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9127,1.6623,0.4950) mvmt=(-0.0132,-0.0293,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.4700,3.5794,0.4800) mvmt=(0.1351,0.3774,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.030,7.921,94.500) lpos=(5.470,3.579,0.480) lprev=(5.335,3.202,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9541,4.0710,-0.9003) mvmt=(-0.3774,0.1351,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0209,3.8310,-1.0053) mvmt=(-0.3774,0.1351,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0209,1.6197,-2.3553) mvmt=(-0.3774,0.1351,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.3568,3.1955,0.4800) mvmt=(0.0219,-0.0065,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.143,8.304,94.500) lpos=(5.357,3.196,0.480) lprev=(5.335,3.202,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5703,3.9578,-0.9003) mvmt=(0.0065,0.0219,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4047,3.7178,-1.0053) mvmt=(0.0065,0.0219,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4047,1.5066,-2.3553) mvmt=(0.0065,0.0219,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1782,3.1955,-1.0000) mvmt=(0.0219,-0.0065,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.3568,3.1955,0.5000) mvmt=(0.0219,-0.0065,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3190,1.2328,0.4925) mvmt=(-0.0083,-0.0213,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9045,1.6410,0.4950) mvmt=(-0.0083,-0.0213,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.3568,3.1955,-0.2700) mvmt=(0.0219,-0.0065,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(5.3568,3.1955,-0.2700) out=(5.3568,3.1955,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(125.143,8.304,93.750) lpos=(5.357,3.196,-0.270) lprev=(5.335,3.202,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(5.3568,3.1955,0.4800) mvmt=(0.0219,-0.0065,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.143,8.304,94.500) lpos=(5.357,3.196,0.480) lprev=(5.335,3.202,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5703,3.9578,-0.9003) mvmt=(0.0065,0.0219,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4047,3.7178,-1.0053) mvmt=(0.0065,0.0219,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4047,1.5066,-2.3553) mvmt=(0.0065,0.0219,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1782,3.1955,-1.0000) mvmt=(0.0219,-0.0065,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(5.3568,3.1955,0.5000) mvmt=(0.0219,-0.0065,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3190,1.2328,0.4925) mvmt=(-0.0083,-0.0213,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9045,1.6410,0.4950) mvmt=(-0.0083,-0.0213,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.3485,3.1980,0.4800) mvmt=(-0.0083,0.0025,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.152,8.302,94.500) lpos=(5.348,3.198,0.480) lprev=(5.357,3.196,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5727,3.9495,-0.9003) mvmt=(-0.0025,-0.0083,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4023,3.7095,-1.0053) mvmt=(-0.0025,-0.0083,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4023,1.4982,-2.3553) mvmt=(-0.0025,-0.0083,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1865,3.1980,-1.0000) mvmt=(-0.0083,0.0025,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.3485,3.1980,0.5000) mvmt=(-0.0083,0.0025,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3159,1.2409,0.4925) mvmt=(0.0031,0.0081,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9076,1.6491,0.4950) mvmt=(0.0031,0.0081,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.3485,3.1980,-0.2700) mvmt=(-0.0083,0.0025,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(5.3485,3.1980,-0.2700) out=(5.3485,3.1980,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(125.152,8.302,93.750) lpos=(5.348,3.198,-0.270) lprev=(5.357,3.196,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(5.3485,3.1980,0.4800) mvmt=(-0.0083,0.0025,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.152,8.302,94.500) lpos=(5.348,3.198,0.480) lprev=(5.357,3.196,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5727,3.9495,-0.9003) mvmt=(-0.0025,-0.0083,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4023,3.7095,-1.0053) mvmt=(-0.0025,-0.0083,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4023,1.4982,-2.3553) mvmt=(-0.0025,-0.0083,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1865,3.1980,-1.0000) mvmt=(-0.0083,0.0025,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(5.3485,3.1980,0.5000) mvmt=(-0.0083,0.0025,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3159,1.2409,0.4925) mvmt=(0.0031,0.0081,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9076,1.6491,0.4950) mvmt=(0.0031,0.0081,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.4222,3.5917,0.4800) mvmt=(0.0737,0.3937,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.078,7.908,94.500) lpos=(5.422,3.592,0.480) lprev=(5.348,3.198,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9664,4.0232,-0.9003) mvmt=(-0.3937,0.0737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0086,3.7832,-1.0053) mvmt=(-0.3937,0.0737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0086,1.5719,-2.3553) mvmt=(-0.3937,0.0737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2800,3.2245,0.4800) mvmt=(-0.0685,0.0266,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.220,8.275,94.500) lpos=(5.280,3.225,0.480) lprev=(5.348,3.198,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5993,3.8810,-0.9003) mvmt=(-0.0266,-0.0685,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3757,3.6410,-1.0053) mvmt=(-0.0265,-0.0685,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3757,1.4297,-2.3553) mvmt=(-0.0266,-0.0685,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2550,3.2245,-1.0000) mvmt=(-0.0685,0.0266,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2800,3.2245,0.5000) mvmt=(-0.0685,0.0266,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2837,1.3070,0.4925) mvmt=(0.0321,0.0661,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9397,1.7152,0.4950) mvmt=(0.0321,0.0661,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2800,3.2245,-0.2700) mvmt=(-0.0685,0.0266,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(5.2800,3.2245,-0.2700) out=(5.2800,3.2245,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(125.220,8.275,93.750) lpos=(5.280,3.225,-0.270) lprev=(5.348,3.198,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(5.2800,3.2245,0.4800) mvmt=(-0.0685,0.0266,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.220,8.275,94.500) lpos=(5.280,3.225,0.480) lprev=(5.348,3.198,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5993,3.8810,-0.9003) mvmt=(-0.0266,-0.0685,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3757,3.6410,-1.0053) mvmt=(-0.0265,-0.0685,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3757,1.4297,-2.3553) mvmt=(-0.0266,-0.0685,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2550,3.2245,-1.0000) mvmt=(-0.0685,0.0266,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(5.2800,3.2245,0.5000) mvmt=(-0.0685,0.0266,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2837,1.3070,0.4925) mvmt=(0.0321,0.0661,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9397,1.7152,0.4950) mvmt=(0.0321,0.0661,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.1781,3.2640,0.4800) mvmt=(-0.1019,0.0395,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.322,8.236,94.500) lpos=(5.178,3.264,0.480) lprev=(5.280,3.225,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6388,3.7791,-0.9003) mvmt=(-0.0395,-0.1019,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3362,3.5391,-1.0053) mvmt=(-0.0395,-0.1019,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3362,1.3278,-2.3553) mvmt=(-0.0395,-0.1019,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3569,3.2640,-1.0000) mvmt=(-0.1019,0.0395,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.1781,3.2640,0.5000) mvmt=(-0.1019,0.0395,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2360,1.4052,0.4925) mvmt=(0.0478,0.0983,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9875,1.8135,0.4950) mvmt=(0.0478,0.0983,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.1781,3.2640,-0.2700) mvmt=(-0.1019,0.0395,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(5.1781,3.2640,-0.2700) out=(5.1781,3.2640,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(125.322,8.236,93.750) lpos=(5.178,3.264,-0.270) lprev=(5.280,3.225,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(5.1781,3.2640,0.4800) mvmt=(-0.1019,0.0395,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.322,8.236,94.500) lpos=(5.178,3.264,0.480) lprev=(5.280,3.225,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6388,3.7791,-0.9003) mvmt=(-0.0395,-0.1019,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3362,3.5391,-1.0053) mvmt=(-0.0395,-0.1019,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3362,1.3278,-2.3553) mvmt=(-0.0395,-0.1019,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3569,3.2640,-1.0000) mvmt=(-0.1019,0.0395,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(5.1781,3.2640,0.5000) mvmt=(-0.1019,0.0395,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2360,1.4052,0.4925) mvmt=(0.0478,0.0983,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9875,1.8135,0.4950) mvmt=(0.0478,0.0983,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(5.1865,3.6780,0.4800) mvmt=(0.0084,0.4139,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.313,7.822,94.500) lpos=(5.187,3.678,0.480) lprev=(5.178,3.264,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0527,3.7875,-0.9003) mvmt=(-0.4139,0.0084,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0777,3.5475,-1.0053) mvmt=(-0.4139,0.0084,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0777,1.3363,-2.3553) mvmt=(-0.4139,0.0084,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9756,3.4588,0.4800) mvmt=(-0.2024,0.1948,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.524,8.041,94.500) lpos=(4.976,3.459,0.480) lprev=(5.178,3.264,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8336,3.5766,-0.9003) mvmt=(-0.1948,-0.2024,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1414,3.3366,-1.0053) mvmt=(-0.1948,-0.2024,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1414,1.1254,-2.3553) mvmt=(-0.1948,-0.2024,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5594,3.4588,-1.0000) mvmt=(-0.2024,0.1948,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9756,3.4588,0.5000) mvmt=(-0.2024,0.1948,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0251,1.5909,0.4925) mvmt=(0.2109,0.1856,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1984,1.9991,0.4950) mvmt=(0.2109,0.1856,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9756,3.4588,-0.2700) mvmt=(-0.2024,0.1948,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.9756,3.4588,-0.2700) out=(4.9756,3.4588,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(125.524,8.041,93.750) lpos=(4.976,3.459,-0.270) lprev=(5.178,3.264,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.9756,3.4588,0.4800) mvmt=(-0.2024,0.1948,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.524,8.041,94.500) lpos=(4.976,3.459,0.480) lprev=(5.178,3.264,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8336,3.5766,-0.9003) mvmt=(-0.1948,-0.2024,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1414,3.3366,-1.0053) mvmt=(-0.1948,-0.2024,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1414,1.1254,-2.3553) mvmt=(-0.1948,-0.2024,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5594,3.4588,-1.0000) mvmt=(-0.2024,0.1948,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.9756,3.4588,0.5000) mvmt=(-0.2024,0.1948,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0251,1.5909,0.4925) mvmt=(0.2109,0.1856,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1984,1.9991,0.4950) mvmt=(0.2109,0.1856,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.7573,3.6689,0.4800) mvmt=(-0.2183,0.2101,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.743,7.831,94.500) lpos=(4.757,3.669,0.480) lprev=(4.976,3.459,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0437,3.3583,-0.9003) mvmt=(-0.2101,-0.2183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0687,3.1183,-1.0053) mvmt=(-0.2101,-0.2183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0687,0.9071,-2.3553) mvmt=(-0.2101,-0.2183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7777,3.6689,-1.0000) mvmt=(-0.2183,0.2101,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7573,3.6689,0.5000) mvmt=(-0.2183,0.2101,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2024,1.7910,0.4925) mvmt=(0.2274,0.2002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4259,2.1993,0.4950) mvmt=(0.2274,0.2002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7573,3.6689,-0.2700) mvmt=(-0.2183,0.2101,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.7573,3.6689,-0.2700) out=(4.7573,3.6689,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(125.743,7.831,93.750) lpos=(4.757,3.669,-0.270) lprev=(4.976,3.459,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.7573,3.6689,0.4800) mvmt=(-0.2183,0.2101,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.743,7.831,94.500) lpos=(4.757,3.669,0.480) lprev=(4.976,3.459,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0437,3.3583,-0.9003) mvmt=(-0.2101,-0.2183,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0687,3.1183,-1.0053) mvmt=(-0.2101,-0.2183,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0687,0.9071,-2.3553) mvmt=(-0.2101,-0.2183,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7777,3.6689,-1.0000) mvmt=(-0.2183,0.2101,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7573,3.6689,0.5000) mvmt=(-0.2183,0.2101,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2024,1.7910,0.4925) mvmt=(0.2274,0.2002,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4259,2.1993,0.4950) mvmt=(0.2274,0.2002,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.6998,4.0710,0.4800) mvmt=(-0.0575,0.4020,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6998,4.0710,0.4800) mvmt=(-0.0575,0.4020,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.800,7.429,94.500) lpos=(4.700,4.071,0.480) lprev=(4.757,3.669,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.4457,3.3008,-0.9003) mvmt=(-0.4020,-0.0575,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4707,3.0608,-1.0053) mvmt=(-0.4020,-0.0575,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4707,0.8495,-2.3553) mvmt=(-0.4020,-0.0575,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8352,4.0710,-1.0000) mvmt=(-0.0575,0.4020,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6998,4.0710,0.5000) mvmt=(-0.0575,0.4020,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.2642,1.6448,0.4925) mvmt=(0.0454,-0.4036,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6078,1.8151,0.4925) mvmt=(0.4054,0.0241,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8313,2.2234,0.4950) mvmt=(0.4054,0.0241,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.800,7.429,94.500) lpos=(4.700,4.071,0.480) lprev=(4.757,3.669,0.480) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(4.6998,3.6689,0.4800) mvmt=(-0.0575,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.800,7.831,94.500) lpos=(4.700,3.669,0.480) lprev=(4.757,3.669,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0437,3.3008,-0.9003) mvmt=(0.0000,-0.0575,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0687,3.0608,-1.0053) mvmt=(0.0000,-0.0575,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0687,0.8495,-2.3553) mvmt=(0.0000,-0.0575,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8352,3.6689,-1.0000) mvmt=(-0.0575,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2071,1.8484,0.4925) mvmt=(0.0048,0.0574,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4306,2.2566,0.4950) mvmt=(0.0048,0.0574,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6998,3.6689,0.5000) mvmt=(-0.0575,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6998,3.6689,-0.2700) mvmt=(-0.0575,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.6998,3.6689,-0.2700) out=(4.6998,3.6689,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(125.800,7.831,93.750) lpos=(4.700,3.669,-0.270) lprev=(4.757,3.669,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.6998,3.6689,0.4800) mvmt=(-0.0575,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(125.800,7.831,94.500) lpos=(4.700,3.669,0.480) lprev=(4.757,3.669,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0437,3.3008,-0.9003) mvmt=(0.0000,-0.0575,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0687,3.0608,-1.0053) mvmt=(0.0000,-0.0575,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0687,0.8495,-2.3553) mvmt=(0.0000,-0.0575,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8352,3.6689,-1.0000) mvmt=(-0.0575,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2071,1.8484,0.4925) mvmt=(0.0048,0.0574,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4306,2.2566,0.4950) mvmt=(0.0048,0.0574,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.6998,3.6689,0.5000) mvmt=(-0.0575,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.3011,3.6689,0.4800) mvmt=(-0.3987,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.199,7.831,94.500) lpos=(4.301,3.669,0.480) lprev=(4.700,3.669,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0437,2.9021,-0.9003) mvmt=(-0.0000,-0.3987,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0687,2.6621,-1.0053) mvmt=(-0.0000,-0.3987,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0687,0.4508,-2.3553) mvmt=(-0.0000,-0.3987,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2339,3.6689,-1.0000) mvmt=(-0.3987,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3011,3.6689,0.5000) mvmt=(-0.3987,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8535,2.0346,0.4925) mvmt=(0.3985,-0.0120,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2401,2.2458,0.4925) mvmt=(0.0330,0.3974,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4636,2.6540,0.4950) mvmt=(0.0330,0.3974,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3011,3.6689,-0.2700) mvmt=(-0.3987,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.3011,3.6689,-0.2700) out=(4.3011,3.6689,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.199,7.831,93.750) lpos=(4.301,3.669,-0.270) lprev=(4.700,3.669,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.3011,3.6689,0.4800) mvmt=(-0.3987,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.199,7.831,94.500) lpos=(4.301,3.669,0.480) lprev=(4.700,3.669,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0437,2.9021,-0.9003) mvmt=(-0.0000,-0.3987,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0687,2.6621,-1.0053) mvmt=(-0.0000,-0.3987,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0687,0.4508,-2.3553) mvmt=(-0.0000,-0.3987,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2339,3.6689,-1.0000) mvmt=(-0.3987,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3011,3.6689,0.5000) mvmt=(-0.3987,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8535,2.0346,0.4925) mvmt=(0.3985,-0.0120,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2401,2.2458,0.4925) mvmt=(0.0330,0.3974,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4636,2.6540,0.4950) mvmt=(0.0330,0.3974,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.9043,3.7754,0.4800) mvmt=(-0.3968,0.1064,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.596,7.725,94.500) lpos=(3.904,3.775,0.480) lprev=(4.301,3.669,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1501,2.5053,-0.9003) mvmt=(-0.1064,-0.3968,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1751,2.2653,-1.0053) mvmt=(-0.1064,-0.3968,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1751,0.0540,-2.3553) mvmt=(-0.1064,-0.3968,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6307,3.7754,-1.0000) mvmt=(-0.3968,0.1064,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4601,1.9163,0.4925) mvmt=(0.3934,-0.1183,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3790,2.6324,0.4925) mvmt=(0.1389,0.3866,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6025,3.0406,0.4950) mvmt=(0.1389,0.3866,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9043,3.7754,0.5000) mvmt=(-0.3968,0.1064,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9043,3.7754,-0.2700) mvmt=(-0.3968,0.1064,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.9043,3.7754,-0.2700) out=(3.9043,3.7754,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.596,7.725,93.750) lpos=(3.904,3.775,-0.270) lprev=(4.301,3.669,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.9043,3.7754,0.4800) mvmt=(-0.3968,0.1064,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.596,7.725,94.500) lpos=(3.904,3.775,0.480) lprev=(4.301,3.669,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1501,2.5053,-0.9003) mvmt=(-0.1064,-0.3968,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1751,2.2653,-1.0053) mvmt=(-0.1064,-0.3968,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1751,0.0540,-2.3553) mvmt=(-0.1064,-0.3968,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6307,3.7754,-1.0000) mvmt=(-0.3968,0.1064,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.4601,1.9163,0.4925) mvmt=(0.3934,-0.1183,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3790,2.6324,0.4925) mvmt=(0.1389,0.3866,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6025,3.0406,0.4950) mvmt=(0.1389,0.3866,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9043,3.7754,0.5000) mvmt=(-0.3968,0.1064,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.5031,3.8487,0.4800) mvmt=(-0.4012,0.0734,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.997,7.651,94.500) lpos=(3.503,3.849,0.480) lprev=(3.904,3.775,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2235,2.1041,-0.9003) mvmt=(-0.0734,-0.4012,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2485,1.8641,-1.0053) mvmt=(-0.0734,-0.4012,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2485,-0.3471,-2.3553) mvmt=(-0.0734,-0.4012,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0319,3.8487,-1.0000) mvmt=(-0.4012,0.0734,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0613,1.8308,0.4925) mvmt=(0.3988,-0.0855,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4853,3.0261,0.4925) mvmt=(0.1063,0.3937,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7088,3.4343,0.4950) mvmt=(0.1063,0.3937,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5031,3.8487,0.5000) mvmt=(-0.4012,0.0734,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5031,3.8487,-0.2700) mvmt=(-0.4012,0.0734,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.5031,3.8487,-0.2700) out=(3.5031,3.8487,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.997,7.651,93.750) lpos=(3.503,3.849,-0.270) lprev=(3.904,3.775,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.5031,3.8487,0.4800) mvmt=(-0.4012,0.0734,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.997,7.651,94.500) lpos=(3.503,3.849,0.480) lprev=(3.904,3.775,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2235,2.1041,-0.9003) mvmt=(-0.0734,-0.4012,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2485,1.8641,-1.0053) mvmt=(-0.0734,-0.4012,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2485,-0.3471,-2.3553) mvmt=(-0.0734,-0.4012,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0319,3.8487,-1.0000) mvmt=(-0.4012,0.0734,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0613,1.8308,0.4925) mvmt=(0.3988,-0.0855,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4853,3.0261,0.4925) mvmt=(0.1063,0.3937,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7088,3.4343,0.4950) mvmt=(0.1063,0.3937,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5031,3.8487,0.5000) mvmt=(-0.4012,0.0734,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.0794,3.8896,0.4800) mvmt=(-0.4237,0.0409,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.421,7.610,94.500) lpos=(3.079,3.890,0.480) lprev=(3.503,3.849,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2644,1.6804,-0.9003) mvmt=(-0.0409,-0.4237,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2894,1.4404,-1.0053) mvmt=(-0.0409,-0.4237,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2894,-0.7709,-2.3553) mvmt=(-0.0409,-0.4237,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4556,3.8896,-1.0000) mvmt=(-0.4237,0.0409,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6391,1.7772,0.4925) mvmt=(0.4223,-0.0537,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5611,3.4450,0.4925) mvmt=(0.0758,0.4189,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7846,3.8532,0.4950) mvmt=(0.0758,0.4189,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0794,3.8896,0.5000) mvmt=(-0.4237,0.0409,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0794,3.8896,-0.2700) mvmt=(-0.4237,0.0409,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.0794,3.8896,-0.2700) out=(3.0794,3.8896,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(127.421,7.610,93.750) lpos=(3.079,3.890,-0.270) lprev=(3.503,3.849,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.0794,3.8896,0.4800) mvmt=(-0.4237,0.0409,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.421,7.610,94.500) lpos=(3.079,3.890,0.480) lprev=(3.503,3.849,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2644,1.6804,-0.9003) mvmt=(-0.0409,-0.4237,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2894,1.4404,-1.0053) mvmt=(-0.0409,-0.4237,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2894,-0.7709,-2.3553) mvmt=(-0.0409,-0.4237,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4556,3.8896,-1.0000) mvmt=(-0.4237,0.0409,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6391,1.7772,0.4925) mvmt=(0.4223,-0.0537,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5611,3.4450,0.4925) mvmt=(0.0758,0.4189,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7846,3.8532,0.4950) mvmt=(0.0758,0.4189,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0794,3.8896,0.5000) mvmt=(-0.4237,0.0409,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.6798,3.8963,0.4800) mvmt=(-0.3996,0.0067,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.820,7.604,94.500) lpos=(2.680,3.896,0.480) lprev=(3.079,3.890,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2711,1.2808,-0.9003) mvmt=(-0.0067,-0.3996,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2961,1.0408,-1.0053) mvmt=(-0.0067,-0.3996,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2961,-1.1705,-2.3553) mvmt=(-0.0067,-0.3996,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8552,3.8963,-1.0000) mvmt=(-0.3996,0.0067,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2398,1.7584,0.4925) mvmt=(0.3993,-0.0188,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6008,3.8427,0.4925) mvmt=(0.0397,0.3977,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6798,3.8963,0.5000) mvmt=(-0.3996,0.0067,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6798,3.8963,-0.2700) mvmt=(-0.3996,0.0067,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.6798,3.8963,-0.2700) out=(2.6798,3.8963,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(127.820,7.604,93.750) lpos=(2.680,3.896,-0.270) lprev=(3.079,3.890,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.6798,3.8963,0.4800) mvmt=(-0.3996,0.0067,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.820,7.604,94.500) lpos=(2.680,3.896,0.480) lprev=(3.079,3.890,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2711,1.2808,-0.9003) mvmt=(-0.0067,-0.3996,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2961,1.0408,-1.0053) mvmt=(-0.0067,-0.3996,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2961,-1.1705,-2.3553) mvmt=(-0.0067,-0.3996,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.8552,3.8963,-1.0000) mvmt=(-0.3996,0.0067,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2398,1.7584,0.4925) mvmt=(0.3993,-0.0188,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6008,3.8427,0.4925) mvmt=(0.0397,0.3977,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6798,3.8963,0.5000) mvmt=(-0.3996,0.0067,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.2725,3.8701,0.4800) mvmt=(-0.4072,-0.0263,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.227,7.630,94.500) lpos=(2.273,3.870,0.480) lprev=(2.680,3.896,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2448,0.8735,-0.9003) mvmt=(0.0263,-0.4072,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2698,0.6335,-1.0053) mvmt=(0.0263,-0.4072,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2698,-1.5777,-2.3553) mvmt=(0.0263,-0.4072,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2625,3.8701,-1.0000) mvmt=(-0.4072,-0.0263,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1680,1.7723,0.4925) mvmt=(0.4078,0.0139,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2725,3.8701,0.5000) mvmt=(-0.4072,-0.0263,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2725,3.8701,-0.2700) mvmt=(-0.4072,-0.0263,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.2725,3.8701,-0.2700) out=(2.2725,3.8701,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(128.227,7.630,93.750) lpos=(2.273,3.870,-0.270) lprev=(2.680,3.896,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.2725,3.8701,0.4800) mvmt=(-0.4072,-0.0263,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.227,7.630,94.500) lpos=(2.273,3.870,0.480) lprev=(2.680,3.896,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2448,0.8735,-0.9003) mvmt=(0.0263,-0.4072,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2698,0.6335,-1.0053) mvmt=(0.0263,-0.4072,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2698,-1.5777,-2.3553) mvmt=(0.0263,-0.4072,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2625,3.8701,-1.0000) mvmt=(-0.4072,-0.0263,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1680,1.7723,0.4925) mvmt=(0.4078,0.0139,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2725,3.8701,0.5000) mvmt=(-0.4072,-0.0263,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.8664,3.8104,0.4800) mvmt=(-0.4061,-0.0597,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,7.690,94.500) lpos=(1.866,3.810,0.480) lprev=(2.273,3.870,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1851,0.4674,-0.9003) mvmt=(0.0597,-0.4061,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2101,0.2274,-1.0053) mvmt=(0.0597,-0.4061,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2101,-1.9838,-2.3553) mvmt=(0.0597,-0.4061,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,3.8104,-1.0000) mvmt=(-0.4061,-0.0597,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5758,1.8198,0.4925) mvmt=(0.4077,0.0474,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,3.8104,0.5000) mvmt=(-0.4061,-0.0597,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,3.8104,-0.2700) mvmt=(-0.4061,-0.0597,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(1.8664,3.8104,-0.2700) out=(1.8664,3.8104,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,7.690,93.750) lpos=(1.866,3.810,-0.270) lprev=(2.273,3.870,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(1.8664,3.8104,0.4800) mvmt=(-0.4061,-0.0597,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,7.690,94.500) lpos=(1.866,3.810,0.480) lprev=(2.273,3.870,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1851,0.4674,-0.9003) mvmt=(0.0597,-0.4061,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2101,0.2274,-1.0053) mvmt=(0.0597,-0.4061,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2101,-1.9838,-2.3553) mvmt=(0.0597,-0.4061,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,3.8104,-1.0000) mvmt=(-0.4061,-0.0597,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5758,1.8198,0.4925) mvmt=(0.4077,0.0474,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,3.8104,0.5000) mvmt=(-0.4061,-0.0597,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.4494,3.7122,0.4800) mvmt=(-0.4170,-0.0982,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.051,7.788,94.500) lpos=(1.449,3.712,0.480) lprev=(1.866,3.810,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0870,0.0504,-0.9003) mvmt=(0.0982,-0.4170,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1120,-0.1896,-1.0053) mvmt=(0.0982,-0.4170,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4494,3.7122,0.4800) mvmt=(-0.4170,-0.0982,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.051,7.788,94.500) lpos=(1.449,3.712,0.480) lprev=(1.866,3.810,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0870,0.0504,-0.9003) mvmt=(0.0982,-0.4170,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1120,-0.1896,-1.0053) mvmt=(0.0982,-0.4170,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1120,-2.4008,-2.3553) mvmt=(0.0982,-0.4170,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.0856,3.7122,-1.0000) mvmt=(-0.4170,-0.0982,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9955,1.9053,0.4925) mvmt=(0.4198,0.0855,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4494,3.7122,0.5000) mvmt=(-0.4170,-0.0982,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,3.7122,0.4800) mvmt=(0.0000,-0.0982,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,7.788,94.500) lpos=(1.866,3.712,0.480) lprev=(1.866,3.810,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0870,0.4674,-0.9003) mvmt=(0.0982,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1120,0.2274,-1.0053) mvmt=(0.0982,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1120,-1.9838,-2.3553) mvmt=(0.0982,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5787,1.9179,0.4925) mvmt=(0.0030,0.0981,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,3.7122,0.5000) mvmt=(0.0000,-0.0982,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,3.7122,-0.2700) mvmt=(0.0000,-0.0982,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(1.8664,3.7122,-0.2700) out=(1.8664,3.7122,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,7.788,93.750) lpos=(1.866,3.712,-0.270) lprev=(1.866,3.810,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(1.8664,3.7122,0.4800) mvmt=(0.0000,-0.0982,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,7.788,94.500) lpos=(1.866,3.712,0.480) lprev=(1.866,3.810,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0870,0.4674,-0.9003) mvmt=(0.0982,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1120,0.2274,-1.0053) mvmt=(0.0982,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1120,-1.9838,-2.3553) mvmt=(0.0982,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5787,1.9179,0.4925) mvmt=(0.0030,0.0981,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,3.7122,0.5000) mvmt=(0.0000,-0.0982,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.8664,3.5763,0.4800) mvmt=(0.0000,-0.1359,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,7.924,94.500) lpos=(1.866,3.576,0.480) lprev=(1.866,3.712,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9511,0.4674,-0.9003) mvmt=(0.1359,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0239,0.2274,-1.0053) mvmt=(0.1359,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0239,-1.9838,-2.3553) mvmt=(0.1359,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,3.5763,-1.0000) mvmt=(0.0000,-0.1359,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5828,2.0537,0.4925) mvmt=(0.0041,0.1358,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,3.5763,0.5000) mvmt=(0.0000,-0.1359,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,3.5763,-0.2700) mvmt=(0.0000,-0.1359,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(1.8664,3.5763,-0.2700) out=(1.8664,3.5763,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,7.924,93.750) lpos=(1.866,3.576,-0.270) lprev=(1.866,3.712,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(1.8664,3.5763,0.4800) mvmt=(0.0000,-0.1359,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,7.924,94.500) lpos=(1.866,3.576,0.480) lprev=(1.866,3.712,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9511,0.4674,-0.9003) mvmt=(0.1359,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0239,0.2274,-1.0053) mvmt=(0.1359,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0239,-1.9838,-2.3553) mvmt=(0.1359,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,3.5763,-1.0000) mvmt=(0.0000,-0.1359,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5828,2.0537,0.4925) mvmt=(0.0041,0.1358,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,3.5763,0.5000) mvmt=(0.0000,-0.1359,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.4688,3.4065,0.4800) mvmt=(-0.3976,-0.1698,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.031,8.093,94.500) lpos=(1.469,3.407,0.480) lprev=(1.866,3.576,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7813,0.0698,-0.9003) mvmt=(0.1698,-0.3976,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1937,-0.1702,-1.0053) mvmt=(0.1698,-0.3976,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4688,3.4065,0.4800) mvmt=(-0.3976,-0.1698,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.031,8.093,94.500) lpos=(1.469,3.407,0.480) lprev=(1.866,3.576,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7813,0.0698,-0.9003) mvmt=(0.1698,-0.3976,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1937,-0.1702,-1.0053) mvmt=(0.1698,-0.3976,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1937,-2.3815,-2.3553) mvmt=(0.1698,-0.3976,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.0662,3.4065,-1.0000) mvmt=(-0.3976,-0.1698,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9854,2.2114,0.4925) mvmt=(0.4026,0.1578,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4688,3.4065,0.5000) mvmt=(-0.3976,-0.1698,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,3.4065,0.4800) mvmt=(0.0000,-0.1698,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.093,94.500) lpos=(1.866,3.407,0.480) lprev=(1.866,3.576,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7813,0.4674,-0.9003) mvmt=(0.1698,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1937,0.2274,-1.0053) mvmt=(0.1698,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1937,-1.9838,-2.3553) mvmt=(0.1698,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,3.4065,-1.0000) mvmt=(0.0000,-0.1698,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5880,2.2234,0.4925) mvmt=(0.0051,0.1698,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,3.4065,0.5000) mvmt=(0.0000,-0.1698,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,3.4065,-0.2700) mvmt=(0.0000,-0.1698,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(1.8664,3.4065,-0.2700) out=(1.8664,3.4065,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.093,93.750) lpos=(1.866,3.407,-0.270) lprev=(1.866,3.576,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(1.8664,3.4065,0.4800) mvmt=(0.0000,-0.1698,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.093,94.500) lpos=(1.866,3.407,0.480) lprev=(1.866,3.576,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7813,0.4674,-0.9003) mvmt=(0.1698,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1937,0.2274,-1.0053) mvmt=(0.1698,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1937,-1.9838,-2.3553) mvmt=(0.1698,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,3.4065,-1.0000) mvmt=(0.0000,-0.1698,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5880,2.2234,0.4925) mvmt=(0.0051,0.1698,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,3.4065,0.5000) mvmt=(0.0000,-0.1698,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.8664,3.1965,0.4800) mvmt=(0.0000,-0.2100,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.303,94.500) lpos=(1.866,3.197,0.480) lprev=(1.866,3.407,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5713,0.4674,-0.9003) mvmt=(0.2100,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4037,0.2274,-1.0053) mvmt=(0.2100,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4037,-1.9838,-2.3553) mvmt=(0.2100,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,3.1965,-1.0000) mvmt=(0.0000,-0.2100,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5943,2.4333,0.4925) mvmt=(0.0063,0.2099,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,3.1965,0.5000) mvmt=(0.0000,-0.2100,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,3.1965,-0.2700) mvmt=(0.0000,-0.2100,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(1.8664,3.1965,-0.2700) out=(1.8664,3.1965,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.303,93.750) lpos=(1.866,3.197,-0.270) lprev=(1.866,3.407,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(1.8664,3.1965,0.4800) mvmt=(0.0000,-0.2100,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.303,94.500) lpos=(1.866,3.197,0.480) lprev=(1.866,3.407,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5713,0.4674,-0.9003) mvmt=(0.2100,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4037,0.2274,-1.0053) mvmt=(0.2100,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4037,-1.9838,-2.3553) mvmt=(0.2100,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,3.1965,-1.0000) mvmt=(0.0000,-0.2100,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5943,2.4333,0.4925) mvmt=(0.0063,0.2099,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,3.1965,0.5000) mvmt=(0.0000,-0.2100,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.4904,2.9493,0.4800) mvmt=(-0.3761,-0.2472,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.010,8.551,94.500) lpos=(1.490,2.949,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3241,0.0914,-0.9003) mvmt=(0.2472,-0.3761,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4904,2.9493,0.4800) mvmt=(-0.3761,-0.2472,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.010,8.551,94.500) lpos=(1.490,2.949,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3241,0.0914,-0.9003) mvmt=(0.2472,-0.3761,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6509,-0.1486,-1.0053) mvmt=(0.2472,-0.3761,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6509,-2.3599,-2.3553) mvmt=(0.2472,-0.3761,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.0446,2.9493,-1.0000) mvmt=(-0.3761,-0.2472,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9776,2.6691,0.4925) mvmt=(0.3833,0.2358,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4904,2.9493,0.5000) mvmt=(-0.3761,-0.2472,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.9493,0.4800) mvmt=(0.0000,-0.2472,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.551,94.500) lpos=(1.866,2.949,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3241,0.4674,-0.9003) mvmt=(0.2472,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.9493,0.4800) mvmt=(0.0000,-0.2472,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.551,94.500) lpos=(1.866,2.949,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3241,0.4674,-0.9003) mvmt=(0.2472,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6509,0.2274,-1.0053) mvmt=(0.2472,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6509,-1.9838,-2.3553) mvmt=(0.2472,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,2.9493,-1.0000) mvmt=(0.0000,-0.2472,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6018,2.6804,0.4925) mvmt=(0.0075,0.2471,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.9493,0.5000) mvmt=(0.0000,-0.2472,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.9493,0.4800) mvmt=(0.0000,-0.2472,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.551,94.500) lpos=(1.866,2.949,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3241,0.4674,-0.9003) mvmt=(0.2472,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.9493,0.4800) mvmt=(0.0000,-0.2472,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.551,94.500) lpos=(1.866,2.949,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3241,0.4674,-0.9003) mvmt=(0.2472,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6509,0.2274,-1.0053) mvmt=(0.2472,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6509,-1.9838,-2.3553) mvmt=(0.2472,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,2.9493,-1.0000) mvmt=(0.0000,-0.2472,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6018,2.6804,0.4925) mvmt=(0.0075,0.2471,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.9493,0.5000) mvmt=(0.0000,-0.2472,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.8664,2.9431,0.4800) mvmt=(0.0000,-0.2534,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.557,94.500) lpos=(1.866,2.943,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3178,0.4674,-0.9003) mvmt=(0.2534,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.9431,0.4800) mvmt=(0.0000,-0.2534,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.557,94.500) lpos=(1.866,2.943,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3178,0.4674,-0.9003) mvmt=(0.2534,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6572,0.2274,-1.0053) mvmt=(0.2534,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6572,-1.9838,-2.3553) mvmt=(0.2534,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,2.9431,-1.0000) mvmt=(0.0000,-0.2534,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6020,2.6867,0.4925) mvmt=(0.0077,0.2533,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.9431,0.5000) mvmt=(0.0000,-0.2534,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.9431,0.4800) mvmt=(0.0000,-0.2534,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.557,94.500) lpos=(1.866,2.943,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3178,0.4674,-0.9003) mvmt=(0.2534,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.9431,0.4800) mvmt=(0.0000,-0.2534,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.557,94.500) lpos=(1.866,2.943,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3178,0.4674,-0.9003) mvmt=(0.2534,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6572,0.2274,-1.0053) mvmt=(0.2534,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6572,-1.9838,-2.3553) mvmt=(0.2534,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,2.9431,-1.0000) mvmt=(0.0000,-0.2534,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6020,2.6867,0.4925) mvmt=(0.0077,0.2533,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.9431,0.5000) mvmt=(0.0000,-0.2534,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.9431,0.4800) mvmt=(0.0000,-0.2534,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.557,94.500) lpos=(1.866,2.943,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3178,0.4674,-0.9003) mvmt=(0.2534,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.9431,0.4800) mvmt=(0.0000,-0.2534,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.557,94.500) lpos=(1.866,2.943,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3178,0.4674,-0.9003) mvmt=(0.2534,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6572,0.2274,-1.0053) mvmt=(0.2534,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6572,-1.9838,-2.3553) mvmt=(0.2534,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,2.9431,-1.0000) mvmt=(0.0000,-0.2534,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6020,2.6867,0.4925) mvmt=(0.0077,0.2533,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.9431,0.5000) mvmt=(0.0000,-0.2534,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.8664,2.9152,0.4800) mvmt=(0.0000,-0.2813,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.585,94.500) lpos=(1.866,2.915,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2899,0.4674,-0.9003) mvmt=(0.2813,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.9152,0.4800) mvmt=(0.0000,-0.2813,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.585,94.500) lpos=(1.866,2.915,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2899,0.4674,-0.9003) mvmt=(0.2813,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6851,0.2274,-1.0053) mvmt=(0.2813,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6851,-1.9838,-2.3553) mvmt=(0.2813,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,2.9152,-1.0000) mvmt=(0.0000,-0.2813,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6028,2.7145,0.4925) mvmt=(0.0085,0.2812,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.9152,0.5000) mvmt=(0.0000,-0.2813,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.9152,0.4800) mvmt=(0.0000,-0.2813,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.585,94.500) lpos=(1.866,2.915,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2899,0.4674,-0.9003) mvmt=(0.2813,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.9152,0.4800) mvmt=(0.0000,-0.2813,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.585,94.500) lpos=(1.866,2.915,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2899,0.4674,-0.9003) mvmt=(0.2813,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6851,0.2274,-1.0053) mvmt=(0.2813,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6851,-1.9838,-2.3553) mvmt=(0.2813,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,2.9152,-1.0000) mvmt=(0.0000,-0.2813,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6028,2.7145,0.4925) mvmt=(0.0085,0.2812,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.9152,0.5000) mvmt=(0.0000,-0.2813,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.9152,0.4800) mvmt=(0.0000,-0.2813,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.585,94.500) lpos=(1.866,2.915,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2899,0.4674,-0.9003) mvmt=(0.2813,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.9152,0.4800) mvmt=(0.0000,-0.2813,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.585,94.500) lpos=(1.866,2.915,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2899,0.4674,-0.9003) mvmt=(0.2813,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6851,0.2274,-1.0053) mvmt=(0.2813,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6851,-1.9838,-2.3553) mvmt=(0.2813,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,2.9152,-1.0000) mvmt=(0.0000,-0.2813,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6028,2.7145,0.4925) mvmt=(0.0085,0.2812,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.9152,0.5000) mvmt=(0.0000,-0.2813,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.8664,2.8856,0.4800) mvmt=(0.0000,-0.3110,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.614,94.500) lpos=(1.866,2.886,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2603,0.4674,-0.9003) mvmt=(0.3110,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8856,0.4800) mvmt=(0.0000,-0.3110,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.614,94.500) lpos=(1.866,2.886,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2603,0.4674,-0.9003) mvmt=(0.3110,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7147,0.2274,-1.0053) mvmt=(0.3110,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7147,-1.9838,-2.3553) mvmt=(0.3110,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,2.8856,-1.0000) mvmt=(0.0000,-0.3110,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6037,2.7442,0.4925) mvmt=(0.0094,0.3108,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8856,0.5000) mvmt=(0.0000,-0.3110,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8856,0.4800) mvmt=(0.0000,-0.3110,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.614,94.500) lpos=(1.866,2.886,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2603,0.4674,-0.9003) mvmt=(0.3110,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8856,0.4800) mvmt=(0.0000,-0.3110,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.614,94.500) lpos=(1.866,2.886,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2603,0.4674,-0.9003) mvmt=(0.3110,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7147,0.2274,-1.0053) mvmt=(0.3110,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7147,-1.9838,-2.3553) mvmt=(0.3110,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,2.8856,-1.0000) mvmt=(0.0000,-0.3110,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6037,2.7442,0.4925) mvmt=(0.0094,0.3108,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8856,0.5000) mvmt=(0.0000,-0.3110,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8856,0.4800) mvmt=(0.0000,-0.3110,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.614,94.500) lpos=(1.866,2.886,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2603,0.4674,-0.9003) mvmt=(0.3110,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8856,0.4800) mvmt=(0.0000,-0.3110,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.614,94.500) lpos=(1.866,2.886,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2603,0.4674,-0.9003) mvmt=(0.3110,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7147,0.2274,-1.0053) mvmt=(0.3110,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7147,-1.9838,-2.3553) mvmt=(0.3110,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,2.8856,-1.0000) mvmt=(0.0000,-0.3110,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6037,2.7442,0.4925) mvmt=(0.0094,0.3108,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8856,0.5000) mvmt=(0.0000,-0.3110,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.8664,2.8783,0.4800) mvmt=(0.0000,-0.3182,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.622,94.500) lpos=(1.866,2.878,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2531,0.4674,-0.9003) mvmt=(0.3182,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8783,0.4800) mvmt=(0.0000,-0.3182,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.622,94.500) lpos=(1.866,2.878,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2531,0.4674,-0.9003) mvmt=(0.3182,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7219,0.2274,-1.0053) mvmt=(0.3182,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7219,-1.9838,-2.3553) mvmt=(0.3182,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,2.8783,-1.0000) mvmt=(0.0000,-0.3182,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6039,2.7514,0.4925) mvmt=(0.0096,0.3181,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8783,0.5000) mvmt=(0.0000,-0.3182,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8783,0.4800) mvmt=(0.0000,-0.3182,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.622,94.500) lpos=(1.866,2.878,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2531,0.4674,-0.9003) mvmt=(0.3182,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8783,0.4800) mvmt=(0.0000,-0.3182,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.622,94.500) lpos=(1.866,2.878,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2531,0.4674,-0.9003) mvmt=(0.3182,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7219,0.2274,-1.0053) mvmt=(0.3182,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7219,-1.9838,-2.3553) mvmt=(0.3182,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,2.8783,-1.0000) mvmt=(0.0000,-0.3182,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6039,2.7514,0.4925) mvmt=(0.0096,0.3181,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8783,0.5000) mvmt=(0.0000,-0.3182,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8783,0.4800) mvmt=(0.0000,-0.3182,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.622,94.500) lpos=(1.866,2.878,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2531,0.4674,-0.9003) mvmt=(0.3182,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8783,0.4800) mvmt=(0.0000,-0.3182,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.622,94.500) lpos=(1.866,2.878,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2531,0.4674,-0.9003) mvmt=(0.3182,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7219,0.2274,-1.0053) mvmt=(0.3182,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7219,-1.9838,-2.3553) mvmt=(0.3182,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,2.8783,-1.0000) mvmt=(0.0000,-0.3182,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6039,2.7514,0.4925) mvmt=(0.0096,0.3181,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8783,0.5000) mvmt=(0.0000,-0.3182,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.8664,2.8716,0.4800) mvmt=(0.0000,-0.3249,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.628,94.500) lpos=(1.866,2.872,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2463,0.4674,-0.9003) mvmt=(0.3249,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8716,0.4800) mvmt=(0.0000,-0.3249,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.628,94.500) lpos=(1.866,2.872,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2463,0.4674,-0.9003) mvmt=(0.3249,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7287,0.2274,-1.0053) mvmt=(0.3249,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7287,-1.9838,-2.3553) mvmt=(0.3249,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,2.8716,-1.0000) mvmt=(0.0000,-0.3249,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6041,2.7581,0.4925) mvmt=(0.0098,0.3248,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8716,0.5000) mvmt=(0.0000,-0.3249,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8716,0.4800) mvmt=(0.0000,-0.3249,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.628,94.500) lpos=(1.866,2.872,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2463,0.4674,-0.9003) mvmt=(0.3249,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8716,0.4800) mvmt=(0.0000,-0.3249,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.628,94.500) lpos=(1.866,2.872,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2463,0.4674,-0.9003) mvmt=(0.3249,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7287,0.2274,-1.0053) mvmt=(0.3249,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7287,-1.9838,-2.3553) mvmt=(0.3249,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,2.8716,-1.0000) mvmt=(0.0000,-0.3249,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6041,2.7581,0.4925) mvmt=(0.0098,0.3248,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8716,0.5000) mvmt=(0.0000,-0.3249,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8716,0.4800) mvmt=(0.0000,-0.3249,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.628,94.500) lpos=(1.866,2.872,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2463,0.4674,-0.9003) mvmt=(0.3249,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8716,0.4800) mvmt=(0.0000,-0.3249,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.628,94.500) lpos=(1.866,2.872,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2463,0.4674,-0.9003) mvmt=(0.3249,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7287,0.2274,-1.0053) mvmt=(0.3249,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7287,-1.9838,-2.3553) mvmt=(0.3249,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,2.8716,-1.0000) mvmt=(0.0000,-0.3249,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6041,2.7581,0.4925) mvmt=(0.0098,0.3248,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8716,0.5000) mvmt=(0.0000,-0.3249,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.8664,2.8891,0.4800) mvmt=(0.0000,-0.3074,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.611,94.500) lpos=(1.866,2.889,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2639,0.4674,-0.9003) mvmt=(0.3074,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8891,0.4800) mvmt=(0.0000,-0.3074,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.611,94.500) lpos=(1.866,2.889,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2639,0.4674,-0.9003) mvmt=(0.3074,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7111,0.2274,-1.0053) mvmt=(0.3074,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7111,-1.9838,-2.3553) mvmt=(0.3074,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,2.8891,-1.0000) mvmt=(0.0000,-0.3074,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6036,2.7406,0.4925) mvmt=(0.0093,0.3073,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8891,0.5000) mvmt=(0.0000,-0.3074,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8891,0.4800) mvmt=(0.0000,-0.3074,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.611,94.500) lpos=(1.866,2.889,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2639,0.4674,-0.9003) mvmt=(0.3074,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8891,0.4800) mvmt=(0.0000,-0.3074,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.611,94.500) lpos=(1.866,2.889,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2639,0.4674,-0.9003) mvmt=(0.3074,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7111,0.2274,-1.0053) mvmt=(0.3074,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7111,-1.9838,-2.3553) mvmt=(0.3074,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,2.8891,-1.0000) mvmt=(0.0000,-0.3074,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6036,2.7406,0.4925) mvmt=(0.0093,0.3073,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8891,0.5000) mvmt=(0.0000,-0.3074,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8891,0.4800) mvmt=(0.0000,-0.3074,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.611,94.500) lpos=(1.866,2.889,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2639,0.4674,-0.9003) mvmt=(0.3074,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8891,0.4800) mvmt=(0.0000,-0.3074,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.611,94.500) lpos=(1.866,2.889,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2639,0.4674,-0.9003) mvmt=(0.3074,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7111,0.2274,-1.0053) mvmt=(0.3074,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7111,-1.9838,-2.3553) mvmt=(0.3074,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,2.8891,-1.0000) mvmt=(0.0000,-0.3074,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6036,2.7406,0.4925) mvmt=(0.0093,0.3073,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8891,0.5000) mvmt=(0.0000,-0.3074,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.8664,2.8933,0.4800) mvmt=(0.0000,-0.3033,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.607,94.500) lpos=(1.866,2.893,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2680,0.4674,-0.9003) mvmt=(0.3033,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8933,0.4800) mvmt=(0.0000,-0.3033,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.607,94.500) lpos=(1.866,2.893,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2680,0.4674,-0.9003) mvmt=(0.3033,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7070,0.2274,-1.0053) mvmt=(0.3033,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7070,-1.9838,-2.3553) mvmt=(0.3033,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,2.8933,-1.0000) mvmt=(0.0000,-0.3033,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6035,2.7364,0.4925) mvmt=(0.0092,0.3031,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8933,0.5000) mvmt=(0.0000,-0.3033,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8933,0.4800) mvmt=(0.0000,-0.3033,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.607,94.500) lpos=(1.866,2.893,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2680,0.4674,-0.9003) mvmt=(0.3033,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8933,0.4800) mvmt=(0.0000,-0.3033,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.607,94.500) lpos=(1.866,2.893,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2680,0.4674,-0.9003) mvmt=(0.3033,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7070,0.2274,-1.0053) mvmt=(0.3033,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7070,-1.9838,-2.3553) mvmt=(0.3033,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,2.8933,-1.0000) mvmt=(0.0000,-0.3033,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6035,2.7364,0.4925) mvmt=(0.0092,0.3031,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8933,0.5000) mvmt=(0.0000,-0.3033,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8933,0.4800) mvmt=(0.0000,-0.3033,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.607,94.500) lpos=(1.866,2.893,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2680,0.4674,-0.9003) mvmt=(0.3033,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8933,0.4800) mvmt=(0.0000,-0.3033,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.634,8.607,94.500) lpos=(1.866,2.893,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2680,0.4674,-0.9003) mvmt=(0.3033,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7070,0.2274,-1.0053) mvmt=(0.3033,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7070,-1.9838,-2.3553) mvmt=(0.3033,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6686,2.8933,-1.0000) mvmt=(0.0000,-0.3033,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6035,2.7364,0.4925) mvmt=(0.0092,0.3031,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8664,2.8933,0.5000) mvmt=(0.0000,-0.3033,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementBackup Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.0717,3.1411,0.4800) mvmt=(0.2053,-0.0554,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.428,8.359,94.500) lpos=(2.072,3.141,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5159,0.6727,-0.9003) mvmt=(0.0554,0.2053,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4591,0.4327,-1.0053) mvmt=(0.0554,0.2053,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4591,-1.7786,-2.3553) mvmt=(0.0554,0.2053,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.4633,3.1411,-1.0000) mvmt=(0.2053,-0.0554,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3908,2.4949,0.4925) mvmt=(-0.2035,0.0616,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0717,3.1411,0.5000) mvmt=(0.2053,-0.0554,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0717,3.1411,-0.2700) mvmt=(0.2053,-0.0554,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.0717,3.1411,-0.2700) out=(2.0717,3.1411,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(128.428,8.359,93.750) lpos=(2.072,3.141,-0.270) lprev=(1.866,3.197,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.0717,3.1411,0.4800) mvmt=(0.2053,-0.0554,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.428,8.359,94.500) lpos=(2.072,3.141,0.480) lprev=(1.866,3.197,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5159,0.6727,-0.9003) mvmt=(0.0554,0.2053,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4591,0.4327,-1.0053) mvmt=(0.0554,0.2053,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4591,-1.7786,-2.3553) mvmt=(0.0554,0.2053,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.4633,3.1411,-1.0000) mvmt=(0.2053,-0.0554,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3908,2.4949,0.4925) mvmt=(-0.2035,0.0616,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0717,3.1411,0.5000) mvmt=(0.2053,-0.0554,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementStrafeLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.2422,2.9598,0.4800) mvmt=(0.1705,-0.1813,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.258,8.540,94.500) lpos=(2.242,2.960,0.480) lprev=(2.072,3.141,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3345,0.8432,-0.9003) mvmt=(0.1813,0.1705,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6405,0.6032,-1.0053) mvmt=(0.1813,0.1705,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6405,-1.6080,-2.3553) mvmt=(0.1813,0.1705,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2928,2.9598,-1.0000) mvmt=(0.1705,-0.1813,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2258,2.6813,0.4925) mvmt=(-0.1650,0.1864,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2422,2.9598,0.5000) mvmt=(0.1705,-0.1813,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2422,2.9598,-0.2700) mvmt=(0.1705,-0.1813,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.2422,2.9598,-0.2700) out=(2.2422,2.9598,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(128.258,8.540,93.750) lpos=(2.242,2.960,-0.270) lprev=(2.072,3.141,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.2422,2.9598,0.4800) mvmt=(0.1705,-0.1813,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.258,8.540,94.500) lpos=(2.242,2.960,0.480) lprev=(2.072,3.141,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3345,0.8432,-0.9003) mvmt=(0.1813,0.1705,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6405,0.6032,-1.0053) mvmt=(0.1813,0.1705,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6405,-1.6080,-2.3553) mvmt=(0.1813,0.1705,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2928,2.9598,-1.0000) mvmt=(0.1705,-0.1813,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2258,2.6813,0.4925) mvmt=(-0.1650,0.1864,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2422,2.9598,0.5000) mvmt=(0.1705,-0.1813,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.4231,2.7674,0.4800) mvmt=(0.1809,-0.1923,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.077,8.733,94.500) lpos=(2.423,2.767,0.480) lprev=(2.242,2.960,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1422,1.0241,-0.9003) mvmt=(0.1923,0.1809,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8328,0.7841,-1.0053) mvmt=(0.1923,0.1809,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8328,-1.4272,-2.3553) mvmt=(0.1923,0.1809,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1119,2.7674,-1.0000) mvmt=(0.1809,-0.1923,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0508,2.8790,0.4925) mvmt=(-0.1750,0.1977,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4231,2.7674,0.5000) mvmt=(0.1809,-0.1923,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4231,2.7674,-0.2700) mvmt=(0.1809,-0.1923,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.4231,2.7674,-0.2700) out=(2.4231,2.7674,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(128.077,8.733,93.750) lpos=(2.423,2.767,-0.270) lprev=(2.242,2.960,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.4231,2.7674,0.4800) mvmt=(0.1809,-0.1923,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.077,8.733,94.500) lpos=(2.423,2.767,0.480) lprev=(2.242,2.960,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1422,1.0241,-0.9003) mvmt=(0.1923,0.1809,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8328,0.7841,-1.0053) mvmt=(0.1923,0.1809,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8328,-1.4272,-2.3553) mvmt=(0.1923,0.1809,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.1119,2.7674,-1.0000) mvmt=(0.1809,-0.1923,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0508,2.8790,0.4925) mvmt=(-0.1750,0.1977,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4231,2.7674,0.5000) mvmt=(0.1809,-0.1923,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.6055,2.5735,0.4800) mvmt=(0.1824,-0.1939,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.895,8.926,94.500) lpos=(2.605,2.574,0.480) lprev=(2.423,2.767,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.0517,1.2065,-0.9003) mvmt=(0.1939,0.1824,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0267,0.9665,-1.0053) mvmt=(0.1939,0.1824,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0267,-1.2448,-2.3553) mvmt=(0.1939,0.1824,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9295,2.5735,-1.0000) mvmt=(0.1824,-0.1939,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1256,3.0784,0.4925) mvmt=(-0.1764,0.1993,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6055,2.5735,0.5000) mvmt=(0.1824,-0.1939,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6055,2.5735,-0.2700) mvmt=(0.1824,-0.1939,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.6055,2.5735,-0.2700) out=(2.6055,2.5735,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(127.895,8.926,93.750) lpos=(2.605,2.574,-0.270) lprev=(2.423,2.767,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.6055,2.5735,0.4800) mvmt=(0.1824,-0.1939,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.895,8.926,94.500) lpos=(2.605,2.574,0.480) lprev=(2.423,2.767,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.0517,1.2065,-0.9003) mvmt=(0.1939,0.1824,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0267,0.9665,-1.0053) mvmt=(0.1939,0.1824,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0267,-1.2448,-2.3553) mvmt=(0.1939,0.1824,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9295,2.5735,-1.0000) mvmt=(0.1824,-0.1939,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1256,3.0784,0.4925) mvmt=(-0.1764,0.1993,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6055,2.5735,0.5000) mvmt=(0.1824,-0.1939,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.7668,2.4020,0.4800) mvmt=(0.1613,-0.1715,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.733,9.098,94.500) lpos=(2.767,2.402,0.480) lprev=(2.605,2.574,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.2233,1.3678,-0.9003) mvmt=(0.1715,0.1613,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1983,1.1278,-1.0053) mvmt=(0.1715,0.1613,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1983,-1.0835,-2.3553) mvmt=(0.1715,0.1613,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7682,2.4020,-1.0000) mvmt=(0.1613,-0.1715,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2817,3.2547,0.4924) mvmt=(-0.1561,0.1763,-0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7668,2.4020,0.5000) mvmt=(0.1613,-0.1715,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7668,2.4020,-0.2700) mvmt=(0.1613,-0.1715,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.7668,2.4020,-0.2700) out=(2.7668,2.4020,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(127.733,9.098,93.750) lpos=(2.767,2.402,-0.270) lprev=(2.605,2.574,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.7668,2.4020,0.4800) mvmt=(0.1613,-0.1715,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.733,9.098,94.500) lpos=(2.767,2.402,0.480) lprev=(2.605,2.574,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.2233,1.3678,-0.9003) mvmt=(0.1715,0.1613,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1983,1.1278,-1.0053) mvmt=(0.1715,0.1613,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1983,-1.0835,-2.3553) mvmt=(0.1715,0.1613,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7682,2.4020,-1.0000) mvmt=(0.1613,-0.1715,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2817,3.2547,0.4924) mvmt=(-0.1561,0.1763,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7668,2.4020,0.5000) mvmt=(0.1613,-0.1715,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.9451,2.2124,0.4800) mvmt=(0.1783,-0.1896,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.555,9.288,94.500) lpos=(2.945,2.212,0.480) lprev=(2.767,2.402,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.4129,1.5461,-0.9003) mvmt=(0.1896,0.1783,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3879,1.3061,-1.0053) mvmt=(0.1896,0.1783,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3879,-0.9051,-2.3553) mvmt=(0.1896,0.1783,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5899,2.2124,-1.0000) mvmt=(0.1783,-0.1896,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9451,2.2124,0.5000) mvmt=(0.1783,-0.1896,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9451,2.2124,-0.2700) mvmt=(0.1783,-0.1896,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.9451,2.2124,-0.2700) out=(2.9451,2.2124,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(127.555,9.288,93.750) lpos=(2.945,2.212,-0.270) lprev=(2.767,2.402,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.9451,2.2124,0.4800) mvmt=(0.1783,-0.1896,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.555,9.288,94.500) lpos=(2.945,2.212,0.480) lprev=(2.767,2.402,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.4129,1.5461,-0.9003) mvmt=(0.1896,0.1783,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3879,1.3061,-1.0053) mvmt=(0.1896,0.1783,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3879,-0.9051,-2.3553) mvmt=(0.1896,0.1783,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5899,2.2124,-1.0000) mvmt=(0.1783,-0.1896,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9451,2.2124,0.5000) mvmt=(0.1783,-0.1896,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.1223,2.0239,0.4800) mvmt=(0.1772,-0.1884,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.378,9.476,94.500) lpos=(3.122,2.024,0.480) lprev=(2.945,2.212,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.6013,1.7233,-0.9003) mvmt=(0.1884,0.1772,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5763,1.4833,-1.0053) mvmt=(0.1884,0.1772,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5763,-0.7279,-2.3553) mvmt=(0.1884,0.1772,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4127,2.0239,-1.0000) mvmt=(0.1772,-0.1884,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1223,2.0239,0.5000) mvmt=(0.1772,-0.1884,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1223,2.0239,-0.2700) mvmt=(0.1772,-0.1884,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.1223,2.0239,-0.2700) out=(3.1223,2.0239,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(127.378,9.476,93.750) lpos=(3.122,2.024,-0.270) lprev=(2.945,2.212,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.1223,2.0239,0.4800) mvmt=(0.1772,-0.1884,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.378,9.476,94.500) lpos=(3.122,2.024,0.480) lprev=(2.945,2.212,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.6013,1.7233,-0.9003) mvmt=(0.1884,0.1772,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5763,1.4833,-1.0053) mvmt=(0.1884,0.1772,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5763,-0.7279,-2.3553) mvmt=(0.1884,0.1772,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4127,2.0239,-1.0000) mvmt=(0.1772,-0.1884,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1223,2.0239,0.5000) mvmt=(0.1772,-0.1884,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.3000,1.8350,0.4800) mvmt=(0.1777,-0.1889,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.200,9.665,94.500) lpos=(3.300,1.835,0.480) lprev=(3.122,2.024,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.7903,1.9010,-0.9003) mvmt=(0.1889,0.1777,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7653,1.6610,-1.0053) mvmt=(0.1889,0.1777,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7653,-0.5502,-2.3553) mvmt=(0.1889,0.1777,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.2350,1.8350,-1.0000) mvmt=(0.1777,-0.1889,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2813,3.8033,0.4950) mvmt=(-0.2030,-0.1614,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3000,1.8350,0.5000) mvmt=(0.1777,-0.1889,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3000,1.8350,-0.2700) mvmt=(0.1777,-0.1889,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.3000,1.8350,-0.2700) out=(3.3000,1.8350,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(127.200,9.665,93.750) lpos=(3.300,1.835,-0.270) lprev=(3.122,2.024,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.3000,1.8350,0.4800) mvmt=(0.1777,-0.1889,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.200,9.665,94.500) lpos=(3.300,1.835,0.480) lprev=(3.122,2.024,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.7903,1.9010,-0.9003) mvmt=(0.1889,0.1777,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7653,1.6610,-1.0053) mvmt=(0.1889,0.1777,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7653,-0.5502,-2.3553) mvmt=(0.1889,0.1777,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.2350,1.8350,-1.0000) mvmt=(0.1777,-0.1889,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2813,3.8033,0.4950) mvmt=(-0.2030,-0.1614,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3000,1.8350,0.5000) mvmt=(0.1777,-0.1889,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.4623,1.6625,0.4800) mvmt=(0.1622,-0.1725,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.038,9.838,94.500) lpos=(3.462,1.662,0.480) lprev=(3.300,1.835,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.9628,2.0633,-0.9003) mvmt=(0.1725,0.1622,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9378,1.8233,-1.0053) mvmt=(0.1725,0.1622,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9378,-0.3880,-2.3553) mvmt=(0.1725,0.1622,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0727,1.6625,-1.0000) mvmt=(0.1622,-0.1725,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4666,3.6559,0.4950) mvmt=(-0.1854,-0.1474,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4623,1.6625,0.5000) mvmt=(0.1622,-0.1725,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4623,1.6625,-0.2700) mvmt=(0.1622,-0.1725,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.4623,1.6625,-0.2700) out=(3.4623,1.6625,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(127.038,9.838,93.750) lpos=(3.462,1.662,-0.270) lprev=(3.300,1.835,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.4623,1.6625,0.4800) mvmt=(0.1622,-0.1725,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.038,9.838,94.500) lpos=(3.462,1.662,0.480) lprev=(3.300,1.835,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.9628,2.0633,-0.9003) mvmt=(0.1725,0.1622,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9378,1.8233,-1.0053) mvmt=(0.1725,0.1622,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9378,-0.3880,-2.3553) mvmt=(0.1725,0.1622,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0727,1.6625,-1.0000) mvmt=(0.1622,-0.1725,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4666,3.6559,0.4950) mvmt=(-0.1854,-0.1474,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4623,1.6625,0.5000) mvmt=(0.1622,-0.1725,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.6420,1.4713,0.4800) mvmt=(0.1797,-0.1911,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.858,10.029,94.500) lpos=(3.642,1.471,0.480) lprev=(3.462,1.662,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.1539,2.2430,-0.9003) mvmt=(0.1911,0.1797,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1289,2.0030,-1.0053) mvmt=(0.1911,0.1797,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1289,-0.2083,-2.3553) mvmt=(0.1911,0.1797,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8930,1.4713,-1.0000) mvmt=(0.1797,-0.1911,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6720,3.4925,0.4950) mvmt=(-0.2053,-0.1633,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6420,1.4713,0.5000) mvmt=(0.1797,-0.1911,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6420,1.4713,-0.2700) mvmt=(0.1797,-0.1911,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.6420,1.4713,-0.2700) out=(3.6420,1.4713,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.858,10.029,93.750) lpos=(3.642,1.471,-0.270) lprev=(3.462,1.662,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.6420,1.4713,0.4800) mvmt=(0.1797,-0.1911,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.858,10.029,94.500) lpos=(3.642,1.471,0.480) lprev=(3.462,1.662,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.1539,2.2430,-0.9003) mvmt=(0.1911,0.1797,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1289,2.0030,-1.0053) mvmt=(0.1911,0.1797,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1289,-0.2083,-2.3553) mvmt=(0.1911,0.1797,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8930,1.4713,-1.0000) mvmt=(0.1797,-0.1911,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6720,3.4925,0.4950) mvmt=(-0.2053,-0.1633,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6420,1.4713,0.5000) mvmt=(0.1797,-0.1911,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.8271,1.2746,0.4800) mvmt=(0.1851,-0.1968,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.673,10.225,94.500) lpos=(3.827,1.275,0.480) lprev=(3.642,1.471,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.3507,2.4281,-0.9003) mvmt=(0.1968,0.1851,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3257,2.1880,-1.0053) mvmt=(0.1968,0.1851,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3257,-0.0232,-2.3553) mvmt=(0.1968,0.1851,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7079,1.2746,-1.0000) mvmt=(0.1851,-0.1968,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8834,3.3244,0.4950) mvmt=(-0.2114,-0.1681,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8271,1.2746,0.5000) mvmt=(0.1851,-0.1968,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8271,1.2746,-0.2700) mvmt=(0.1851,-0.1968,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.8271,1.2746,-0.2700) out=(3.8271,1.2746,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.673,10.225,93.750) lpos=(3.827,1.275,-0.270) lprev=(3.642,1.471,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.8271,1.2746,0.4800) mvmt=(0.1851,-0.1968,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.673,10.225,94.500) lpos=(3.827,1.275,0.480) lprev=(3.642,1.471,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.3507,2.4281,-0.9003) mvmt=(0.1968,0.1851,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3257,2.1880,-1.0053) mvmt=(0.1968,0.1851,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3257,-0.0232,-2.3553) mvmt=(0.1968,0.1851,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7079,1.2746,-1.0000) mvmt=(0.1851,-0.1968,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8834,3.3244,0.4950) mvmt=(-0.2114,-0.1681,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8271,1.2746,0.5000) mvmt=(0.1851,-0.1968,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.0038,1.0866,0.4800) mvmt=(0.1768,-0.1879,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.496,10.413,94.500) lpos=(4.004,1.087,0.480) lprev=(3.827,1.275,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5386,2.6048,-0.9003) mvmt=(0.1879,0.1767,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5136,2.3648,-1.0053) mvmt=(0.1879,0.1767,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5136,0.1535,-2.3553) mvmt=(0.1879,0.1767,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5312,1.0866,-1.0000) mvmt=(0.1768,-0.1879,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0853,3.1638,0.4950) mvmt=(-0.2019,-0.1606,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0038,1.0866,0.5000) mvmt=(0.1768,-0.1879,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0038,1.0866,-0.2700) mvmt=(0.1768,-0.1879,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.0038,1.0866,-0.2700) out=(4.0038,1.0866,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.496,10.413,93.750) lpos=(4.004,1.087,-0.270) lprev=(3.827,1.275,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.0038,1.0866,0.4800) mvmt=(0.1768,-0.1879,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.496,10.413,94.500) lpos=(4.004,1.087,0.480) lprev=(3.827,1.275,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5386,2.6048,-0.9003) mvmt=(0.1879,0.1767,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5136,2.3648,-1.0053) mvmt=(0.1879,0.1767,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5136,0.1535,-2.3553) mvmt=(0.1879,0.1767,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5312,1.0866,-1.0000) mvmt=(0.1768,-0.1879,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.0853,3.1638,0.4950) mvmt=(-0.2019,-0.1606,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0038,1.0866,0.5000) mvmt=(0.1768,-0.1879,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(4.2463,1.0211,0.4800) mvmt=(0.2425,-0.0655,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.254,10.479,94.500) lpos=(4.246,1.021,0.480) lprev=(4.004,1.087,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6041,2.8473,-0.9003) mvmt=(0.0655,0.2425,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5791,2.6073,-1.0053) mvmt=(0.0655,0.2425,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5791,0.3960,-2.3553) mvmt=(0.0655,0.2425,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2887,1.0211,-1.0000) mvmt=(0.2425,-0.0655,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.2463,1.0211,0.4800) mvmt=(0.2425,-0.0655,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.254,10.479,94.500) lpos=(4.246,1.021,0.480) lprev=(4.004,1.087,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6041,2.8473,-0.9003) mvmt=(0.0655,0.2425,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5791,2.6073,-1.0053) mvmt=(0.0655,0.2425,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5791,0.3960,-2.3553) mvmt=(0.0655,0.2425,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2887,1.0211,-1.0000) mvmt=(0.2425,-0.0655,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.2887,1.0211,-1.0000) out=(-1.2887,1.0211,-0.8200) delta=(0.0000,0.0000,0.1800) deltaMag=0.1800 n=(0.0000,0.0000,1.0000) d=1.3000 r=0.4800 winterp=1.0000->0.7000 dpPos=0.3000 dpMove=-0.6000 iDist=0.3000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.200 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(4.2463,1.0211,0.6600) mvmt=(0.2425,-0.0655,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.254,10.479,94.680) lpos=(4.246,1.021,0.660) lprev=(4.004,1.087,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6041,2.8473,-0.7203) mvmt=(0.0655,0.2425,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.5791,2.6073,-0.8253) mvmt=(0.0655,0.2425,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.5791,0.3960,-2.1753) mvmt=(0.0655,0.2425,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2887,1.0211,-0.8200) mvmt=(0.2425,-0.0655,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.1706,2.9275,0.6750) mvmt=(-0.0853,-0.2363,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.2463,1.0211,0.6800) mvmt=(0.2425,-0.0655,0.1800) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.2463,1.0211,0.6600) mvmt=(0.2425,-0.0655,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.254,10.479,94.680) lpos=(4.246,1.021,0.660) lprev=(4.004,1.087,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6041,2.8473,-0.7203) mvmt=(0.0655,0.2425,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.5791,2.6073,-0.8253) mvmt=(0.0655,0.2425,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.5791,0.3960,-2.1753) mvmt=(0.0655,0.2425,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.2887,1.0211,-0.8200) mvmt=(0.2425,-0.0655,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.1706,2.9275,0.6750) mvmt=(-0.0853,-0.2363,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.2463,1.0211,0.6800) mvmt=(0.2425,-0.0655,0.1800) collide=False insertType=1 objState=0x303 winterp=0.7000 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(4.0038,1.0211,0.4800) mvmt=(0.0000,-0.0655,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.496,10.479,94.500) lpos=(4.004,1.021,0.480) lprev=(4.004,1.087,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6041,2.6048,-0.9003) mvmt=(0.0655,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.5791,2.3648,-1.0053) mvmt=(0.0655,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(2.5791,0.1535,-2.3553) mvmt=(0.0655,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.5312,1.0211,-1.0000) mvmt=(0.0000,-0.0655,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(-1.1506,3.1692,0.4950) mvmt=(-0.0653,0.0054,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.0038,1.0211,0.5000) mvmt=(0.0000,-0.0655,0.0000) collide=False insertType=0 objState=0x303 winterp=0.7000 return=-1 +[push-back-disp] site=dispatch center=(4.0038,1.0211,-0.2700) mvmt=(0.0000,-0.0655,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(4.0038,1.0211,-0.2700) out=(4.0038,1.0211,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.200 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.496,10.479,93.750) lpos=(4.004,1.021,-0.270) lprev=(4.004,1.087,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(4.0038,1.0211,0.4800) mvmt=(0.0000,-0.0655,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.496,10.479,94.500) lpos=(4.004,1.021,0.480) lprev=(4.004,1.087,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6041,2.6048,-0.9003) mvmt=(0.0655,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5791,2.3648,-1.0053) mvmt=(0.0655,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5791,0.1535,-2.3553) mvmt=(0.0655,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5312,1.0211,-1.0000) mvmt=(0.0000,-0.0655,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1506,3.1692,0.4950) mvmt=(-0.0653,0.0054,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0038,1.0211,0.5000) mvmt=(0.0000,-0.0655,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.5750,0.9609,0.4800) mvmt=(-0.4288,-0.0602,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.925,10.539,94.500) lpos=(3.575,0.961,0.480) lprev=(4.004,1.021,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6643,2.1760,-0.9003) mvmt=(0.0602,-0.4288,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6393,1.9360,-1.0053) mvmt=(0.0602,-0.4288,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6393,-0.2753,-2.3553) mvmt=(0.0602,-0.4288,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8200,3.4509,0.4925) mvmt=(-0.4288,-0.0602,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9600,0.9609,-1.0000) mvmt=(-0.4288,-0.0602,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1751,3.6016,0.4950) mvmt=(-0.0246,0.4323,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5750,0.9609,0.5000) mvmt=(-0.4288,-0.0602,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5750,0.9609,-0.2700) mvmt=(-0.4288,-0.0602,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.5750,0.9609,-0.2700) out=(3.5750,0.9609,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(126.925,10.539,93.750) lpos=(3.575,0.961,-0.270) lprev=(4.004,1.021,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.5750,0.9609,0.4800) mvmt=(-0.4288,-0.0602,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(126.925,10.539,94.500) lpos=(3.575,0.961,0.480) lprev=(4.004,1.021,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6643,2.1760,-0.9003) mvmt=(0.0602,-0.4288,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6393,1.9360,-1.0053) mvmt=(0.0602,-0.4288,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6393,-0.2753,-2.3553) mvmt=(0.0602,-0.4288,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8200,3.4509,0.4925) mvmt=(-0.4288,-0.0602,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9600,0.9609,-1.0000) mvmt=(-0.4288,-0.0602,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1751,3.6016,0.4950) mvmt=(-0.0246,0.4323,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5750,0.9609,0.5000) mvmt=(-0.4288,-0.0602,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(3.1643,0.8677,0.4800) mvmt=(-0.4107,-0.0932,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.336,10.632,94.500) lpos=(3.164,0.868,0.480) lprev=(3.575,0.961,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7576,1.7653,-0.9003) mvmt=(0.0932,-0.4107,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7326,1.5253,-1.0053) mvmt=(0.0932,-0.4107,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7326,-0.6860,-2.3553) mvmt=(0.0932,-0.4107,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.2307,3.3577,0.4925) mvmt=(-0.4107,-0.0932,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3707,0.8677,-1.0000) mvmt=(-0.4107,-0.0932,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2341,4.0185,0.4950) mvmt=(-0.0590,0.4170,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1643,0.8677,0.5000) mvmt=(-0.4107,-0.0932,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1643,0.8677,-0.2700) mvmt=(-0.4107,-0.0932,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(3.1643,0.8677,-0.2700) out=(3.1643,0.8677,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(127.336,10.632,93.750) lpos=(3.164,0.868,-0.270) lprev=(3.575,0.961,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(3.1643,0.8677,0.4800) mvmt=(-0.4107,-0.0932,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.336,10.632,94.500) lpos=(3.164,0.868,0.480) lprev=(3.575,0.961,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7576,1.7653,-0.9003) mvmt=(0.0932,-0.4107,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7326,1.5253,-1.0053) mvmt=(0.0932,-0.4107,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7326,-0.6860,-2.3553) mvmt=(0.0932,-0.4107,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.2307,3.3577,0.4925) mvmt=(-0.4107,-0.0932,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3707,0.8677,-1.0000) mvmt=(-0.4107,-0.0932,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.2341,4.0185,0.4950) mvmt=(-0.0590,0.4170,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1643,0.8677,0.5000) mvmt=(-0.4107,-0.0932,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.7440,0.7388,0.4800) mvmt=(-0.4203,-0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.756,10.761,94.500) lpos=(2.744,0.739,0.480) lprev=(3.164,0.868,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.8865,1.3450,-0.9003) mvmt=(0.1289,-0.4203,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8615,1.1050,-1.0053) mvmt=(0.1289,-0.4203,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8615,-1.1063,-2.3553) mvmt=(0.1289,-0.4203,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7910,0.7388,-1.0000) mvmt=(-0.4203,-0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3278,4.4481,0.4950) mvmt=(-0.0937,0.4296,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7440,0.7388,0.5000) mvmt=(-0.4203,-0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7440,0.7388,-0.2700) mvmt=(-0.4203,-0.1289,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.7440,0.7388,-0.2700) out=(2.7440,0.7388,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(127.756,10.761,93.750) lpos=(2.744,0.739,-0.270) lprev=(3.164,0.868,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.7440,0.7388,0.4800) mvmt=(-0.4203,-0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(127.756,10.761,94.500) lpos=(2.744,0.739,0.480) lprev=(3.164,0.868,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.8865,1.3450,-0.9003) mvmt=(0.1289,-0.4203,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8615,1.1050,-1.0053) mvmt=(0.1289,-0.4203,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8615,-1.1063,-2.3553) mvmt=(0.1289,-0.4203,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7910,0.7388,-1.0000) mvmt=(-0.4203,-0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3278,4.4481,0.4950) mvmt=(-0.0937,0.4296,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7440,0.7388,0.5000) mvmt=(-0.4203,-0.1289,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(2.3227,0.6096,0.4800) mvmt=(-0.4213,-0.1292,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.177,10.890,94.500) lpos=(2.323,0.610,0.480) lprev=(2.744,0.739,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0157,0.9237,-0.9003) mvmt=(0.1292,-0.4213,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9907,0.6837,-1.0053) mvmt=(0.1292,-0.4213,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9907,-1.5275,-2.3553) mvmt=(0.1292,-0.4213,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2123,0.6096,-1.0000) mvmt=(-0.4213,-0.1292,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3227,0.6096,0.5000) mvmt=(-0.4213,-0.1292,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3227,0.6096,-0.2700) mvmt=(-0.4213,-0.1292,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(2.3227,0.6096,-0.2700) out=(2.3227,0.6096,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(128.177,10.890,93.750) lpos=(2.323,0.610,-0.270) lprev=(2.744,0.739,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(2.3227,0.6096,0.4800) mvmt=(-0.4213,-0.1292,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.177,10.890,94.500) lpos=(2.323,0.610,0.480) lprev=(2.744,0.739,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0157,0.9237,-0.9003) mvmt=(0.1292,-0.4213,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9907,0.6837,-1.0053) mvmt=(0.1292,-0.4213,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9907,-1.5275,-2.3553) mvmt=(0.1292,-0.4213,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2123,0.6096,-1.0000) mvmt=(-0.4213,-0.1292,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3227,0.6096,0.5000) mvmt=(-0.4213,-0.1292,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.9253,0.4877,0.4800) mvmt=(-0.3974,-0.1219,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.575,11.012,94.500) lpos=(1.925,0.488,0.480) lprev=(2.323,0.610,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1376,0.5263,-0.9003) mvmt=(0.1219,-0.3974,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1126,0.2863,-1.0053) mvmt=(0.1219,-0.3974,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1126,-1.9250,-2.3553) mvmt=(0.1219,-0.3974,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6097,0.4877,-1.0000) mvmt=(-0.3974,-0.1219,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9253,0.4877,0.5000) mvmt=(-0.3974,-0.1219,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9253,0.4877,-0.2700) mvmt=(-0.3974,-0.1219,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(1.9253,0.4877,-0.2700) out=(1.9253,0.4877,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(128.575,11.012,93.750) lpos=(1.925,0.488,-0.270) lprev=(2.323,0.610,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(1.9253,0.4877,0.4800) mvmt=(-0.3974,-0.1219,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.575,11.012,94.500) lpos=(1.925,0.488,0.480) lprev=(2.323,0.610,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1376,0.5263,-0.9003) mvmt=(0.1219,-0.3974,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1126,0.2863,-1.0053) mvmt=(0.1219,-0.3974,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1126,-1.9250,-2.3553) mvmt=(0.1219,-0.3974,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6097,0.4877,-1.0000) mvmt=(-0.3974,-0.1219,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9253,0.4877,0.5000) mvmt=(-0.3974,-0.1219,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.5381,0.3689,0.4800) mvmt=(-0.3872,-0.1188,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.962,11.131,94.500) lpos=(1.538,0.369,0.480) lprev=(1.925,0.488,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2563,0.1391,-0.9003) mvmt=(0.1188,-0.3872,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2313,-0.1009,-1.0053) mvmt=(0.1188,-0.3872,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2313,-2.3122,-2.3553) mvmt=(0.1188,-0.3872,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9969,0.3689,-1.0000) mvmt=(-0.3872,-0.1188,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5381,0.3689,0.5000) mvmt=(-0.3872,-0.1188,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5381,0.3689,-0.2700) mvmt=(-0.3872,-0.1188,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(1.5381,0.3689,-0.2700) out=(1.5381,0.3689,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(128.962,11.131,93.750) lpos=(1.538,0.369,-0.270) lprev=(1.925,0.488,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(1.5381,0.3689,0.4800) mvmt=(-0.3872,-0.1188,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(128.962,11.131,94.500) lpos=(1.538,0.369,0.480) lprev=(1.925,0.488,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2563,0.1391,-0.9003) mvmt=(0.1188,-0.3872,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2313,-0.1009,-1.0053) mvmt=(0.1188,-0.3872,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2313,-2.3122,-2.3553) mvmt=(0.1188,-0.3872,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9969,0.3689,-1.0000) mvmt=(-0.3872,-0.1188,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5381,0.3689,0.5000) mvmt=(-0.3872,-0.1188,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(1.1533,0.2509,0.4800) mvmt=(-0.3848,-0.1180,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.347,11.249,94.500) lpos=(1.153,0.251,0.480) lprev=(1.538,0.369,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3744,-0.2457,-0.9003) mvmt=(0.1180,-0.3848,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3494,-0.4857,-1.0053) mvmt=(0.1180,-0.3848,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.3817,0.2509,-1.0000) mvmt=(-0.3848,-0.1180,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1533,0.2509,0.5000) mvmt=(-0.3848,-0.1180,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1533,0.2509,-0.2700) mvmt=(-0.3848,-0.1180,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(1.1533,0.2509,-0.2700) out=(1.1533,0.2509,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(129.347,11.249,93.750) lpos=(1.153,0.251,-0.270) lprev=(1.538,0.369,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(1.1533,0.2509,0.4800) mvmt=(-0.3848,-0.1180,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.347,11.249,94.500) lpos=(1.153,0.251,0.480) lprev=(1.538,0.369,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3744,-0.2457,-0.9003) mvmt=(0.1180,-0.3848,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3494,-0.4857,-1.0053) mvmt=(0.1180,-0.3848,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.3817,0.2509,-1.0000) mvmt=(-0.3848,-0.1180,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1533,0.2509,0.5000) mvmt=(-0.3848,-0.1180,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.7569,0.1293,0.4800) mvmt=(-0.3963,-0.1216,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.743,11.371,94.500) lpos=(0.757,0.129,0.480) lprev=(1.153,0.251,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4959,-0.6421,-0.9003) mvmt=(0.1216,-0.3963,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4709,-0.8821,-1.0053) mvmt=(0.1216,-0.3963,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.7781,0.1293,-1.0000) mvmt=(-0.3963,-0.1216,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7569,0.1293,0.5000) mvmt=(-0.3963,-0.1216,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7569,0.1293,-0.2700) mvmt=(-0.3963,-0.1216,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.7569,0.1293,-0.2700) out=(0.7569,0.1293,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(129.743,11.371,93.750) lpos=(0.757,0.129,-0.270) lprev=(1.153,0.251,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(0.7569,0.1293,0.4800) mvmt=(-0.3963,-0.1216,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(129.743,11.371,94.500) lpos=(0.757,0.129,0.480) lprev=(1.153,0.251,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4959,-0.6421,-0.9003) mvmt=(0.1216,-0.3963,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4709,-0.8821,-1.0053) mvmt=(0.1216,-0.3963,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.7781,0.1293,-1.0000) mvmt=(-0.3963,-0.1216,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7569,0.1293,0.5000) mvmt=(-0.3963,-0.1216,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.3636,0.0087,0.4800) mvmt=(-0.3933,-0.1206,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.136,11.491,94.500) lpos=(0.364,0.009,0.480) lprev=(0.757,0.129,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6165,-1.0354,-0.9003) mvmt=(0.1206,-0.3933,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5915,-1.2754,-1.0053) mvmt=(0.1206,-0.3933,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.1714,0.0087,-1.0000) mvmt=(-0.3933,-0.1206,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3636,0.0087,0.5000) mvmt=(-0.3933,-0.1206,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3636,0.0087,-0.2700) mvmt=(-0.3933,-0.1206,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3636,0.0087,-0.2700) out=(0.3636,0.0087,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.136,11.491,93.750) lpos=(0.364,0.009,-0.270) lprev=(0.757,0.129,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(0.3636,0.0087,0.4800) mvmt=(-0.3933,-0.1206,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.136,11.491,94.500) lpos=(0.364,0.009,0.480) lprev=(0.757,0.129,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6165,-1.0354,-0.9003) mvmt=(0.1206,-0.3933,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5915,-1.2754,-1.0053) mvmt=(0.1206,-0.3933,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.1714,0.0087,-1.0000) mvmt=(-0.3933,-0.1206,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3636,0.0087,0.5000) mvmt=(-0.3933,-0.1206,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-0.0250,-0.1105,0.4800) mvmt=(-0.3886,-0.1192,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.525,11.610,94.500) lpos=(-0.025,-0.110,0.480) lprev=(0.364,0.009,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.7357,-1.4240,-0.9003) mvmt=(0.1192,-0.3886,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.7107,-1.6640,-1.0053) mvmt=(0.1192,-0.3886,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.5600,-0.1105,-1.0000) mvmt=(-0.3886,-0.1192,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2876,0.1144,0.4800) mvmt=(-0.0760,0.1057,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.212,11.386,94.500) lpos=(0.288,0.114,0.480) lprev=(0.364,0.009,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5108,-1.1114,-0.9003) mvmt=(-0.1057,-0.0760,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4858,-1.3514,-1.0053) mvmt=(-0.1057,-0.0760,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.2474,0.1144,-1.0000) mvmt=(-0.0760,0.1057,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2876,0.1144,0.5000) mvmt=(-0.0760,0.1057,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2876,0.1144,-0.2700) mvmt=(-0.0760,0.1057,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2876,0.1144,-0.2700) out=(0.2876,0.1144,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.212,11.386,93.750) lpos=(0.288,0.114,-0.270) lprev=(0.364,0.009,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(0.2876,0.1144,0.4800) mvmt=(-0.0760,0.1057,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.212,11.386,94.500) lpos=(0.288,0.114,0.480) lprev=(0.364,0.009,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5108,-1.1114,-0.9003) mvmt=(-0.1057,-0.0760,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4858,-1.3514,-1.0053) mvmt=(-0.1057,-0.0760,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.2474,0.1144,-1.0000) mvmt=(-0.0760,0.1057,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2876,0.1144,0.5000) mvmt=(-0.0760,0.1057,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(0.2093,0.2232,0.4800) mvmt=(-0.0783,0.1088,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.291,11.277,94.500) lpos=(0.209,0.223,0.480) lprev=(0.288,0.114,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4020,-1.1897,-0.9003) mvmt=(-0.1088,-0.0783,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3770,-1.4297,-1.0053) mvmt=(-0.1088,-0.0783,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.3257,0.2232,-1.0000) mvmt=(-0.0783,0.1088,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2093,0.2232,0.5000) mvmt=(-0.0783,0.1088,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2093,0.2232,-0.2700) mvmt=(-0.0783,0.1088,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2093,0.2232,-0.2700) out=(0.2093,0.2232,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.291,11.277,93.750) lpos=(0.209,0.223,-0.270) lprev=(0.288,0.114,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(0.2093,0.2232,0.4800) mvmt=(-0.0783,0.1088,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.291,11.277,94.500) lpos=(0.209,0.223,0.480) lprev=(0.288,0.114,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4020,-1.1897,-0.9003) mvmt=(-0.1088,-0.0783,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3770,-1.4297,-1.0053) mvmt=(-0.1088,-0.0783,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.3257,0.2232,-1.0000) mvmt=(-0.0783,0.1088,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2093,0.2232,0.5000) mvmt=(-0.0783,0.1088,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-0.2019,0.0972,0.4800) mvmt=(-0.4111,-0.1261,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.702,11.403,94.500) lpos=(-0.202,0.097,0.480) lprev=(0.209,0.223,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.5281,-1.6009,-0.9003) mvmt=(0.1261,-0.4111,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5031,-1.8409,-1.0053) mvmt=(0.1261,-0.4111,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.7369,0.0972,-1.0000) mvmt=(-0.4111,-0.1261,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0288,0.3737,0.4800) mvmt=(-0.1805,0.1505,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.471,11.126,94.500) lpos=(0.029,0.374,0.480) lprev=(0.209,0.223,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2515,-1.3702,-0.9003) mvmt=(-0.1505,-0.1805,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2265,-1.6102,-1.0053) mvmt=(-0.1505,-0.1805,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.5062,0.3737,-1.0000) mvmt=(-0.1805,0.1505,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0288,0.3737,0.5000) mvmt=(-0.1805,0.1505,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0288,0.3737,-0.2700) mvmt=(-0.1805,0.1505,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0288,0.3737,-0.2700) out=(0.0288,0.3737,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.471,11.126,93.750) lpos=(0.029,0.374,-0.270) lprev=(0.209,0.223,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(0.0288,0.3737,0.4800) mvmt=(-0.1805,0.1505,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.471,11.126,94.500) lpos=(0.029,0.374,0.480) lprev=(0.209,0.223,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2515,-1.3702,-0.9003) mvmt=(-0.1505,-0.1805,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2265,-1.6102,-1.0053) mvmt=(-0.1505,-0.1805,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.5062,0.3737,-1.0000) mvmt=(-0.1805,0.1505,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0288,0.3737,0.5000) mvmt=(-0.1805,0.1505,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-0.1509,0.5236,0.4800) mvmt=(-0.1797,0.1498,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.651,10.976,94.500) lpos=(-0.151,0.524,0.480) lprev=(0.029,0.374,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1016,-1.5499,-0.9003) mvmt=(-0.1498,-0.1797,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0767,-1.7899,-1.0053) mvmt=(-0.1498,-0.1797,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1509,0.5236,0.5000) mvmt=(-0.1797,0.1498,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1509,0.5236,-0.2700) mvmt=(-0.1797,0.1498,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1509,0.5236,-0.2700) out=(-0.1509,0.5236,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(130.651,10.976,93.750) lpos=(-0.151,0.524,-0.270) lprev=(0.029,0.374,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-0.1509,0.5236,0.4800) mvmt=(-0.1797,0.1498,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(130.651,10.976,94.500) lpos=(-0.151,0.524,0.480) lprev=(0.029,0.374,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1016,-1.5499,-0.9003) mvmt=(-0.1498,-0.1797,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0767,-1.7899,-1.0053) mvmt=(-0.1498,-0.1797,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1509,0.5236,0.5000) mvmt=(-0.1797,0.1498,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-0.5514,0.4008,0.4800) mvmt=(-0.4005,-0.1228,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.051,11.099,94.500) lpos=(-0.551,0.401,0.480) lprev=(-0.151,0.524,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2245,-1.9504,-0.9003) mvmt=(0.1228,-0.4005,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1995,-2.1904,-1.0053) mvmt=(0.1228,-0.4005,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5514,0.4008,0.5000) mvmt=(-0.4005,-0.1228,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5514,0.4008,-0.2700) mvmt=(-0.4005,-0.1228,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5514,0.4008,-0.2700) out=(-0.5514,0.4008,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(131.051,11.099,93.750) lpos=(-0.551,0.401,-0.270) lprev=(-0.151,0.524,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-0.5514,0.4008,0.4800) mvmt=(-0.4005,-0.1228,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.051,11.099,94.500) lpos=(-0.551,0.401,0.480) lprev=(-0.151,0.524,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2245,-1.9504,-0.9003) mvmt=(0.1228,-0.4005,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1995,-2.1904,-1.0053) mvmt=(0.1228,-0.4005,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5514,0.4008,0.5000) mvmt=(-0.4005,-0.1228,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-0.9601,0.2754,0.4800) mvmt=(-0.4088,-0.1254,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.460,11.225,94.500) lpos=(-0.960,0.275,0.480) lprev=(-0.551,0.401,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3498,-2.3591,-0.9003) mvmt=(0.1254,-0.4088,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3248,-2.5992,-1.0053) mvmt=(0.1254,-0.4088,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9691,0.4268,0.4800) mvmt=(-0.4177,0.0260,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.469,11.073,94.500) lpos=(-0.969,0.427,0.480) lprev=(-0.551,0.401,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1985,-2.3681,-0.9003) mvmt=(-0.0260,-0.4177,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1735,-2.6081,-1.0053) mvmt=(-0.0260,-0.4177,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9691,0.4268,0.5000) mvmt=(-0.4177,0.0260,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9691,0.4268,-0.2700) mvmt=(-0.4177,0.0260,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.9691,0.4268,-0.2700) out=(-0.9691,0.4268,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(131.469,11.073,93.750) lpos=(-0.969,0.427,-0.270) lprev=(-0.551,0.401,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-0.9691,0.4268,0.4800) mvmt=(-0.4177,0.0260,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.469,11.073,94.500) lpos=(-0.969,0.427,0.480) lprev=(-0.551,0.401,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1985,-2.3681,-0.9003) mvmt=(-0.0260,-0.4177,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1735,-2.6081,-1.0053) mvmt=(-0.0260,-0.4177,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9691,0.4268,0.5000) mvmt=(-0.4177,0.0260,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.3426,0.6601,0.4800) mvmt=(-0.3735,0.2333,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.843,10.840,94.500) lpos=(-1.343,0.660,0.480) lprev=(-0.969,0.427,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9652,-2.7416,-0.9003) mvmt=(-0.2333,-0.3735,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9402,-2.9816,-1.0053) mvmt=(-0.2333,-0.3735,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3426,0.6601,0.5000) mvmt=(-0.3735,0.2333,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3426,0.6601,-0.2700) mvmt=(-0.3735,0.2333,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.3426,0.6601,-0.2700) out=(-1.3426,0.6601,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(131.843,10.840,93.750) lpos=(-1.343,0.660,-0.270) lprev=(-0.969,0.427,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.3426,0.6601,0.4800) mvmt=(-0.3735,0.2333,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(131.843,10.840,94.500) lpos=(-1.343,0.660,0.480) lprev=(-0.969,0.427,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9652,-2.7416,-0.9003) mvmt=(-0.2333,-0.3735,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9402,-2.9816,-1.0053) mvmt=(-0.2333,-0.3735,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3426,0.6601,0.5000) mvmt=(-0.3735,0.2333,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.5936,0.8663,0.4800) mvmt=(-0.2511,0.2062,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.094,10.634,94.500) lpos=(-1.594,0.866,0.480) lprev=(-1.343,0.660,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7590,-2.9926,-0.9003) mvmt=(-0.2062,-0.2511,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7340,-3.2326,-1.0053) mvmt=(-0.2062,-0.2511,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5936,0.8663,0.5000) mvmt=(-0.2511,0.2062,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5936,0.8663,-0.2700) mvmt=(-0.2511,0.2062,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.5936,0.8663,-0.2700) out=(-1.5936,0.8663,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(132.094,10.634,93.750) lpos=(-1.594,0.866,-0.270) lprev=(-1.343,0.660,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.5936,0.8663,0.4800) mvmt=(-0.2511,0.2062,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.094,10.634,94.500) lpos=(-1.594,0.866,0.480) lprev=(-1.343,0.660,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7590,-2.9926,-0.9003) mvmt=(-0.2062,-0.2511,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7340,-3.2326,-1.0053) mvmt=(-0.2062,-0.2511,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5936,0.8663,0.5000) mvmt=(-0.2511,0.2062,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.8447,1.0725,0.4800) mvmt=(-0.2511,0.2062,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.345,10.428,94.500) lpos=(-1.845,1.072,0.480) lprev=(-1.594,0.866,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5528,-3.2437,-0.9003) mvmt=(-0.2062,-0.2511,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5278,-3.4837,-1.0053) mvmt=(-0.2062,-0.2511,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8447,1.0725,0.5000) mvmt=(-0.2511,0.2062,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8447,1.0725,-0.2700) mvmt=(-0.2511,0.2062,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.8447,1.0725,-0.2700) out=(-1.8447,1.0725,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(132.345,10.428,93.750) lpos=(-1.845,1.072,-0.270) lprev=(-1.594,0.866,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.8447,1.0725,0.4800) mvmt=(-0.2511,0.2062,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.345,10.428,94.500) lpos=(-1.845,1.072,0.480) lprev=(-1.594,0.866,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5528,-3.2437,-0.9003) mvmt=(-0.2062,-0.2511,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5278,-3.4837,-1.0053) mvmt=(-0.2062,-0.2511,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8447,1.0725,0.5000) mvmt=(-0.2511,0.2062,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.1602,1.3818,0.4800) mvmt=(-0.3156,0.3094,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.660,10.118,94.500) lpos=(-2.160,1.382,0.480) lprev=(-1.845,1.072,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.2434,-3.5592,-0.9003) mvmt=(-0.3094,-0.3156,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2184,-3.7993,-1.0053) mvmt=(-0.3094,-0.3156,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1602,1.3818,0.5000) mvmt=(-0.3156,0.3094,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1602,1.3818,-0.2700) mvmt=(-0.3156,0.3094,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.1602,1.3818,-0.2700) out=(-2.1602,1.3818,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(132.660,10.118,93.750) lpos=(-2.160,1.382,-0.270) lprev=(-1.845,1.072,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.1602,1.3818,0.4800) mvmt=(-0.3156,0.3094,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.660,10.118,94.500) lpos=(-2.160,1.382,0.480) lprev=(-1.845,1.072,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.2434,-3.5592,-0.9003) mvmt=(-0.3094,-0.3156,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2184,-3.7993,-1.0053) mvmt=(-0.3094,-0.3156,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1602,1.3818,0.5000) mvmt=(-0.3156,0.3094,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.4614,1.6835,0.4800) mvmt=(-0.3012,0.3016,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.961,9.817,94.500) lpos=(-2.461,1.683,0.480) lprev=(-2.160,1.382,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.9418,-3.8604,-0.9003) mvmt=(-0.3016,-0.3012,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9168,-4.1004,-1.0053) mvmt=(-0.3016,-0.3012,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4614,1.6835,0.5000) mvmt=(-0.3012,0.3016,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4614,1.6835,-0.2700) mvmt=(-0.3012,0.3016,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.4614,1.6835,-0.2700) out=(-2.4614,1.6835,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(132.961,9.817,93.750) lpos=(-2.461,1.683,-0.270) lprev=(-2.160,1.382,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.4614,1.6835,0.4800) mvmt=(-0.3012,0.3016,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(132.961,9.817,94.500) lpos=(-2.461,1.683,0.480) lprev=(-2.160,1.382,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.9418,-3.8604,-0.9003) mvmt=(-0.3016,-0.3012,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9168,-4.1004,-1.0053) mvmt=(-0.3016,-0.3012,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4614,1.6835,0.5000) mvmt=(-0.3012,0.3016,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.7583,1.9808,0.4800) mvmt=(-0.2968,0.2973,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.258,9.519,94.500) lpos=(-2.758,1.981,0.480) lprev=(-2.461,1.683,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.6444,-4.1573,-0.9003) mvmt=(-0.2973,-0.2968,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6194,-4.3973,-1.0053) mvmt=(-0.2973,-0.2968,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7583,1.9808,0.5000) mvmt=(-0.2968,0.2973,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7583,1.9808,-0.2700) mvmt=(-0.2968,0.2973,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.7583,1.9808,-0.2700) out=(-2.7583,1.9808,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(133.258,9.519,93.750) lpos=(-2.758,1.981,-0.270) lprev=(-2.461,1.683,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.7583,1.9808,0.4800) mvmt=(-0.2968,0.2973,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.258,9.519,94.500) lpos=(-2.758,1.981,0.480) lprev=(-2.461,1.683,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.6444,-4.1573,-0.9003) mvmt=(-0.2973,-0.2968,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6194,-4.3973,-1.0053) mvmt=(-0.2973,-0.2968,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7583,1.9808,0.5000) mvmt=(-0.2968,0.2973,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-3.0486,2.2716,0.4800) mvmt=(-0.2904,0.2908,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.549,9.228,94.500) lpos=(-3.049,2.272,0.480) lprev=(-2.758,1.981,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.3536,-4.4476,-0.9003) mvmt=(-0.2908,-0.2904,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3286,-4.6877,-1.0053) mvmt=(-0.2908,-0.2904,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0486,2.2716,0.5000) mvmt=(-0.2904,0.2908,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0486,2.2716,-0.2700) mvmt=(-0.2904,0.2908,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-3.0486,2.2716,-0.2700) out=(-3.0486,2.2716,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(133.549,9.228,93.750) lpos=(-3.049,2.272,-0.270) lprev=(-2.758,1.981,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-3.0486,2.2716,0.4800) mvmt=(-0.2904,0.2908,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.549,9.228,94.500) lpos=(-3.049,2.272,0.480) lprev=(-2.758,1.981,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.3536,-4.4476,-0.9003) mvmt=(-0.2908,-0.2904,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3286,-4.6877,-1.0053) mvmt=(-0.2908,-0.2904,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0486,2.2716,0.5000) mvmt=(-0.2904,0.2908,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-3.3421,2.5656,0.4800) mvmt=(-0.2935,0.2940,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.842,8.934,94.500) lpos=(-3.342,2.566,0.480) lprev=(-3.049,2.272,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.0597,-4.7411,-0.9003) mvmt=(-0.2940,-0.2935,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0347,-4.9812,-1.0053) mvmt=(-0.2940,-0.2935,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3421,2.5656,0.5000) mvmt=(-0.2935,0.2940,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3421,2.5656,-0.2700) mvmt=(-0.2935,0.2940,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-3.3421,2.5656,-0.2700) out=(-3.3421,2.5656,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(133.842,8.934,93.750) lpos=(-3.342,2.566,-0.270) lprev=(-3.049,2.272,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-3.3421,2.5656,0.4800) mvmt=(-0.2935,0.2940,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(133.842,8.934,94.500) lpos=(-3.342,2.566,0.480) lprev=(-3.049,2.272,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.0597,-4.7411,-0.9003) mvmt=(-0.2940,-0.2935,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0347,-4.9812,-1.0053) mvmt=(-0.2940,-0.2935,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3421,2.5656,0.5000) mvmt=(-0.2935,0.2940,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-3.6475,2.8714,0.4800) mvmt=(-0.3053,0.3058,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(134.147,8.629,94.500) lpos=(-3.647,2.871,0.480) lprev=(-3.342,2.566,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2462,-5.0465,-0.9003) mvmt=(-0.3058,-0.3053,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7288,-5.2865,-1.0053) mvmt=(-0.3058,-0.3053,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6475,2.8714,0.5000) mvmt=(-0.3053,0.3058,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6475,2.8714,-0.2700) mvmt=(-0.3053,0.3058,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-3.6475,2.8714,-0.2700) out=(-3.6475,2.8714,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(134.147,8.629,93.750) lpos=(-3.647,2.871,-0.270) lprev=(-3.342,2.566,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-3.6475,2.8714,0.4800) mvmt=(-0.3053,0.3058,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(134.147,8.629,94.500) lpos=(-3.647,2.871,0.480) lprev=(-3.342,2.566,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.2462,-5.0465,-0.9003) mvmt=(-0.3058,-0.3053,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7288,-5.2865,-1.0053) mvmt=(-0.3058,-0.3053,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6475,2.8714,0.5000) mvmt=(-0.3053,0.3058,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-3.9403,3.1647,0.4800) mvmt=(-0.2928,0.2933,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(134.440,8.335,94.500) lpos=(-3.940,3.165,0.480) lprev=(-3.647,2.871,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5395,-5.3393,-0.9003) mvmt=(-0.2933,-0.2928,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4355,-5.5793,-1.0053) mvmt=(-0.2933,-0.2928,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9403,3.1647,0.5000) mvmt=(-0.2928,0.2933,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9403,3.1647,-0.2700) mvmt=(-0.2928,0.2933,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-3.9403,3.1647,-0.2700) out=(-3.9403,3.1647,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(134.440,8.335,93.750) lpos=(-3.940,3.165,-0.270) lprev=(-3.647,2.871,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-3.9403,3.1647,0.4800) mvmt=(-0.2928,0.2933,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(134.440,8.335,94.500) lpos=(-3.940,3.165,0.480) lprev=(-3.647,2.871,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5395,-5.3393,-0.9003) mvmt=(-0.2933,-0.2928,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4355,-5.5793,-1.0053) mvmt=(-0.2933,-0.2928,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9403,3.1647,0.5000) mvmt=(-0.2928,0.2933,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-4.2336,3.4584,0.4800) mvmt=(-0.2933,0.2937,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(134.734,8.042,94.500) lpos=(-4.234,3.458,0.480) lprev=(-3.940,3.165,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.2336,3.4584,0.5000) mvmt=(-0.2933,0.2937,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.2336,3.4584,-0.2700) mvmt=(-0.2933,0.2937,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-4.2336,3.4584,-0.2700) out=(-4.2336,3.4584,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(134.734,8.042,93.750) lpos=(-4.234,3.458,-0.270) lprev=(-3.940,3.165,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-4.2336,3.4584,0.4800) mvmt=(-0.2933,0.2937,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(134.734,8.042,94.500) lpos=(-4.234,3.458,0.480) lprev=(-3.940,3.165,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.2336,3.4584,0.5000) mvmt=(-0.2933,0.2937,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-4.5234,3.7487,0.4800) mvmt=(-0.2898,0.2903,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.023,7.751,94.500) lpos=(-4.523,3.749,0.480) lprev=(-4.234,3.458,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.5234,3.7487,0.5000) mvmt=(-0.2898,0.2903,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.5234,3.7487,-0.2700) mvmt=(-0.2898,0.2903,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-4.5234,3.7487,-0.2700) out=(-4.5234,3.7487,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(135.023,7.751,93.750) lpos=(-4.523,3.749,-0.270) lprev=(-4.234,3.458,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-4.5234,3.7487,0.4800) mvmt=(-0.2898,0.2903,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.023,7.751,94.500) lpos=(-4.523,3.749,0.480) lprev=(-4.234,3.458,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.5234,3.7487,0.5000) mvmt=(-0.2898,0.2903,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-4.8187,4.0445,0.4800) mvmt=(-0.2953,0.2957,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.8187,4.0445,0.4800) mvmt=(-0.2953,0.2957,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.319,7.456,94.500) lpos=(-4.819,4.044,0.480) lprev=(-4.523,3.749,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.4951,4.0093,0.4800) mvmt=(0.0283,0.2606,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(134.995,7.491,94.500) lpos=(-4.495,4.009,0.480) lprev=(-4.523,3.749,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.4951,4.0093,0.5000) mvmt=(0.0283,0.2606,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.319,7.456,94.500) lpos=(-4.819,4.044,0.480) lprev=(-4.523,3.749,0.480) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-4.8187,3.7487,0.4800) mvmt=(-0.2953,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.319,7.751,94.500) lpos=(-4.819,3.749,0.480) lprev=(-4.523,3.749,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.8187,3.7487,0.5000) mvmt=(-0.2953,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.8187,3.7487,-0.2700) mvmt=(-0.2953,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-4.8187,3.7487,-0.2700) out=(-4.8187,3.7487,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(135.319,7.751,93.750) lpos=(-4.819,3.749,-0.270) lprev=(-4.523,3.749,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-4.8187,3.7487,0.4800) mvmt=(-0.2953,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.319,7.751,94.500) lpos=(-4.819,3.749,0.480) lprev=(-4.523,3.749,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.8187,3.7487,0.5000) mvmt=(-0.2953,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.1166,3.7487,0.4800) mvmt=(-0.2979,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.617,7.751,94.500) lpos=(-5.117,3.749,0.480) lprev=(-4.819,3.749,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.9547,3.6003,0.4800) mvmt=(-0.1359,-0.1484,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.455,7.900,94.500) lpos=(-4.955,3.600,0.480) lprev=(-4.819,3.749,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.9547,3.6003,0.5000) mvmt=(-0.1359,-0.1484,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.9547,3.6003,-0.2700) mvmt=(-0.1359,-0.1484,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-4.9547,3.6003,-0.2700) out=(-4.9547,3.6003,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(135.455,7.900,93.750) lpos=(-4.955,3.600,-0.270) lprev=(-4.819,3.749,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-4.9547,3.6003,0.4800) mvmt=(-0.1359,-0.1484,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.455,7.900,94.500) lpos=(-4.955,3.600,0.480) lprev=(-4.819,3.749,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.9547,3.6003,0.5000) mvmt=(-0.1359,-0.1484,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-4.9603,3.5941,0.4800) mvmt=(-0.0057,-0.0062,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.460,7.906,94.500) lpos=(-4.960,3.594,0.480) lprev=(-4.955,3.600,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.9603,3.5941,0.5000) mvmt=(-0.0057,-0.0062,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.9603,3.5941,-0.2700) mvmt=(-0.0057,-0.0062,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-4.9603,3.5941,-0.2700) out=(-4.9603,3.5941,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(135.460,7.906,93.750) lpos=(-4.960,3.594,-0.270) lprev=(-4.955,3.600,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-4.9603,3.5941,0.4800) mvmt=(-0.0057,-0.0062,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.460,7.906,94.500) lpos=(-4.960,3.594,0.480) lprev=(-4.955,3.600,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.9603,3.5941,0.5000) mvmt=(-0.0057,-0.0062,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.2903,3.8399,0.4800) mvmt=(-0.3299,0.2457,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.790,7.660,94.500) lpos=(-5.290,3.840,0.480) lprev=(-4.960,3.594,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.0354,3.5320,0.4800) mvmt=(-0.0750,-0.0621,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.535,7.968,94.500) lpos=(-5.035,3.532,0.480) lprev=(-4.960,3.594,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.0354,3.5320,0.5000) mvmt=(-0.0750,-0.0621,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.0354,3.5320,-0.2700) mvmt=(-0.0750,-0.0621,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-5.0354,3.5320,-0.2700) out=(-5.0354,3.5320,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(135.535,7.968,93.750) lpos=(-5.035,3.532,-0.270) lprev=(-4.960,3.594,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-5.0354,3.5320,0.4800) mvmt=(-0.0750,-0.0621,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.535,7.968,94.500) lpos=(-5.035,3.532,0.480) lprev=(-4.960,3.594,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.0354,3.5320,0.5000) mvmt=(-0.0750,-0.0621,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.1380,3.4471,0.4800) mvmt=(-0.1026,-0.0849,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.638,8.053,94.500) lpos=(-5.138,3.447,0.480) lprev=(-5.035,3.532,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.1380,3.4471,0.5000) mvmt=(-0.1026,-0.0849,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.1380,3.4471,-0.2700) mvmt=(-0.1026,-0.0849,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-5.1380,3.4471,-0.2700) out=(-5.1380,3.4471,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(135.638,8.053,93.750) lpos=(-5.138,3.447,-0.270) lprev=(-5.035,3.532,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-5.1380,3.4471,0.4800) mvmt=(-0.1026,-0.0849,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.638,8.053,94.500) lpos=(-5.138,3.447,0.480) lprev=(-5.035,3.532,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.1380,3.4471,0.5000) mvmt=(-0.1026,-0.0849,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.5098,3.6376,0.4800) mvmt=(-0.3718,0.1905,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.5098,3.6376,0.4800) mvmt=(-0.3718,0.1905,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(136.010,7.862,94.500) lpos=(-5.510,3.638,0.480) lprev=(-5.138,3.447,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.5098,3.6376,0.4800) mvmt=(-0.3718,0.1905,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.5098,3.6376,0.4800) mvmt=(-0.3718,0.1905,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.5021,3.3583,0.4800) mvmt=(-0.3641,-0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(136.002,8.142,94.500) lpos=(-5.502,3.358,0.480) lprev=(-5.138,3.447,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.5021,3.3583,0.4800) mvmt=(-0.3641,-0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.5021,3.3583,0.4800) mvmt=(-0.3641,-0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.5021,3.3583,0.5000) mvmt=(-0.3641,-0.0888,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(136.010,7.862,94.500) lpos=(-5.510,3.638,0.480) lprev=(-5.138,3.447,0.480) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-5.1380,3.6376,0.4800) mvmt=(0.0000,0.1905,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.638,7.862,94.500) lpos=(-5.138,3.638,0.480) lprev=(-5.138,3.447,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.0451,3.5210,0.4800) mvmt=(0.0928,0.0740,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.545,7.979,94.500) lpos=(-5.045,3.521,0.480) lprev=(-5.138,3.447,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.0451,3.5210,0.5000) mvmt=(0.0928,0.0740,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.0451,3.5210,-0.2700) mvmt=(0.0928,0.0740,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-5.0451,3.5210,-0.2700) out=(-5.0451,3.5210,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(135.545,7.979,93.750) lpos=(-5.045,3.521,-0.270) lprev=(-5.138,3.447,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-5.0451,3.5210,0.4800) mvmt=(0.0928,0.0740,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.545,7.979,94.500) lpos=(-5.045,3.521,0.480) lprev=(-5.138,3.447,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.0451,3.5210,0.5000) mvmt=(0.0928,0.0740,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.2010,3.3968,0.4800) mvmt=(-0.1559,-0.1242,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.701,8.103,94.500) lpos=(-5.201,3.397,0.480) lprev=(-5.045,3.521,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.2010,3.3968,0.5000) mvmt=(-0.1559,-0.1242,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.2010,3.3968,-0.2700) mvmt=(-0.1559,-0.1242,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-5.2010,3.3968,-0.2700) out=(-5.2010,3.3968,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(135.701,8.103,93.750) lpos=(-5.201,3.397,-0.270) lprev=(-5.045,3.521,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-5.2010,3.3968,0.4800) mvmt=(-0.1559,-0.1242,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.701,8.103,94.500) lpos=(-5.201,3.397,0.480) lprev=(-5.045,3.521,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.2010,3.3968,0.5000) mvmt=(-0.1559,-0.1242,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.5909,3.5579,0.4800) mvmt=(-0.3899,0.1611,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.5909,3.5579,0.4800) mvmt=(-0.3899,0.1611,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(136.091,7.942,94.500) lpos=(-5.591,3.558,0.480) lprev=(-5.201,3.397,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.5909,3.5579,0.4800) mvmt=(-0.3899,0.1611,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.5909,3.5579,0.4800) mvmt=(-0.3899,0.1611,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.6144,3.3635,0.4800) mvmt=(-0.4134,-0.0333,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(136.114,8.137,94.500) lpos=(-5.614,3.363,0.480) lprev=(-5.201,3.397,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.6144,3.3635,0.4800) mvmt=(-0.4134,-0.0333,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.6144,3.3635,0.4800) mvmt=(-0.4134,-0.0333,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.6144,3.3635,0.5000) mvmt=(-0.4134,-0.0333,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(136.091,7.942,94.500) lpos=(-5.591,3.558,0.480) lprev=(-5.201,3.397,0.480) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-5.2010,3.5579,0.4800) mvmt=(0.0000,0.1611,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.701,7.942,94.500) lpos=(-5.201,3.558,0.480) lprev=(-5.201,3.397,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.1316,3.4365,0.4800) mvmt=(0.0694,0.0397,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.632,8.063,94.500) lpos=(-5.132,3.437,0.480) lprev=(-5.201,3.397,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.1316,3.4365,0.5000) mvmt=(0.0694,0.0397,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.1316,3.4365,-0.2700) mvmt=(0.0694,0.0397,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-5.1316,3.4365,-0.2700) out=(-5.1316,3.4365,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(135.632,8.063,93.750) lpos=(-5.132,3.437,-0.270) lprev=(-5.201,3.397,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-5.1316,3.4365,0.4800) mvmt=(0.0694,0.0397,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.632,8.063,94.500) lpos=(-5.132,3.437,0.480) lprev=(-5.201,3.397,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.1316,3.4365,0.5000) mvmt=(0.0694,0.0397,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.3497,3.3118,0.4800) mvmt=(-0.2181,-0.1247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.850,8.188,94.500) lpos=(-5.350,3.312,0.480) lprev=(-5.132,3.437,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.3497,3.3118,0.4800) mvmt=(-0.2181,-0.1247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3497,3.3118,0.4800) mvmt=(-0.2181,-0.1247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3497,3.3118,0.5000) mvmt=(-0.2181,-0.1247,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.3497,3.3118,-0.2700) mvmt=(-0.2181,-0.1247,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-5.3497,3.3118,-0.2700) out=(-5.3497,3.3118,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(135.850,8.188,93.750) lpos=(-5.350,3.312,-0.270) lprev=(-5.132,3.437,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-5.3497,3.3118,0.4800) mvmt=(-0.2181,-0.1247,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.850,8.188,94.500) lpos=(-5.350,3.312,0.480) lprev=(-5.132,3.437,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.3497,3.3118,0.4800) mvmt=(-0.2181,-0.1247,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3497,3.3118,0.4800) mvmt=(-0.2181,-0.1247,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3497,3.3118,0.5000) mvmt=(-0.2181,-0.1247,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.7352,3.4711,0.4800) mvmt=(-0.3855,0.1593,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.7352,3.4711,0.4800) mvmt=(-0.3855,0.1593,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(136.235,8.029,94.500) lpos=(-5.735,3.471,0.480) lprev=(-5.350,3.312,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.7352,3.4711,0.4800) mvmt=(-0.3855,0.1593,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7352,3.4711,0.4800) mvmt=(-0.3855,0.1593,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40141 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40141 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7352,3.4711,0.4800) mvmt=(-0.3855,0.1593,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40142 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40142 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7352,3.4711,0.4800) mvmt=(-0.3855,0.1593,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7352,3.4711,0.4800) mvmt=(-0.3855,0.1593,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7352,3.4711,0.4800) mvmt=(-0.3855,0.1593,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40145 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40145 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7352,3.4711,0.4800) mvmt=(-0.3855,0.1593,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7598,3.3957,0.4800) mvmt=(-0.4101,0.0838,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(136.260,8.104,94.500) lpos=(-5.760,3.396,0.480) lprev=(-5.350,3.312,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.7598,3.3957,0.4800) mvmt=(-0.4101,0.0838,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7598,3.3957,0.4800) mvmt=(-0.4101,0.0838,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40141 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40141 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7598,3.3957,0.4800) mvmt=(-0.4101,0.0838,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40142 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40142 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7598,3.3957,0.4800) mvmt=(-0.4101,0.0838,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7598,3.3957,0.4800) mvmt=(-0.4101,0.0838,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7598,3.3957,0.4800) mvmt=(-0.4101,0.0838,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40145 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40145 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7598,3.3957,0.4800) mvmt=(-0.4101,0.0838,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7598,3.3957,0.5000) mvmt=(-0.4101,0.0838,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(136.235,8.029,94.500) lpos=(-5.735,3.471,0.480) lprev=(-5.350,3.312,0.480) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-5.3497,3.4711,0.4800) mvmt=(0.0000,0.1593,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.850,8.029,94.500) lpos=(-5.350,3.471,0.480) lprev=(-5.350,3.312,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.3497,3.4711,0.4800) mvmt=(0.0000,0.1593,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3497,3.4711,0.4800) mvmt=(0.0000,0.1593,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3101,3.3224,0.4800) mvmt=(0.0396,0.0106,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.810,8.178,94.500) lpos=(-5.310,3.322,0.480) lprev=(-5.350,3.312,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.3101,3.3224,0.4800) mvmt=(0.0396,0.0106,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3101,3.3224,0.4800) mvmt=(0.0396,0.0106,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3101,3.3224,0.5000) mvmt=(0.0396,0.0106,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.3101,3.3224,-0.2700) mvmt=(0.0396,0.0106,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-5.3101,3.3224,-0.2700) out=(-5.3101,3.3224,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(135.810,8.178,93.750) lpos=(-5.310,3.322,-0.270) lprev=(-5.350,3.312,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-5.3101,3.3224,0.4800) mvmt=(0.0396,0.0106,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.810,8.178,94.500) lpos=(-5.310,3.322,0.480) lprev=(-5.350,3.312,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.3101,3.3224,0.4800) mvmt=(0.0396,0.0106,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3101,3.3224,0.4800) mvmt=(0.0396,0.0106,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3101,3.3224,0.5000) mvmt=(0.0396,0.0106,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.6448,3.2332,0.4800) mvmt=(-0.3347,-0.0892,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.6448,3.2332,0.4800) mvmt=(-0.3347,-0.0892,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(136.145,8.267,94.500) lpos=(-5.645,3.233,0.480) lprev=(-5.310,3.322,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.6448,3.2332,0.4800) mvmt=(-0.3347,-0.0892,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.6448,3.2332,0.4800) mvmt=(-0.3347,-0.0892,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.6448,3.2332,0.5000) mvmt=(-0.3347,-0.0892,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(136.145,8.267,94.500) lpos=(-5.645,3.233,0.480) lprev=(-5.310,3.322,0.480) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-5.3101,3.2332,0.4800) mvmt=(0.0000,-0.0892,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.810,8.267,94.500) lpos=(-5.310,3.233,0.480) lprev=(-5.310,3.322,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.3101,3.2332,0.4800) mvmt=(0.0000,-0.0892,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3101,3.2332,0.4800) mvmt=(0.0000,-0.0892,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3101,3.2332,0.5000) mvmt=(0.0000,-0.0892,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.3101,3.2332,-0.2700) mvmt=(0.0000,-0.0892,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-5.3101,3.2332,-0.2700) out=(-5.3101,3.2332,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(135.810,8.267,93.750) lpos=(-5.310,3.233,-0.270) lprev=(-5.310,3.322,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-5.3101,3.2332,0.4800) mvmt=(0.0000,-0.0892,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.810,8.267,94.500) lpos=(-5.310,3.233,0.480) lprev=(-5.310,3.322,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.3101,3.2332,0.4800) mvmt=(0.0000,-0.0892,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3101,3.2332,0.4800) mvmt=(0.0000,-0.0892,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3101,3.2332,0.5000) mvmt=(0.0000,-0.0892,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementStrafeLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.3101,3.0964,0.4800) mvmt=(0.0000,-0.1368,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.810,8.404,94.500) lpos=(-5.310,3.096,0.480) lprev=(-5.310,3.233,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.3101,3.0964,0.4800) mvmt=(0.0000,-0.1368,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3101,3.0964,0.4800) mvmt=(0.0000,-0.1368,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3101,3.0964,0.5000) mvmt=(0.0000,-0.1368,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.3101,3.0964,-0.2700) mvmt=(0.0000,-0.1368,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-5.3101,3.0964,-0.2700) out=(-5.3101,3.0964,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(135.810,8.404,93.750) lpos=(-5.310,3.096,-0.270) lprev=(-5.310,3.233,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-5.3101,3.0964,0.4800) mvmt=(0.0000,-0.1368,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.810,8.404,94.500) lpos=(-5.310,3.096,0.480) lprev=(-5.310,3.233,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.3101,3.0964,0.4800) mvmt=(0.0000,-0.1368,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3101,3.0964,0.4800) mvmt=(0.0000,-0.1368,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3101,3.0964,0.5000) mvmt=(0.0000,-0.1368,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.3177,2.9587,0.4800) mvmt=(-0.0077,-0.1377,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.818,8.541,94.500) lpos=(-5.318,2.959,0.480) lprev=(-5.310,3.096,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.3177,2.9587,0.4800) mvmt=(-0.0077,-0.1377,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3177,2.9587,0.4800) mvmt=(-0.0077,-0.1377,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3177,2.9587,0.5000) mvmt=(-0.0077,-0.1377,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.3177,2.9587,-0.2700) mvmt=(-0.0077,-0.1377,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-5.3177,2.9587,-0.2700) out=(-5.3177,2.9587,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(135.818,8.541,93.750) lpos=(-5.318,2.959,-0.270) lprev=(-5.310,3.096,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-5.3177,2.9587,0.4800) mvmt=(-0.0077,-0.1377,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.818,8.541,94.500) lpos=(-5.318,2.959,0.480) lprev=(-5.310,3.096,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.3177,2.9587,0.4800) mvmt=(-0.0077,-0.1377,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3177,2.9587,0.4800) mvmt=(-0.0077,-0.1377,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3177,2.9587,0.5000) mvmt=(-0.0077,-0.1377,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.3252,2.8247,0.4800) mvmt=(-0.0074,-0.1340,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.825,8.675,94.500) lpos=(-5.325,2.825,0.480) lprev=(-5.318,2.959,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.3252,2.8247,0.4800) mvmt=(-0.0074,-0.1340,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3252,2.8247,0.4800) mvmt=(-0.0074,-0.1340,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3252,2.8247,0.5000) mvmt=(-0.0074,-0.1340,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.3252,2.8247,-0.2700) mvmt=(-0.0074,-0.1340,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-5.3252,2.8247,-0.2700) out=(-5.3252,2.8247,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(135.825,8.675,93.750) lpos=(-5.325,2.825,-0.270) lprev=(-5.318,2.959,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-5.3252,2.8247,0.4800) mvmt=(-0.0074,-0.1340,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.825,8.675,94.500) lpos=(-5.325,2.825,0.480) lprev=(-5.318,2.959,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.3252,2.8247,0.4800) mvmt=(-0.0074,-0.1340,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3252,2.8247,0.4800) mvmt=(-0.0074,-0.1340,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3252,2.8247,0.5000) mvmt=(-0.0074,-0.1340,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.3327,2.6888,0.4800) mvmt=(-0.0076,-0.1359,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.833,8.811,94.500) lpos=(-5.333,2.689,0.480) lprev=(-5.325,2.825,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.3327,2.6888,0.4800) mvmt=(-0.0076,-0.1359,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3327,2.6888,0.4800) mvmt=(-0.0076,-0.1359,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3327,2.6888,0.5000) mvmt=(-0.0076,-0.1359,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.3327,2.6888,-0.2700) mvmt=(-0.0076,-0.1359,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-5.3327,2.6888,-0.2700) out=(-5.3327,2.6888,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B4013F wpos=(135.833,8.811,93.750) lpos=(-5.333,2.689,-0.270) lprev=(-5.325,2.825,0.480) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-5.3327,2.6888,0.4800) mvmt=(-0.0076,-0.1359,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(135.833,8.811,94.500) lpos=(-5.333,2.689,0.480) lprev=(-5.325,2.825,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.3327,2.6888,0.4800) mvmt=(-0.0076,-0.1359,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3327,2.6888,0.4800) mvmt=(-0.0076,-0.1359,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.3327,2.6888,0.5000) mvmt=(-0.0076,-0.1359,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B4013F caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.7742,2.7134,0.4800) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(136.274,8.787,94.500) lpos=(-5.774,2.713,0.480) lprev=(-5.333,2.689,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.7742,2.7134,0.4800) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7742,2.7134,0.4800) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40141 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40141 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7742,2.7134,0.4800) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40142 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40142 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7742,2.7134,0.4800) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7742,2.7134,0.4800) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7742,2.7134,0.4800) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40145 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40145 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7742,2.7134,0.4800) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7742,2.7134,0.5000) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.7742,2.7134,-0.2700) mvmt=(-0.4415,0.0245,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(136.274,8.787,93.750) lpos=(-5.774,2.713,-0.270) lprev=(-5.333,2.689,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.7742,2.7134,-0.2700) mvmt=(-0.4415,0.0245,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-5.7742,2.7134,-0.2700) out=(-5.7742,2.7134,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B4013F -> 0xA9B40147 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B4013F -> 0xA9B40147 caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B40147 iter=0xA9B4013F result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B4013F bspResult=3 halted=False +[push-back-disp] site=dispatch center=(-5.7742,2.7134,0.4800) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B4013F wpos=(136.274,8.787,94.500) lpos=(-5.774,2.713,0.480) lprev=(-5.333,2.689,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.7742,2.7134,0.4800) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7742,2.7134,0.4800) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40141 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40141 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7742,2.7134,0.4800) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40142 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40142 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7742,2.7134,0.4800) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7742,2.7134,0.4800) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7742,2.7134,0.4800) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40145 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40145 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7742,2.7134,0.4800) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B4013F iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B4013F other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.7742,2.7134,0.5000) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-6.2135,2.7378,0.4800) mvmt=(-0.4393,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(136.714,8.762,94.500) lpos=(-6.214,2.738,0.480) lprev=(-5.774,2.713,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-6.2135,2.7378,0.4800) mvmt=(-0.4393,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-6.2135,2.7378,0.4800) mvmt=(-0.4393,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-6.2135,2.7378,0.4800) mvmt=(-0.4393,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40141 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40141 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-6.2135,2.7378,0.4800) mvmt=(-0.4393,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40142 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40142 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-6.2135,2.7378,0.4800) mvmt=(-0.4393,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-6.2135,2.7378,0.4800) mvmt=(-0.4393,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40145 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40145 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-6.2135,2.7378,0.4800) mvmt=(-0.4393,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-6.2135,2.7378,0.5000) mvmt=(-0.4393,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.2135,2.7378,-0.2700) mvmt=(-0.4393,0.0244,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(136.714,8.762,93.750) lpos=(-6.214,2.738,-0.270) lprev=(-5.774,2.713,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-6.2135,2.7378,-0.2700) mvmt=(-0.4393,0.0244,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-6.2135,2.7378,-0.2700) mvmt=(-0.4393,0.0244,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-6.2135,2.7378,-0.2700) mvmt=(-0.4393,0.0244,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40141 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40141 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-6.2135,2.7378,-0.2700) mvmt=(-0.4393,0.0244,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40142 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40142 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-6.2135,2.7378,-0.2700) mvmt=(-0.4393,0.0244,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-6.2135,2.7378,-0.2700) out=(-6.2135,2.7378,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=3 halted=False +[push-back-disp] site=dispatch center=(-6.2135,2.7378,0.4800) mvmt=(-0.4393,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(136.714,8.762,94.500) lpos=(-6.214,2.738,0.480) lprev=(-5.774,2.713,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-6.2135,2.7378,0.4800) mvmt=(-0.4393,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B4013F result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B4013F bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-6.2135,2.7378,0.4800) mvmt=(-0.4393,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40140 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40140 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-6.2135,2.7378,0.4800) mvmt=(-0.4393,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40141 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40141 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-6.2135,2.7378,0.4800) mvmt=(-0.4393,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40142 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40142 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-6.2135,2.7378,0.4800) mvmt=(-0.4393,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-6.2135,2.7378,0.4800) mvmt=(-0.4393,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40145 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40145 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-6.2135,2.7378,0.4800) mvmt=(-0.4393,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-6.2135,2.7378,0.5000) mvmt=(-0.4393,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cell-transit] 0xA9B4013F -> 0xA9B40143 pos=(136.714,8.762,94.020) reason=resolver +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-6.6517,2.7622,0.4800) mvmt=(-0.4382,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(137.152,8.738,94.500) lpos=(-6.652,2.762,0.480) lprev=(-6.214,2.738,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-6.6517,2.7622,0.4800) mvmt=(-0.4382,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-6.6517,2.7622,0.4800) mvmt=(-0.4382,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40145 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40145 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-6.6517,2.7622,0.4800) mvmt=(-0.4382,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.0028,3.2483,0.0300) mvmt=(-0.0244,-0.4382,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.6517,2.7622,0.5000) mvmt=(-0.4382,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.6517,2.7622,-0.2700) mvmt=(-0.4382,0.0244,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.152,8.738,93.750) lpos=(-6.652,2.762,-0.270) lprev=(-6.214,2.738,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-6.6517,2.7622,-0.2700) mvmt=(-0.4382,0.0244,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-6.6517,2.7622,-0.2700) out=(-6.6517,2.7622,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=3 halted=False +[push-back-disp] site=dispatch center=(-6.6517,2.7622,0.4800) mvmt=(-0.4382,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(137.152,8.738,94.500) lpos=(-6.652,2.762,0.480) lprev=(-6.214,2.738,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-6.6517,2.7622,0.4800) mvmt=(-0.4382,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40144 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40144 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-6.6517,2.7622,0.4800) mvmt=(-0.4382,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40145 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40145 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-6.6517,2.7622,0.4800) mvmt=(-0.4382,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.0028,3.2483,0.0300) mvmt=(-0.0244,-0.4382,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.6517,2.7622,0.5000) mvmt=(-0.4382,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.0896,2.7865,0.4800) mvmt=(-0.4379,0.0243,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(137.590,8.713,94.500) lpos=(-7.090,2.787,0.480) lprev=(-6.652,2.762,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-7.0896,2.7865,0.4800) mvmt=(-0.4379,0.0243,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8124,0.1268,0.0000) mvmt=(-0.4379,0.0243,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9785,2.8104,0.0300) mvmt=(-0.0243,-0.4379,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.0896,2.7865,0.5000) mvmt=(-0.4379,0.0243,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.0896,2.7865,-0.2700) mvmt=(-0.4379,0.0243,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.590,8.713,93.750) lpos=(-7.090,2.787,-0.270) lprev=(-6.652,2.762,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-7.0896,2.7865,-0.2700) mvmt=(-0.4379,0.0243,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.0896,2.7865,-0.2700) out=(-7.0896,2.7865,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=3 halted=False +[push-back-disp] site=dispatch center=(-7.0896,2.7865,0.4800) mvmt=(-0.4379,0.0243,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(137.590,8.713,94.500) lpos=(-7.090,2.787,0.480) lprev=(-6.652,2.762,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-7.0896,2.7865,0.4800) mvmt=(-0.4379,0.0243,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.8124,0.1268,0.0000) mvmt=(-0.4379,0.0243,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9785,2.8104,0.0300) mvmt=(-0.0243,-0.4379,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.0896,2.7865,0.5000) mvmt=(-0.4379,0.0243,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.5273,2.8109,0.4800) mvmt=(-0.4377,0.0243,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(138.027,8.689,94.500) lpos=(-7.527,2.811,0.480) lprev=(-7.090,2.787,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-7.5273,2.8109,0.4800) mvmt=(-0.4377,0.0243,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3747,0.1511,0.0000) mvmt=(-0.4377,0.0243,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9541,2.3727,0.0300) mvmt=(-0.0243,-0.4377,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1727,0.1309,0.0600) mvmt=(-0.4377,0.0243,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.5273,2.8109,0.5000) mvmt=(-0.4377,0.0243,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.5273,2.8109,-0.2700) mvmt=(-0.4377,0.0243,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.027,8.689,93.750) lpos=(-7.527,2.811,-0.270) lprev=(-7.090,2.787,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-7.5273,2.8109,-0.2700) mvmt=(-0.4377,0.0243,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.5273,2.8109,-0.2700) out=(-7.5273,2.8109,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=3 halted=False +[push-back-disp] site=dispatch center=(-7.5273,2.8109,0.4800) mvmt=(-0.4377,0.0243,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(138.027,8.689,94.500) lpos=(-7.527,2.811,0.480) lprev=(-7.090,2.787,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-7.5273,2.8109,0.4800) mvmt=(-0.4377,0.0243,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(2.3747,0.1511,0.0000) mvmt=(-0.4377,0.0243,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9541,2.3727,0.0300) mvmt=(-0.0243,-0.4377,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1727,0.1309,0.0600) mvmt=(-0.4377,0.0243,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.5273,2.8109,0.5000) mvmt=(-0.4377,0.0243,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.9658,2.8352,0.4800) mvmt=(-0.4384,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(138.466,8.665,94.500) lpos=(-7.966,2.835,0.480) lprev=(-7.527,2.811,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-7.9658,2.8352,0.4800) mvmt=(-0.4384,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.9362,-2.0295,0.0000) mvmt=(-0.4384,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9362,0.1755,0.0000) mvmt=(-0.4384,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9298,1.9342,0.0300) mvmt=(-0.0244,-0.4384,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7342,0.1552,0.0600) mvmt=(-0.4384,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.9658,2.8352,0.5000) mvmt=(-0.4384,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.9658,2.8352,-0.2700) mvmt=(-0.4384,0.0244,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.466,8.665,93.750) lpos=(-7.966,2.835,-0.270) lprev=(-7.527,2.811,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-7.9658,2.8352,-0.2700) mvmt=(-0.4384,0.0244,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.9658,2.8352,-0.2700) out=(-7.9658,2.8352,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=3 halted=False +[push-back-disp] site=dispatch center=(-7.9658,2.8352,0.4800) mvmt=(-0.4384,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(138.466,8.665,94.500) lpos=(-7.966,2.835,0.480) lprev=(-7.527,2.811,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-7.9658,2.8352,0.4800) mvmt=(-0.4384,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.9362,-2.0295,0.0000) mvmt=(-0.4384,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9362,0.1755,0.0000) mvmt=(-0.4384,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9298,1.9342,0.0300) mvmt=(-0.0244,-0.4384,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7342,0.1552,0.0600) mvmt=(-0.4384,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.9658,2.8352,0.5000) mvmt=(-0.4384,0.0244,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-8.4072,2.8598,0.4800) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(138.907,8.640,94.500) lpos=(-8.407,2.860,0.480) lprev=(-7.966,2.835,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-8.4072,2.8598,0.4800) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.4948,-2.0049,0.0000) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4948,0.2001,0.0000) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9052,1.4928,0.0300) mvmt=(-0.0245,-0.4415,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2928,0.1798,0.0600) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.4072,2.8598,0.5000) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.4072,2.8598,-0.2700) mvmt=(-0.4415,0.0245,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.907,8.640,93.750) lpos=(-8.407,2.860,-0.270) lprev=(-7.966,2.835,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-8.4072,2.8598,-0.2700) mvmt=(-0.4415,0.0245,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-8.4072,2.8598,-0.2700) out=(-8.4072,2.8598,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=3 halted=False +[push-back-disp] site=dispatch center=(-8.4072,2.8598,0.4800) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(138.907,8.640,94.500) lpos=(-8.407,2.860,0.480) lprev=(-7.966,2.835,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-8.4072,2.8598,0.4800) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.4948,-2.0049,0.0000) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4948,0.2001,0.0000) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9052,1.4928,0.0300) mvmt=(-0.0245,-0.4415,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2928,0.1798,0.0600) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.4072,2.8598,0.5000) mvmt=(-0.4415,0.0245,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-8.8597,2.8905,0.4800) mvmt=(-0.4525,0.0307,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.360,8.610,94.500) lpos=(-8.860,2.890,0.480) lprev=(-8.407,2.860,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-8.8597,2.8905,0.4800) mvmt=(-0.4525,0.0307,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.0423,-1.9742,0.0000) mvmt=(-0.4525,0.0307,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6423,0.2308,0.0000) mvmt=(-0.4525,0.0307,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0423,0.2308,0.0000) mvmt=(-0.4525,0.0307,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8745,1.0403,0.0300) mvmt=(-0.0307,-0.4525,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8403,0.2105,0.0600) mvmt=(-0.4525,0.0307,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.8597,2.8905,0.5000) mvmt=(-0.4525,0.0307,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.8597,2.8905,-0.2700) mvmt=(-0.4525,0.0307,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.360,8.610,93.750) lpos=(-8.860,2.890,-0.270) lprev=(-8.407,2.860,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-8.8597,2.8905,-0.2700) mvmt=(-0.4525,0.0307,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-8.8597,2.8905,-0.2700) out=(-8.8597,2.8905,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=3 halted=False +[push-back-disp] site=dispatch center=(-8.8597,2.8905,0.4800) mvmt=(-0.4525,0.0307,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.360,8.610,94.500) lpos=(-8.860,2.890,0.480) lprev=(-8.407,2.860,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-8.8597,2.8905,0.4800) mvmt=(-0.4525,0.0307,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(1.0423,-1.9742,0.0000) mvmt=(-0.4525,0.0307,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6423,0.2308,0.0000) mvmt=(-0.4525,0.0307,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0423,0.2308,0.0000) mvmt=(-0.4525,0.0307,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8745,1.0403,0.0300) mvmt=(-0.0307,-0.4525,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8403,0.2105,0.0600) mvmt=(-0.4525,0.0307,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.8597,2.8905,0.5000) mvmt=(-0.4525,0.0307,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.3068,2.9616,0.4800) mvmt=(-0.4471,0.0711,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.807,8.538,94.500) lpos=(-9.307,2.962,0.480) lprev=(-8.860,2.890,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3068,2.9616,0.4800) mvmt=(-0.4471,0.0711,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.5952,-1.9031,0.0000) mvmt=(-0.4471,0.0711,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1952,0.3019,0.0000) mvmt=(-0.4471,0.0711,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5952,0.3019,0.0000) mvmt=(-0.4471,0.0711,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8034,0.5932,0.0300) mvmt=(-0.0711,-0.4471,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3932,0.2816,0.0600) mvmt=(-0.4471,0.0711,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,2.9616,0.5000) mvmt=(-0.4471,0.0711,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,2.9616,-0.2700) mvmt=(-0.4471,0.0711,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.807,8.538,93.750) lpos=(-9.307,2.962,-0.270) lprev=(-8.860,2.890,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3068,2.9616,-0.2700) mvmt=(-0.4471,0.0711,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.3068,2.9616,-0.2700) out=(-9.3068,2.9616,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=3 halted=False +[push-back-disp] site=dispatch center=(-9.3068,2.9616,0.4800) mvmt=(-0.4471,0.0711,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.807,8.538,94.500) lpos=(-9.307,2.962,0.480) lprev=(-8.860,2.890,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3068,2.9616,0.4800) mvmt=(-0.4471,0.0711,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.5952,-1.9031,0.0000) mvmt=(-0.4471,0.0711,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1952,0.3019,0.0000) mvmt=(-0.4471,0.0711,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5952,0.3019,0.0000) mvmt=(-0.4471,0.0711,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8034,0.5932,0.0300) mvmt=(-0.0711,-0.4471,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3932,0.2816,0.0600) mvmt=(-0.4471,0.0711,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,2.9616,0.5000) mvmt=(-0.4471,0.0711,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.7364,3.0694,0.4800) mvmt=(-0.4296,0.1078,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(140.236,8.431,94.500) lpos=(-9.736,3.069,0.480) lprev=(-9.307,2.962,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.7364,3.0694,0.4800) mvmt=(-0.4296,0.1078,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.1656,-1.7953,0.0000) mvmt=(-0.4296,0.1078,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7656,0.4097,0.0000) mvmt=(-0.4296,0.1078,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1656,0.4097,0.0000) mvmt=(-0.4296,0.1078,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.7364,3.0694,0.4800) mvmt=(-0.4296,0.1078,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(140.236,8.431,94.500) lpos=(-9.736,3.069,0.480) lprev=(-9.307,2.962,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.7364,3.0694,0.4800) mvmt=(-0.4296,0.1078,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.1656,-1.7953,0.0000) mvmt=(-0.4296,0.1078,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7656,0.4097,0.0000) mvmt=(-0.4296,0.1078,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1656,0.4097,0.0000) mvmt=(-0.4296,0.1078,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.6689,3.2364,0.4800) mvmt=(-0.3621,0.2748,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(140.169,8.264,94.500) lpos=(-9.669,3.236,0.480) lprev=(-9.307,2.962,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.6689,3.2364,0.4800) mvmt=(-0.3621,0.2748,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.2331,-1.6283,0.0000) mvmt=(-0.3621,0.2748,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8331,0.5767,0.0000) mvmt=(-0.3621,0.2748,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2331,0.5767,0.0000) mvmt=(-0.3621,0.2748,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5286,0.2311,0.0300) mvmt=(-0.2748,-0.3621,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.5286,0.2311,0.0300) out=(0.5286,0.2311,0.8550) delta=(0.0000,0.0000,0.8250) deltaMag=0.8250 n=(0.0000,0.0000,1.0000) d=-0.3750 r=0.4800 winterp=1.0000->-0.3750 dpPos=-0.3450 dpMove=-0.6000 iDist=1.3750 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.845 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B40147 -> 0xA9B40143 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.845 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B40147 -> 0xA9B40143 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-9.6689,3.2364,1.3050) mvmt=(-0.3621,0.2748,0.8250) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(140.169,8.264,95.325) lpos=(-9.669,3.236,1.305) lprev=(-9.307,2.962,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.2331,-1.6283,0.8250) mvmt=(-0.3621,0.2748,0.8250) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(1.8331,0.5767,0.8250) mvmt=(-0.3621,0.2748,0.8250) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(0.2331,0.5767,0.8250) mvmt=(-0.3621,0.2748,0.8250) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(0.5286,0.2311,0.8550) mvmt=(-0.2748,-0.3621,0.8250) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(1.0311,0.5564,0.8850) mvmt=(-0.3621,0.2748,0.8250) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(-9.6689,3.2364,1.3250) mvmt=(-0.3621,0.2748,0.8250) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(-9.6689,3.2364,1.3050) mvmt=(-0.3621,0.2748,0.8250) collide=False insertType=1 objState=0x303 winterp=-0.3750 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(140.169,8.264,95.325) lpos=(-9.669,3.236,1.305) lprev=(-9.307,2.962,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.2331,-1.6283,0.8250) mvmt=(-0.3621,0.2748,0.8250) collide=False insertType=1 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(1.8331,0.5767,0.8250) mvmt=(-0.3621,0.2748,0.8250) collide=False insertType=1 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(0.2331,0.5767,0.8250) mvmt=(-0.3621,0.2748,0.8250) collide=False insertType=1 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(0.5286,0.2311,0.8550) mvmt=(-0.2748,-0.3621,0.8250) collide=False insertType=1 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(1.0311,0.5564,0.8850) mvmt=(-0.3621,0.2748,0.8250) collide=False insertType=1 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(-9.6689,3.2364,1.3250) mvmt=(-0.3621,0.2748,0.8250) collide=False insertType=1 objState=0x303 winterp=-0.3750 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(-9.3068,3.0694,0.4800) mvmt=(0.0000,0.1078,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.807,8.431,94.500) lpos=(-9.307,3.069,0.480) lprev=(-9.307,2.962,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3068,3.0694,0.4800) mvmt=(0.0000,0.1078,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.5952,-1.7953,0.0000) mvmt=(0.0000,0.1078,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(2.1952,0.4097,0.0000) mvmt=(0.0000,0.1078,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(0.5952,0.4097,0.0000) mvmt=(0.0000,0.1078,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(0.6956,0.5932,0.0300) mvmt=(-0.1078,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(1.3932,0.3894,0.0600) mvmt=(0.0000,0.1078,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,3.0694,0.5000) mvmt=(0.0000,0.1078,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,3.0694,-0.2700) mvmt=(0.0000,0.1078,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.807,8.431,93.750) lpos=(-9.307,3.069,-0.270) lprev=(-9.307,2.962,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3068,3.0694,-0.2700) mvmt=(0.0000,0.1078,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.3068,3.0694,-0.2700) out=(-9.3068,3.0694,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.845 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B40143 -> 0xA9B40147 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.845 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B40143 -> 0xA9B40147 caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=3 halted=False +[push-back-disp] site=dispatch center=(-9.3068,3.0694,0.4800) mvmt=(0.0000,0.1078,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.807,8.431,94.500) lpos=(-9.307,3.069,0.480) lprev=(-9.307,2.962,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3068,3.0694,0.4800) mvmt=(0.0000,0.1078,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.5952,-1.7953,0.0000) mvmt=(0.0000,0.1078,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1952,0.4097,0.0000) mvmt=(0.0000,0.1078,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5952,0.4097,0.0000) mvmt=(0.0000,0.1078,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6956,0.5932,0.0300) mvmt=(-0.1078,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3932,0.3894,0.0600) mvmt=(0.0000,0.1078,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,3.0694,0.5000) mvmt=(0.0000,0.1078,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.3068,3.2166,0.4800) mvmt=(0.0000,0.1472,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.807,8.283,94.500) lpos=(-9.307,3.217,0.480) lprev=(-9.307,3.069,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3068,3.2166,0.4800) mvmt=(0.0000,0.1472,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.5952,-1.6481,0.0000) mvmt=(0.0000,0.1472,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1952,0.5569,0.0000) mvmt=(0.0000,0.1472,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5952,0.5569,0.0000) mvmt=(0.0000,0.1472,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5484,0.5932,0.0300) mvmt=(-0.1472,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3932,0.5366,0.0600) mvmt=(0.0000,0.1472,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,3.2166,0.5000) mvmt=(0.0000,0.1472,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,3.2166,-0.2700) mvmt=(0.0000,0.1472,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.807,8.283,93.750) lpos=(-9.307,3.217,-0.270) lprev=(-9.307,3.069,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3068,3.2166,-0.2700) mvmt=(0.0000,0.1472,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.3068,3.2166,-0.2700) out=(-9.3068,3.2166,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=3 halted=False +[push-back-disp] site=dispatch center=(-9.3068,3.2166,0.4800) mvmt=(0.0000,0.1472,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.807,8.283,94.500) lpos=(-9.307,3.217,0.480) lprev=(-9.307,3.069,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3068,3.2166,0.4800) mvmt=(0.0000,0.1472,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.5952,-1.6481,0.0000) mvmt=(0.0000,0.1472,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1952,0.5569,0.0000) mvmt=(0.0000,0.1472,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5952,0.5569,0.0000) mvmt=(0.0000,0.1472,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5484,0.5932,0.0300) mvmt=(-0.1472,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3932,0.5366,0.0600) mvmt=(0.0000,0.1472,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,3.2166,0.5000) mvmt=(0.0000,0.1472,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.7109,3.3985,0.4800) mvmt=(-0.4041,0.1819,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(140.211,8.101,94.500) lpos=(-9.711,3.399,0.480) lprev=(-9.307,3.217,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.7109,3.3985,0.4800) mvmt=(-0.4041,0.1819,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.1911,-1.4662,0.0000) mvmt=(-0.4041,0.1819,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7911,0.7388,0.0000) mvmt=(-0.4041,0.1819,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1911,0.7388,0.0000) mvmt=(-0.4041,0.1819,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3665,0.1891,0.0300) mvmt=(-0.1819,-0.4041,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.7109,3.3985,0.4800) mvmt=(-0.4041,0.1819,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(140.211,8.101,94.500) lpos=(-9.711,3.399,0.480) lprev=(-9.307,3.217,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.7109,3.3985,0.4800) mvmt=(-0.4041,0.1819,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.1911,-1.4662,0.0000) mvmt=(-0.4041,0.1819,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7911,0.7388,0.0000) mvmt=(-0.4041,0.1819,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1911,0.7388,0.0000) mvmt=(-0.4041,0.1819,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3665,0.1891,0.0300) mvmt=(-0.1819,-0.4041,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3665,0.1891,0.0300) out=(0.3665,0.1891,0.8550) delta=(0.0000,0.0000,0.8250) deltaMag=0.8250 n=(0.0000,0.0000,1.0000) d=-0.3750 r=0.4800 winterp=1.0000->-0.3750 dpPos=-0.3450 dpMove=-0.6000 iDist=1.3750 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.845 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B40147 -> 0xA9B40143 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.845 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B40147 -> 0xA9B40143 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-9.7109,3.3985,1.3050) mvmt=(-0.4041,0.1819,0.8250) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(140.211,8.101,95.325) lpos=(-9.711,3.399,1.305) lprev=(-9.307,3.217,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.1911,-1.4662,0.8250) mvmt=(-0.4041,0.1819,0.8250) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(1.7911,0.7388,0.8250) mvmt=(-0.4041,0.1819,0.8250) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(0.1911,0.7388,0.8250) mvmt=(-0.4041,0.1819,0.8250) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(0.3665,0.1891,0.8550) mvmt=(-0.1819,-0.4041,0.8250) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(0.9891,0.7185,0.8850) mvmt=(-0.4041,0.1819,0.8250) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(-9.7109,3.3985,1.3250) mvmt=(-0.4041,0.1819,0.8250) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(-9.7109,3.3985,1.3050) mvmt=(-0.4041,0.1819,0.8250) collide=False insertType=1 objState=0x303 winterp=-0.3750 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(140.211,8.101,95.325) lpos=(-9.711,3.399,1.305) lprev=(-9.307,3.217,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.1911,-1.4662,0.8250) mvmt=(-0.4041,0.1819,0.8250) collide=False insertType=1 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(1.7911,0.7388,0.8250) mvmt=(-0.4041,0.1819,0.8250) collide=False insertType=1 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(0.1911,0.7388,0.8250) mvmt=(-0.4041,0.1819,0.8250) collide=False insertType=1 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(0.3665,0.1891,0.8550) mvmt=(-0.1819,-0.4041,0.8250) collide=False insertType=1 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(0.9891,0.7185,0.8850) mvmt=(-0.4041,0.1819,0.8250) collide=False insertType=1 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(-9.7109,3.3985,1.3250) mvmt=(-0.4041,0.1819,0.8250) collide=False insertType=1 objState=0x303 winterp=-0.3750 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(-9.3068,3.3985,0.4800) mvmt=(0.0000,0.1819,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.807,8.101,94.500) lpos=(-9.307,3.399,0.480) lprev=(-9.307,3.217,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3068,3.3985,0.4800) mvmt=(0.0000,0.1819,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.5952,-1.4662,0.0000) mvmt=(0.0000,0.1819,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(2.1952,0.7388,0.0000) mvmt=(0.0000,0.1819,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(0.5952,0.7388,0.0000) mvmt=(-0.0000,0.1819,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(0.3665,0.5932,0.0300) mvmt=(-0.1819,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(1.3932,0.7185,0.0600) mvmt=(0.0000,0.1819,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,3.3985,0.5000) mvmt=(0.0000,0.1819,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.3750 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,3.3985,-0.2700) mvmt=(0.0000,0.1819,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.807,8.101,93.750) lpos=(-9.307,3.399,-0.270) lprev=(-9.307,3.217,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3068,3.3985,-0.2700) mvmt=(0.0000,0.1819,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.3068,3.3985,-0.2700) out=(-9.3068,3.3985,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.845 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B40143 -> 0xA9B40147 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.845 -> n=(0.000,0.000,1.000) D=-94.020 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B40143 -> 0xA9B40147 caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=3 halted=False +[push-back-disp] site=dispatch center=(-9.3068,3.3985,0.4800) mvmt=(0.0000,0.1819,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.807,8.101,94.500) lpos=(-9.307,3.399,0.480) lprev=(-9.307,3.217,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3068,3.3985,0.4800) mvmt=(0.0000,0.1819,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.5952,-1.4662,0.0000) mvmt=(0.0000,0.1819,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1952,0.7388,0.0000) mvmt=(0.0000,0.1819,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5952,0.7388,0.0000) mvmt=(-0.0000,0.1819,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3665,0.5932,0.0300) mvmt=(-0.1819,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3932,0.7185,0.0600) mvmt=(0.0000,0.1819,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,3.3985,0.5000) mvmt=(0.0000,0.1819,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.3068,3.6164,0.4800) mvmt=(0.0000,0.2179,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.807,7.884,94.500) lpos=(-9.307,3.616,0.480) lprev=(-9.307,3.399,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3068,3.6164,0.4800) mvmt=(0.0000,0.2179,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.5952,-1.2483,0.0000) mvmt=(0.0000,0.2179,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1952,0.9567,0.0000) mvmt=(0.0000,0.2179,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5952,0.9567,0.0000) mvmt=(0.0000,0.2179,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1486,0.5932,0.0300) mvmt=(-0.2179,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3932,0.9364,0.0600) mvmt=(0.0000,0.2179,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,3.6164,0.5000) mvmt=(0.0000,0.2179,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,3.6164,-0.2700) mvmt=(0.0000,0.2179,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.807,7.884,93.750) lpos=(-9.307,3.616,-0.270) lprev=(-9.307,3.399,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3068,3.6164,-0.2700) mvmt=(0.0000,0.2179,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.3068,3.6164,-0.2700) out=(-9.3068,3.6164,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=3 halted=False +[push-back-disp] site=dispatch center=(-9.3068,3.6164,0.4800) mvmt=(0.0000,0.2179,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.807,7.884,94.500) lpos=(-9.307,3.616,0.480) lprev=(-9.307,3.399,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3068,3.6164,0.4800) mvmt=(0.0000,0.2179,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.5952,-1.2483,0.0000) mvmt=(0.0000,0.2179,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1952,0.9567,0.0000) mvmt=(0.0000,0.2179,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5952,0.9567,0.0000) mvmt=(0.0000,0.2179,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1486,0.5932,0.0300) mvmt=(-0.2179,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3932,0.9364,0.0600) mvmt=(0.0000,0.2179,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,3.6164,0.5000) mvmt=(0.0000,0.2179,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.5164,3.9739,0.4800) mvmt=(-0.2096,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(140.016,7.526,94.500) lpos=(-9.516,3.974,0.480) lprev=(-9.307,3.616,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.5164,3.9739,0.4800) mvmt=(-0.2096,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.3856,-0.8908,0.0000) mvmt=(-0.2096,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9856,1.3142,0.0000) mvmt=(-0.2096,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3856,1.3142,0.0000) mvmt=(-0.2096,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2089,0.3836,0.0300) mvmt=(-0.3576,-0.2096,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.5164,3.9739,0.4800) mvmt=(-0.2096,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(140.016,7.526,94.500) lpos=(-9.516,3.974,0.480) lprev=(-9.307,3.616,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.5164,3.9739,0.4800) mvmt=(-0.2096,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.3856,-0.8908,0.0000) mvmt=(-0.2096,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9856,1.3142,0.0000) mvmt=(-0.2096,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3856,1.3142,0.0000) mvmt=(-0.2096,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2089,0.3836,0.0300) mvmt=(-0.3576,-0.2096,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1836,1.2939,0.0600) mvmt=(-0.2096,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.5164,3.9739,0.5000) mvmt=(-0.2096,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,3.9739,0.4800) mvmt=(0.0000,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.807,7.526,94.500) lpos=(-9.307,3.974,0.480) lprev=(-9.307,3.616,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3068,3.9739,0.4800) mvmt=(0.0000,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.5952,-0.8908,0.0000) mvmt=(0.0000,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1952,1.3142,0.0000) mvmt=(0.0000,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5952,1.3142,0.0000) mvmt=(0.0000,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2089,0.5932,0.0300) mvmt=(-0.3576,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3932,1.2939,0.0600) mvmt=(0.0000,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,3.9739,0.5000) mvmt=(0.0000,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,3.9739,-0.2700) mvmt=(0.0000,0.3576,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.807,7.526,93.750) lpos=(-9.307,3.974,-0.270) lprev=(-9.307,3.616,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3068,3.9739,-0.2700) mvmt=(0.0000,0.3576,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.3068,3.9739,-0.2700) out=(-9.3068,3.9739,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=3 halted=False +[push-back-disp] site=dispatch center=(-9.3068,3.9739,0.4800) mvmt=(0.0000,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.807,7.526,94.500) lpos=(-9.307,3.974,0.480) lprev=(-9.307,3.616,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3068,3.9739,0.4800) mvmt=(0.0000,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.5952,-0.8908,0.0000) mvmt=(0.0000,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1952,1.3142,0.0000) mvmt=(0.0000,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5952,1.3142,0.0000) mvmt=(0.0000,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2089,0.5932,0.0300) mvmt=(-0.3576,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3932,1.2939,0.0600) mvmt=(0.0000,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,3.9739,0.5000) mvmt=(0.0000,0.3576,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.3068,4.3522,0.4800) mvmt=(0.0000,0.3783,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.807,7.148,94.500) lpos=(-9.307,4.352,0.480) lprev=(-9.307,3.974,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3068,4.3522,0.4800) mvmt=(0.0000,0.3783,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.5952,-0.5125,0.0000) mvmt=(-0.0000,0.3783,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1952,1.6925,0.0000) mvmt=(0.0000,0.3783,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5952,1.6925,0.0000) mvmt=(0.0000,0.3783,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5872,0.5932,0.0300) mvmt=(-0.3783,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3932,1.6722,0.0600) mvmt=(-0.0000,0.3783,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,4.3522,0.5000) mvmt=(0.0000,0.3783,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,4.3522,-0.2700) mvmt=(0.0000,0.3783,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.807,7.148,93.750) lpos=(-9.307,4.352,-0.270) lprev=(-9.307,3.974,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3068,4.3522,-0.2700) mvmt=(0.0000,0.3783,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.3068,4.3522,-0.2700) out=(-9.3068,4.3522,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=3 halted=False +[push-back-disp] site=dispatch center=(-9.3068,4.3522,0.4800) mvmt=(0.0000,0.3783,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.807,7.148,94.500) lpos=(-9.307,4.352,0.480) lprev=(-9.307,3.974,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3068,4.3522,0.4800) mvmt=(0.0000,0.3783,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.5952,-0.5125,0.0000) mvmt=(-0.0000,0.3783,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1952,1.6925,0.0000) mvmt=(0.0000,0.3783,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5952,1.6925,0.0000) mvmt=(0.0000,0.3783,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5872,0.5932,0.0300) mvmt=(-0.3783,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3932,1.6722,0.0600) mvmt=(-0.0000,0.3783,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,4.3522,0.5000) mvmt=(0.0000,0.3783,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.4537,4.7367,0.4800) mvmt=(-0.1469,0.3845,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.954,6.763,94.500) lpos=(-9.454,4.737,0.480) lprev=(-9.307,4.352,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.4537,4.7367,0.4800) mvmt=(-0.1469,0.3845,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.4483,-0.1280,0.0000) mvmt=(-0.1469,0.3845,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.4537,4.7367,0.4800) mvmt=(-0.1469,0.3845,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.954,6.763,94.500) lpos=(-9.454,4.737,0.480) lprev=(-9.307,4.352,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.4537,4.7367,0.4800) mvmt=(-0.1469,0.3845,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.4483,-0.1280,0.0000) mvmt=(-0.1469,0.3845,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.2164,4.6690,0.4800) mvmt=(0.0904,0.3167,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.716,6.831,94.500) lpos=(-9.216,4.669,0.480) lprev=(-9.307,4.352,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.2164,4.6690,0.4800) mvmt=(0.0904,0.3167,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.6856,-0.1957,0.0000) mvmt=(0.0904,0.3167,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2856,2.0093,0.0000) mvmt=(0.0904,0.3167,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6856,2.0093,0.0000) mvmt=(0.0904,0.3167,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9040,0.6836,0.0300) mvmt=(-0.3167,0.0904,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4836,1.9890,0.0600) mvmt=(0.0904,0.3167,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.2164,4.6690,0.5000) mvmt=(0.0904,0.3167,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.4531,4.3520,0.4800) mvmt=(-0.1463,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.953,7.148,94.500) lpos=(-9.453,4.352,0.480) lprev=(-9.307,4.352,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.4531,4.3520,0.4800) mvmt=(-0.1463,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.4489,-0.5127,0.0000) mvmt=(-0.1463,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0489,1.6923,0.0000) mvmt=(-0.1463,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4489,1.6923,0.0000) mvmt=(-0.1463,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5870,0.4469,0.0300) mvmt=(0.0002,-0.1463,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.4531,4.3520,0.4800) mvmt=(-0.1463,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.953,7.148,94.500) lpos=(-9.453,4.352,0.480) lprev=(-9.307,4.352,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.4531,4.3520,0.4800) mvmt=(-0.1463,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.4489,-0.5127,0.0000) mvmt=(-0.1463,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0489,1.6923,0.0000) mvmt=(-0.1463,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4489,1.6923,0.0000) mvmt=(-0.1463,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5870,0.4469,0.0300) mvmt=(0.0002,-0.1463,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2469,1.6720,0.0600) mvmt=(-0.1463,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.4531,4.3520,0.5000) mvmt=(-0.1463,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,4.3520,0.4800) mvmt=(0.0000,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.807,7.148,94.500) lpos=(-9.307,4.352,0.480) lprev=(-9.307,4.352,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3068,4.3520,0.4800) mvmt=(0.0000,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.5952,-0.5127,0.0000) mvmt=(0.0000,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1952,1.6923,0.0000) mvmt=(0.0000,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5952,1.6923,0.0000) mvmt=(0.0000,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5870,0.5932,0.0300) mvmt=(0.0002,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3932,1.6720,0.0600) mvmt=(0.0000,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,4.3520,0.5000) mvmt=(0.0000,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,4.3520,-0.2700) mvmt=(0.0000,-0.0002,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.807,7.148,93.750) lpos=(-9.307,4.352,-0.270) lprev=(-9.307,4.352,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3068,4.3520,-0.2700) mvmt=(0.0000,-0.0002,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.3068,4.3520,-0.2700) out=(-9.3068,4.3520,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=3 halted=False +[push-back-disp] site=dispatch center=(-9.3068,4.3520,0.4800) mvmt=(0.0000,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.807,7.148,94.500) lpos=(-9.307,4.352,0.480) lprev=(-9.307,4.352,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3068,4.3520,0.4800) mvmt=(0.0000,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.5952,-0.5127,0.0000) mvmt=(0.0000,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1952,1.6923,0.0000) mvmt=(0.0000,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5952,1.6923,0.0000) mvmt=(0.0000,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5870,0.5932,0.0300) mvmt=(0.0002,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3932,1.6720,0.0600) mvmt=(0.0000,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.3068,4.3520,0.5000) mvmt=(0.0000,-0.0002,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.3068,4.7689,0.4800) mvmt=(0.0000,0.4168,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.807,6.731,94.500) lpos=(-9.307,4.769,0.480) lprev=(-9.307,4.352,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3068,4.7689,0.4800) mvmt=(0.0000,0.4168,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.5952,-0.0959,0.0000) mvmt=(0.0000,0.4168,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.2414,4.7583,0.4800) mvmt=(0.0654,0.4063,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.741,6.742,94.500) lpos=(-9.241,4.758,0.480) lprev=(-9.307,4.352,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.2414,4.7583,0.4800) mvmt=(0.0654,0.4063,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.6606,-0.1064,0.0000) mvmt=(0.0654,0.4063,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2606,2.0986,0.0000) mvmt=(0.0654,0.4063,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6606,2.0986,0.0000) mvmt=(0.0654,0.4063,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9933,0.6586,0.0300) mvmt=(-0.4063,0.0654,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4586,2.0783,0.0600) mvmt=(0.0654,0.4063,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.2414,4.7583,0.5000) mvmt=(0.0654,0.4063,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.2414,4.7583,-0.2700) mvmt=(0.0654,0.4063,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.741,6.742,93.750) lpos=(-9.241,4.758,-0.270) lprev=(-9.307,4.352,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.2414,4.7583,-0.2700) mvmt=(0.0654,0.4063,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.2414,4.7583,-0.2700) out=(-9.2414,4.7583,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=3 halted=False +[push-back-disp] site=dispatch center=(-9.2414,4.7583,0.4800) mvmt=(0.0654,0.4063,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.741,6.742,94.500) lpos=(-9.241,4.758,0.480) lprev=(-9.307,4.352,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.2414,4.7583,0.4800) mvmt=(0.0654,0.4063,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.6606,-0.1064,0.0000) mvmt=(0.0654,0.4063,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2606,2.0986,0.0000) mvmt=(0.0654,0.4063,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6606,2.0986,0.0000) mvmt=(0.0654,0.4063,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9933,0.6586,0.0300) mvmt=(-0.4063,0.0654,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4586,2.0783,0.0600) mvmt=(0.0654,0.4063,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.2414,4.7583,0.5000) mvmt=(0.0654,0.4063,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.1767,5.1602,0.4800) mvmt=(0.0647,0.4019,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.677,6.340,94.500) lpos=(-9.177,5.160,0.480) lprev=(-9.241,4.758,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.1767,5.1602,0.4800) mvmt=(0.0647,0.4019,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.7253,0.2955,0.0000) mvmt=(0.0647,0.4019,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3253,2.5005,0.0000) mvmt=(0.0647,0.4019,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7253,2.5005,0.0000) mvmt=(0.0647,0.4019,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3952,0.7233,0.0300) mvmt=(-0.4019,0.0647,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5233,2.4802,0.0600) mvmt=(0.0647,0.4019,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.1767,5.1602,0.5000) mvmt=(0.0647,0.4019,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.1767,5.1602,-0.2700) mvmt=(0.0647,0.4019,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.677,6.340,93.750) lpos=(-9.177,5.160,-0.270) lprev=(-9.241,4.758,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.1767,5.1602,-0.2700) mvmt=(0.0647,0.4019,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.1767,5.1602,-0.2700) out=(-9.1767,5.1602,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=3 halted=False +[push-back-disp] site=dispatch center=(-9.1767,5.1602,0.4800) mvmt=(0.0647,0.4019,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.677,6.340,94.500) lpos=(-9.177,5.160,0.480) lprev=(-9.241,4.758,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.1767,5.1602,0.4800) mvmt=(0.0647,0.4019,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.7253,0.2955,0.0000) mvmt=(0.0647,0.4019,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3253,2.5005,0.0000) mvmt=(0.0647,0.4019,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7253,2.5005,0.0000) mvmt=(0.0647,0.4019,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3952,0.7233,0.0300) mvmt=(-0.4019,0.0647,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5233,2.4802,0.0600) mvmt=(0.0647,0.4019,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.1767,5.1602,0.5000) mvmt=(0.0647,0.4019,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.2699,5.5878,0.4800) mvmt=(-0.0932,0.4276,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.770,5.912,94.500) lpos=(-9.270,5.588,0.480) lprev=(-9.177,5.160,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.2699,5.5878,0.4800) mvmt=(-0.0932,0.4276,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.6321,0.7231,0.0000) mvmt=(-0.0932,0.4276,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2321,2.9281,0.0000) mvmt=(-0.0932,0.4276,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6321,2.9281,0.0000) mvmt=(-0.0932,0.4276,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8228,0.6301,0.0300) mvmt=(-0.4276,-0.0932,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4301,2.9078,0.0600) mvmt=(-0.0932,0.4276,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.2699,5.5878,0.5000) mvmt=(-0.0932,0.4276,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.2699,5.5878,-0.2700) mvmt=(-0.0932,0.4276,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.770,5.912,93.750) lpos=(-9.270,5.588,-0.270) lprev=(-9.177,5.160,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.2699,5.5878,-0.2700) mvmt=(-0.0932,0.4276,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.2699,5.5878,-0.2700) out=(-9.2699,5.5878,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=3 halted=False +[push-back-disp] site=dispatch center=(-9.2699,5.5878,0.4800) mvmt=(-0.0932,0.4276,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.770,5.912,94.500) lpos=(-9.270,5.588,0.480) lprev=(-9.177,5.160,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.2699,5.5878,0.4800) mvmt=(-0.0932,0.4276,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.6321,0.7231,0.0000) mvmt=(-0.0932,0.4276,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2321,2.9281,0.0000) mvmt=(-0.0932,0.4276,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6321,2.9281,0.0000) mvmt=(-0.0932,0.4276,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.8228,0.6301,0.0300) mvmt=(-0.4276,-0.0932,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4301,2.9078,0.0600) mvmt=(-0.0932,0.4276,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.2699,5.5878,0.5000) mvmt=(-0.0932,0.4276,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.3658,6.0277,0.4800) mvmt=(-0.0959,0.4400,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.866,5.472,94.500) lpos=(-9.366,6.028,0.480) lprev=(-9.270,5.588,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3658,6.0277,0.4800) mvmt=(-0.0959,0.4400,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.5362,1.1630,0.0000) mvmt=(-0.0959,0.4400,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5362,3.3680,0.0000) mvmt=(-0.0959,0.4400,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.2627,0.5342,0.0300) mvmt=(-0.4400,-0.0959,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3342,3.3477,0.0600) mvmt=(-0.0959,0.4400,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.3658,6.0277,0.5000) mvmt=(-0.0959,0.4400,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.3658,6.0277,-0.2700) mvmt=(-0.0959,0.4400,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.866,5.472,93.750) lpos=(-9.366,6.028,-0.270) lprev=(-9.270,5.588,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3658,6.0277,-0.2700) mvmt=(-0.0959,0.4400,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.3658,6.0277,-0.2700) out=(-9.3658,6.0277,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=3 halted=False +[push-back-disp] site=dispatch center=(-9.3658,6.0277,0.4800) mvmt=(-0.0959,0.4400,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.866,5.472,94.500) lpos=(-9.366,6.028,0.480) lprev=(-9.270,5.588,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.3658,6.0277,0.4800) mvmt=(-0.0959,0.4400,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.5362,1.1630,0.0000) mvmt=(-0.0959,0.4400,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5362,3.3680,0.0000) mvmt=(-0.0959,0.4400,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.2627,0.5342,0.0300) mvmt=(-0.4400,-0.0959,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3342,3.3477,0.0600) mvmt=(-0.0959,0.4400,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.3658,6.0277,0.5000) mvmt=(-0.0959,0.4400,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.4505,6.4162,0.4800) mvmt=(-0.0847,0.3884,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.951,5.084,94.500) lpos=(-9.451,6.416,0.480) lprev=(-9.366,6.028,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.4505,6.4162,0.4800) mvmt=(-0.0847,0.3884,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.4515,1.5514,0.0000) mvmt=(-0.0847,0.3884,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4515,3.7564,0.0000) mvmt=(-0.0847,0.3884,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6512,0.4495,0.0300) mvmt=(-0.3884,-0.0847,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2495,3.7362,0.0600) mvmt=(-0.0847,0.3884,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.4505,6.4162,0.5000) mvmt=(-0.0847,0.3884,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.4505,6.4162,-0.2700) mvmt=(-0.0847,0.3884,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.951,5.084,93.750) lpos=(-9.451,6.416,-0.270) lprev=(-9.366,6.028,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.4505,6.4162,-0.2700) mvmt=(-0.0847,0.3884,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.4505,6.4162,-0.2700) out=(-9.4505,6.4162,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=3 halted=False +[push-back-disp] site=dispatch center=(-9.4505,6.4162,0.4800) mvmt=(-0.0847,0.3884,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(139.951,5.084,94.500) lpos=(-9.451,6.416,0.480) lprev=(-9.366,6.028,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.4505,6.4162,0.4800) mvmt=(-0.0847,0.3884,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.4515,1.5514,0.0000) mvmt=(-0.0847,0.3884,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4515,3.7564,0.0000) mvmt=(-0.0847,0.3884,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.6512,0.4495,0.0300) mvmt=(-0.3884,-0.0847,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2495,3.7362,0.0600) mvmt=(-0.0847,0.3884,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.4505,6.4162,0.5000) mvmt=(-0.0847,0.3884,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.8817,6.3510,0.4800) mvmt=(-0.4312,-0.0652,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(140.382,5.149,94.500) lpos=(-9.882,6.351,0.480) lprev=(-9.451,6.416,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.8817,6.3510,0.4800) mvmt=(-0.4312,-0.0652,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.0203,1.4863,0.0000) mvmt=(-0.4312,-0.0652,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5860,0.0183,0.0300) mvmt=(0.0652,-0.4312,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8183,3.6710,0.0600) mvmt=(-0.4312,-0.0652,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.8817,6.3510,0.5000) mvmt=(-0.4312,-0.0652,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.8817,6.3510,-0.2700) mvmt=(-0.4312,-0.0652,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.382,5.149,93.750) lpos=(-9.882,6.351,-0.270) lprev=(-9.451,6.416,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.8817,6.3510,-0.2700) mvmt=(-0.4312,-0.0652,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.8817,6.3510,-0.2700) out=(-9.8817,6.3510,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=3 halted=False +[push-back-disp] site=dispatch center=(-9.8817,6.3510,0.4800) mvmt=(-0.4312,-0.0652,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(140.382,5.149,94.500) lpos=(-9.882,6.351,0.480) lprev=(-9.451,6.416,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-9.8817,6.3510,0.4800) mvmt=(-0.4312,-0.0652,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.0203,1.4863,0.0000) mvmt=(-0.4312,-0.0652,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5860,0.0183,0.0300) mvmt=(0.0652,-0.4312,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8183,3.6710,0.0600) mvmt=(-0.4312,-0.0652,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.8817,6.3510,0.5000) mvmt=(-0.4312,-0.0652,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.2996,6.2507,0.4800) mvmt=(-0.4179,-0.1003,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(140.800,5.249,94.500) lpos=(-10.300,6.251,0.480) lprev=(-9.882,6.351,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2996,6.2507,0.4800) mvmt=(-0.4179,-0.1003,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.3976,1.3860,0.0000) mvmt=(-0.4179,-0.1003,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4857,-0.3996,0.0300) mvmt=(0.1003,-0.4179,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4004,3.5707,0.0600) mvmt=(-0.4179,-0.1003,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2996,6.2507,0.5000) mvmt=(-0.4179,-0.1003,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2996,6.2507,-0.2700) mvmt=(-0.4179,-0.1003,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.800,5.249,93.750) lpos=(-10.300,6.251,-0.270) lprev=(-9.882,6.351,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2996,6.2507,-0.2700) mvmt=(-0.4179,-0.1003,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.2996,6.2507,-0.2700) out=(-10.2996,6.2507,0.4800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=Adjusted +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=3 halted=False +[push-back-disp] site=dispatch center=(-10.2996,6.2507,0.4800) mvmt=(-0.4179,-0.1003,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(140.800,5.249,94.500) lpos=(-10.300,6.251,0.480) lprev=(-9.882,6.351,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2996,6.2507,0.4800) mvmt=(-0.4179,-0.1003,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.3976,1.3860,0.0000) mvmt=(-0.4179,-0.1003,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.4857,-0.3996,0.0300) mvmt=(0.1003,-0.4179,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4004,3.5707,0.0600) mvmt=(-0.4179,-0.1003,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2996,6.2507,0.5000) mvmt=(-0.4179,-0.1003,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7165,6.1112,0.4800) mvmt=(-0.4169,-0.1395,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(141.216,5.389,94.500) lpos=(-10.716,6.111,0.480) lprev=(-10.300,6.251,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7165,6.1112,0.4800) mvmt=(-0.4169,-0.1395,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8145,1.2465,0.0000) mvmt=(-0.4169,-0.1395,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3462,-0.8165,0.0300) mvmt=(0.1395,-0.4169,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0165,3.4312,0.0600) mvmt=(-0.4169,-0.1395,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7165,6.1112,0.5000) mvmt=(-0.4169,-0.1395,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7165,6.1112,-0.2700) mvmt=(-0.4169,-0.1395,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.216,5.389,93.750) lpos=(-10.716,6.111,-0.270) lprev=(-10.300,6.251,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7165,6.1112,-0.2700) mvmt=(-0.4169,-0.1395,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.7165,6.1112,-0.2700) mvmt=(-0.4169,-0.1395,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8915,1.9632,1.3552) mvmt=(-0.4169,-0.1395,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0835,1.7232,1.2502) mvmt=(-0.4169,-0.1395,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0835,1.7232,1.2502) out=(0.0835,1.7232,1.9800) delta=(0.0000,0.0000,0.7298) deltaMag=0.7298 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.0269 dpPos=-0.2498 dpMove=-0.7500 iDist=0.9731 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.000 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.020 -> n=(0.000,0.000,1.000) D=-94.000 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.7165,6.1112,0.4598) mvmt=(-0.4169,-0.1395,-0.0202) collide=False insertType=0 objState=0x303 winterp=0.0269 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(141.216,5.389,94.480) lpos=(-10.716,6.111,0.460) lprev=(-10.300,6.251,0.480) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7165,6.1112,0.4598) mvmt=(-0.4169,-0.1395,-0.0202) collide=False insertType=0 objState=0x303 winterp=0.0269 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8145,1.2465,-0.0202) mvmt=(-0.4169,-0.1395,-0.0202) collide=False insertType=0 objState=0x303 winterp=0.0269 return=-1 +[push-back-disp] site=dispatch center=(-2.3462,-0.8165,0.0098) mvmt=(0.1395,-0.4169,-0.0202) collide=False insertType=0 objState=0x303 winterp=0.0269 return=-1 +[push-back-disp] site=dispatch center=(-0.0165,3.4312,0.0398) mvmt=(-0.4169,-0.1395,-0.0202) collide=False insertType=0 objState=0x303 winterp=0.0269 return=-1 +[push-back-disp] site=dispatch center=(-10.7165,6.1112,0.4798) mvmt=(-0.4169,-0.1395,-0.0202) collide=False insertType=0 objState=0x303 winterp=0.0269 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1139,5.9389,0.4598) mvmt=(-0.3975,-0.1723,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(141.614,5.561,94.480) lpos=(-11.114,5.939,0.460) lprev=(-10.716,6.111,0.460) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1139,5.9389,0.4598) mvmt=(-0.3975,-0.1723,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2119,1.0742,-0.0202) mvmt=(-0.3975,-0.1723,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1739,-1.2139,0.0098) mvmt=(0.1723,-0.3975,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4139,3.2589,0.0398) mvmt=(-0.3975,-0.1723,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1139,5.9389,0.4798) mvmt=(-0.3975,-0.1723,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1139,5.9389,-0.2902) mvmt=(-0.3975,-0.1723,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.614,5.561,93.730) lpos=(-11.114,5.939,-0.290) lprev=(-10.716,6.111,0.460) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1139,5.9389,-0.2902) mvmt=(-0.3975,-0.1723,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-11.1139,5.9389,-0.2902) mvmt=(-0.3975,-0.1723,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2889,1.7909,1.3350) mvmt=(-0.3975,-0.1723,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3139,1.5509,1.2300) mvmt=(-0.3975,-0.1723,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3139,1.5509,1.2300) out=(-0.3139,1.5509,1.9800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.1139,5.9389,0.4598) mvmt=(-0.3975,-0.1723,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(141.614,5.561,94.480) lpos=(-11.114,5.939,0.460) lprev=(-10.716,6.111,0.460) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1139,5.9389,0.4598) mvmt=(-0.3975,-0.1723,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2119,1.0742,-0.0202) mvmt=(-0.3975,-0.1723,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1739,-1.2139,0.0098) mvmt=(0.1723,-0.3975,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4139,3.2589,0.0398) mvmt=(-0.3975,-0.1723,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1139,5.9389,0.4798) mvmt=(-0.3975,-0.1723,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9538,5.5344,0.4598) mvmt=(0.1602,-0.4046,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(141.454,5.966,94.480) lpos=(-10.954,5.534,0.460) lprev=(-11.114,5.939,0.460) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9538,5.5344,0.4598) mvmt=(0.1602,-0.4046,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0518,0.6697,-0.0202) mvmt=(0.1602,-0.4046,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5482,2.8747,-0.0202) mvmt=(0.1602,-0.4046,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7694,-1.0538,0.0098) mvmt=(0.4046,0.1602,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2538,2.8544,0.0398) mvmt=(0.1602,-0.4046,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9538,5.5344,0.4798) mvmt=(0.1602,-0.4046,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9538,5.5344,-0.2902) mvmt=(0.1602,-0.4046,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.454,5.966,93.730) lpos=(-10.954,5.534,-0.290) lprev=(-11.114,5.939,0.460) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9538,5.5344,-0.2902) mvmt=(0.1602,-0.4046,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.9538,5.5344,-0.2902) mvmt=(0.1602,-0.4046,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1288,1.3863,1.3350) mvmt=(0.1602,-0.4046,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1537,1.1463,1.2300) mvmt=(0.1602,-0.4046,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1537,1.1463,1.2300) out=(-0.1537,1.1463,1.9800) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=-1.5000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.9538,5.5344,0.4598) mvmt=(0.1602,-0.4046,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(141.454,5.966,94.480) lpos=(-10.954,5.534,0.460) lprev=(-11.114,5.939,0.460) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9538,5.5344,0.4598) mvmt=(0.1602,-0.4046,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0518,0.6697,-0.0202) mvmt=(0.1602,-0.4046,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5482,2.8747,-0.0202) mvmt=(0.1602,-0.4046,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7694,-1.0538,0.0098) mvmt=(0.4046,0.1602,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2538,2.8544,0.0398) mvmt=(0.1602,-0.4046,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9538,5.5344,0.4798) mvmt=(0.1602,-0.4046,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-94.000 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7933,5.1290,0.4598) mvmt=(0.1605,-0.4054,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(141.293,6.371,94.480) lpos=(-10.793,5.129,0.460) lprev=(-10.954,5.534,0.460) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7933,5.1290,0.4598) mvmt=(0.1605,-0.4054,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8913,0.2643,-0.0202) mvmt=(0.1605,-0.4054,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7087,2.4693,-0.0202) mvmt=(0.1605,-0.4054,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8913,2.4693,-0.0202) mvmt=(0.1605,-0.4054,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.3640,-0.8933,0.0098) mvmt=(0.4054,0.1605,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0933,2.4490,0.0398) mvmt=(0.1605,-0.4054,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7933,5.1290,0.4798) mvmt=(0.1605,-0.4054,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7933,5.1290,-0.2902) mvmt=(0.1605,-0.4054,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.293,6.371,93.730) lpos=(-10.793,5.129,-0.290) lprev=(-10.954,5.534,0.460) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7933,5.1290,-0.2902) mvmt=(0.1605,-0.4054,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.7933,5.1290,-0.2902) mvmt=(0.1605,-0.4054,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9683,0.9810,1.3350) mvmt=(0.1605,-0.4054,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0067,0.7410,1.2300) mvmt=(0.1605,-0.4054,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0067,0.7410,1.2300) out=(0.0067,0.7410,1.6020) delta=(0.0000,0.0000,0.3720) deltaMag=0.3720 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.5040 dpPos=0.2215 dpMove=-0.5213 iDist=0.4960 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-94.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-94.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.7933,5.1290,0.0818) mvmt=(0.1605,-0.4054,-0.3780) collide=False insertType=0 objState=0x303 winterp=0.5040 return=-1 +[indoor-bsp] cell=0xA9B40143 wpos=(141.293,6.371,94.102) lpos=(-10.793,5.129,0.082) lprev=(-10.954,5.534,0.460) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7933,5.1290,0.0818) mvmt=(0.1605,-0.4054,-0.3780) collide=False insertType=0 objState=0x303 winterp=0.5040 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.7933,5.1290,0.0818) mvmt=(0.1605,-0.4054,-0.3780) collide=False insertType=0 objState=0x303 winterp=0.5040 return=-1 +[other-cells] primary=0xA9B40143 iter=0xA9B40147 result=OK +[push-back-cell] site=other_cell primary=0xA9B40143 other=0xA9B40147 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8913,0.2643,-0.3982) mvmt=(0.1605,-0.4054,-0.3780) collide=False insertType=0 objState=0x303 winterp=0.5040 return=-1 +[push-back-disp] site=dispatch center=(0.7087,2.4693,-0.3982) mvmt=(0.1605,-0.4054,-0.3780) collide=False insertType=0 objState=0x303 winterp=0.5040 return=-1 +[push-back-disp] site=dispatch center=(-0.8913,2.4693,-0.3982) mvmt=(0.1605,-0.4054,-0.3780) collide=False insertType=0 objState=0x303 winterp=0.5040 return=-1 +[push-back-disp] site=dispatch center=(-1.3640,-0.8933,-0.3682) mvmt=(0.4054,0.1605,-0.3780) collide=False insertType=0 objState=0x303 winterp=0.5040 return=-1 +[push-back-disp] site=dispatch center=(-0.0933,2.4490,-0.3382) mvmt=(0.1605,-0.4054,-0.3780) collide=False insertType=0 objState=0x303 winterp=0.5040 return=-1 +[push-back-disp] site=dispatch center=(-10.7933,5.1290,0.1018) mvmt=(0.1605,-0.4054,-0.3780) collide=False insertType=0 objState=0x303 winterp=0.5040 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6384,4.9401,-0.1137) mvmt=(0.1548,-0.1889,-0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40146 wpos=(141.138,6.560,93.906) lpos=(-10.638,4.940,-0.114) lprev=(-10.793,5.129,0.082) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6384,4.9401,-0.1137) mvmt=(0.1548,-0.1889,-0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40146 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40146 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.6384,4.9401,-0.1137) mvmt=(0.1548,-0.1889,-0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40146 iter=0xA9B40147 result=OK +[push-back-cell] site=other_cell primary=0xA9B40146 other=0xA9B40147 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7364,0.0754,-0.5937) mvmt=(0.1548,-0.1889,-0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8636,2.2804,-0.5937) mvmt=(0.1548,-0.1889,-0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7364,2.2804,-0.5937) mvmt=(0.1548,-0.1889,-0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1751,-0.7384,-0.5637) mvmt=(0.1889,0.1548,-0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0616,2.2601,-0.5337) mvmt=(0.1548,-0.1889,-0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8134,0.7920,1.5115) mvmt=(0.1548,-0.1889,-0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1616,0.5520,1.4065) mvmt=(0.1548,-0.1889,-0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1616,-1.6592,0.0565) mvmt=(0.1548,-0.1889,-0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6384,4.9401,-0.0937) mvmt=(0.1548,-0.1889,-0.1954) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6384,4.9401,-0.8637) mvmt=(0.1548,-0.1889,-0.9454) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.138,6.560,93.156) lpos=(-10.638,4.940,-0.864) lprev=(-10.793,5.129,0.082) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8134,0.7920,0.7615) mvmt=(0.1548,-0.1889,-0.9454) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1616,0.5520,0.6565) mvmt=(0.1548,-0.1889,-0.9454) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1616,0.5520,0.6565) out=(0.1616,0.5520,1.4065) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6384,4.9401,-0.1137) mvmt=(0.1548,-0.1889,-0.1954) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40146 wpos=(141.138,6.560,93.906) lpos=(-10.638,4.940,-0.114) lprev=(-10.793,5.129,0.082) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6384,4.9401,-0.1137) mvmt=(0.1548,-0.1889,-0.1954) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B40146 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40146 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.6384,4.9401,-0.1137) mvmt=(0.1548,-0.1889,-0.1954) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B40146 iter=0xA9B40147 result=OK +[push-back-cell] site=other_cell primary=0xA9B40146 other=0xA9B40147 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7364,0.0754,-0.5937) mvmt=(0.1548,-0.1889,-0.1954) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8636,2.2804,-0.5937) mvmt=(0.1548,-0.1889,-0.1954) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7364,2.2804,-0.5937) mvmt=(0.1548,-0.1889,-0.1954) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.1751,-0.7384,-0.5637) mvmt=(0.1889,0.1548,-0.1954) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0616,2.2601,-0.5337) mvmt=(0.1548,-0.1889,-0.1954) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.8134,0.7920,1.5115) mvmt=(0.1548,-0.1889,-0.1954) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1616,0.5520,1.4065) mvmt=(0.1548,-0.1889,-0.1954) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1616,-1.6592,0.0565) mvmt=(0.1548,-0.1889,-0.1954) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6384,4.9401,-0.0937) mvmt=(0.1548,-0.1889,-0.1954) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cell-transit] 0xA9B40143 -> 0xA9B40146 pos=(141.138,6.560,93.426) reason=resolver +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +live: spawn guid=0x800002CD name="Young Banderling" setup=0x02000E08 pos=(47.2,144.8,105.8)@0xAAB3000F itemType=0x00000010 animParts=0 texChanges=0 subPalettes=1 +live: spawn guid=0x800002CE name="Kasrullah" setup=0x02000135 pos=no-pos itemType=0x00000001 animParts=1 texChanges=2 subPalettes=1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4760,4.7419,-0.3187) mvmt=(0.1625,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.976,6.758,93.701) lpos=(-10.476,4.742,-0.319) lprev=(-10.638,4.940,-0.114) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4760,4.7419,-0.3187) mvmt=(0.1625,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4760,4.7419,-0.3187) mvmt=(0.1625,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4760,4.7419,-0.3187) mvmt=(0.1625,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.976,6.758,93.701) lpos=(-10.476,4.742,-0.319) lprev=(-10.638,4.940,-0.114) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4760,4.7419,-0.3187) mvmt=(0.1625,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4760,4.7419,-0.3187) mvmt=(0.1625,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6510,0.5938,1.3065) mvmt=(0.1625,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3241,0.3538,1.2015) mvmt=(0.1625,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3241,-1.8574,-0.1485) mvmt=(0.1625,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5740,-0.1229,-0.7987) mvmt=(0.1625,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5907,4.7173,-0.3187) mvmt=(0.0477,-0.2228,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.091,6.783,93.701) lpos=(-10.591,4.717,-0.319) lprev=(-10.638,4.940,-0.114) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5907,4.7173,-0.3187) mvmt=(0.0477,-0.2228,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.5907,4.7173,-0.3187) mvmt=(0.0477,-0.2228,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7657,0.5692,1.3065) mvmt=(0.0477,-0.2228,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2093,0.3292,1.2015) mvmt=(0.0477,-0.2228,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2093,-1.8820,-0.1485) mvmt=(0.0477,-0.2228,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6887,-0.1474,-0.7987) mvmt=(0.0477,-0.2228,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9113,2.0576,-0.7987) mvmt=(0.0477,-0.2228,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.6887,2.0576,-0.7987) mvmt=(0.0477,-0.2228,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9523,-0.6907,-0.7687) mvmt=(0.2228,0.0477,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1093,2.0373,-0.7387) mvmt=(0.0477,-0.2228,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5907,4.7173,-0.2987) mvmt=(0.0477,-0.2228,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=Slid +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=4 halted=False +[push-back-disp] site=dispatch center=(-10.6384,4.7419,-0.3187) mvmt=(0.0000,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.138,6.758,93.701) lpos=(-10.638,4.742,-0.319) lprev=(-10.638,4.940,-0.114) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6384,4.7419,-0.3187) mvmt=(0.0000,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.6384,4.7419,-0.3187) mvmt=(0.0000,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8134,0.5938,1.3065) mvmt=(0.0000,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1616,0.3538,1.2015) mvmt=(0.0000,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1616,-1.8574,-0.1485) mvmt=(0.0000,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7364,-0.1229,-0.7987) mvmt=(0.0000,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8636,2.0821,-0.7987) mvmt=(0.0000,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7364,2.0821,-0.7987) mvmt=(0.0000,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9769,-0.7384,-0.7687) mvmt=(0.1982,0.0000,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0616,2.0619,-0.7387) mvmt=(0.0000,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6384,4.7419,-0.2987) mvmt=(0.0000,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6384,4.7419,-1.0687) mvmt=(0.0000,-0.1982,-0.9551) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.138,6.758,92.951) lpos=(-10.638,4.742,-1.069) lprev=(-10.638,4.940,-0.114) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8134,0.5938,0.5565) mvmt=(0.0000,-0.1982,-0.9551) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1616,0.3538,0.4515) mvmt=(0.0000,-0.1982,-0.9551) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1616,0.3538,0.4515) out=(0.1616,0.3538,1.2015) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6384,4.7419,-0.3187) mvmt=(0.0000,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.138,6.758,93.701) lpos=(-10.638,4.742,-0.319) lprev=(-10.638,4.940,-0.114) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6384,4.7419,-0.3187) mvmt=(0.0000,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.6384,4.7419,-0.3187) mvmt=(0.0000,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8134,0.5938,1.3065) mvmt=(0.0000,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1616,0.3538,1.2015) mvmt=(0.0000,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1616,-1.8574,-0.1485) mvmt=(0.0000,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7364,-0.1229,-0.7987) mvmt=(0.0000,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8636,2.0821,-0.7987) mvmt=(0.0000,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7364,2.0821,-0.7987) mvmt=(0.0000,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.9769,-0.7384,-0.7687) mvmt=(0.1982,0.0000,-0.2051) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0616,2.0619,-0.7387) mvmt=(0.0000,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6384,4.7419,-0.2987) mvmt=(0.0000,-0.1982,-0.2051) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cell-transit] 0xA9B40146 -> 0xA9B40147 pos=(141.138,6.758,93.221) reason=resolver +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6384,4.5498,-0.5174) mvmt=(0.0000,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.138,6.950,93.503) lpos=(-10.638,4.550,-0.517) lprev=(-10.638,4.742,-0.319) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6384,4.5498,-0.5174) mvmt=(0.0000,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8134,0.4017,1.1078) mvmt=(0.0000,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1616,0.1617,1.0028) mvmt=(0.0000,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1616,-2.0495,-0.3472) mvmt=(0.0000,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7364,-0.3149,-0.9974) mvmt=(0.0000,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8636,1.8901,-0.9974) mvmt=(0.0000,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7364,1.8901,-0.9974) mvmt=(0.0000,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7848,-0.7384,-0.9674) mvmt=(0.1921,-0.0000,-0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0616,1.8698,-0.9374) mvmt=(0.0000,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6384,4.5498,-0.4974) mvmt=(0.0000,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6384,4.5498,-1.2674) mvmt=(0.0000,-0.1921,-0.9487) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.138,6.950,92.753) lpos=(-10.638,4.550,-1.267) lprev=(-10.638,4.742,-0.319) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8134,0.4017,0.3578) mvmt=(0.0000,-0.1921,-0.9487) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1616,0.1617,0.2528) mvmt=(0.0000,-0.1921,-0.9487) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1616,0.1617,0.2528) out=(0.1616,0.1617,1.0028) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6384,4.5498,-0.5174) mvmt=(0.0000,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.138,6.950,93.503) lpos=(-10.638,4.550,-0.517) lprev=(-10.638,4.742,-0.319) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6384,4.5498,-0.5174) mvmt=(0.0000,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8134,0.4017,1.1078) mvmt=(0.0000,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1616,0.1617,1.0028) mvmt=(0.0000,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1616,-2.0495,-0.3472) mvmt=(0.0000,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7364,-0.3149,-0.9974) mvmt=(0.0000,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8636,1.8901,-0.9974) mvmt=(0.0000,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7364,1.8901,-0.9974) mvmt=(0.0000,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.7848,-0.7384,-0.9674) mvmt=(0.1921,-0.0000,-0.1987) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0616,1.8698,-0.9374) mvmt=(0.0000,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6384,4.5498,-0.4974) mvmt=(0.0000,-0.1921,-0.1987) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4794,4.3558,-0.7181) mvmt=(0.1590,-0.1940,-0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.979,7.144,93.302) lpos=(-10.479,4.356,-0.718) lprev=(-10.638,4.550,-0.517) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6544,0.2078,0.9071) mvmt=(0.1590,-0.1940,-0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3206,-0.0322,0.8021) mvmt=(0.1590,-0.1940,-0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3206,-2.2435,-0.5479) mvmt=(0.1590,-0.1940,-0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4794,4.3558,-0.6981) mvmt=(0.1590,-0.1940,-0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4794,4.3558,-1.4681) mvmt=(0.1590,-0.1940,-0.9507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.979,7.144,92.552) lpos=(-10.479,4.356,-1.468) lprev=(-10.638,4.550,-0.517) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6544,0.2078,0.1571) mvmt=(0.1590,-0.1940,-0.9507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3206,-0.0322,0.0521) mvmt=(0.1590,-0.1940,-0.9507) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3206,-0.0322,0.0521) out=(0.3206,-0.0322,0.8021) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4794,4.3558,-0.7181) mvmt=(0.1590,-0.1940,-0.2007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.979,7.144,93.302) lpos=(-10.479,4.356,-0.718) lprev=(-10.638,4.550,-0.517) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6544,0.2078,0.9071) mvmt=(0.1590,-0.1940,-0.2007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3206,-0.0322,0.8021) mvmt=(0.1590,-0.1940,-0.2007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3206,-2.2435,-0.5479) mvmt=(0.1590,-0.1940,-0.2007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4794,4.3558,-0.6981) mvmt=(0.1590,-0.1940,-0.2007) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3197,4.1610,-0.9197) mvmt=(0.1597,-0.1949,-0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.820,7.339,93.100) lpos=(-10.320,4.161,-0.920) lprev=(-10.479,4.356,-0.718) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4947,0.0129,0.7055) mvmt=(0.1597,-0.1949,-0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3197,4.1610,-0.9197) mvmt=(0.1597,-0.1949,-0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.820,7.339,93.100) lpos=(-10.320,4.161,-0.920) lprev=(-10.479,4.356,-0.718) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4947,0.0129,0.7055) mvmt=(0.1597,-0.1949,-0.2016) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4947,0.0129,0.7055) out=(-0.4947,0.0129,1.0417) delta=(0.0000,0.0000,0.3362) deltaMag=0.3362 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4397 dpPos=0.2423 dpMove=-0.4243 iDist=0.5603 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3197,4.1610,-0.5835) mvmt=(0.1597,-0.1949,0.1346) collide=False insertType=0 objState=0x303 winterp=0.4397 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.820,7.339,93.437) lpos=(-10.320,4.161,-0.583) lprev=(-10.479,4.356,-0.718) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3197,4.1610,-0.5835) mvmt=(0.1597,-0.1949,0.1346) collide=False insertType=0 objState=0x303 winterp=0.4397 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4947,0.0129,1.0417) mvmt=(0.1597,-0.1949,0.1346) collide=False insertType=0 objState=0x303 winterp=0.4397 return=-1 +[push-back-disp] site=dispatch center=(0.4803,-0.2271,0.9367) mvmt=(0.1597,-0.1949,0.1346) collide=False insertType=0 objState=0x303 winterp=0.4397 return=-1 +[push-back-disp] site=dispatch center=(0.4803,-2.4383,-0.4133) mvmt=(0.1597,-0.1949,0.1346) collide=False insertType=0 objState=0x303 winterp=0.4397 return=-1 +[push-back-disp] site=dispatch center=(0.6672,-2.8174,2.4410) mvmt=(0.2419,0.0704,0.1346) collide=False insertType=0 objState=0x303 winterp=0.4397 return=-1 +[push-back-disp] site=dispatch center=(-10.3197,4.1610,-0.5635) mvmt=(0.1597,-0.1949,0.1346) collide=False insertType=0 objState=0x303 winterp=0.4397 return=-1 +[push-back-disp] site=dispatch center=(-10.3197,4.1610,-0.5835) mvmt=(0.1597,-0.1949,0.1346) collide=False insertType=1 objState=0x303 winterp=0.4397 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.820,7.339,93.437) lpos=(-10.320,4.161,-0.583) lprev=(-10.479,4.356,-0.718) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(-10.4794,4.1576,-0.9163) mvmt=(0.0000,-0.1982,-0.1982) collide=False insertType=0 objState=0x303 winterp=0.4397 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.979,7.342,93.104) lpos=(-10.479,4.158,-0.916) lprev=(-10.479,4.356,-0.718) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6544,0.0096,0.7089) mvmt=(0.0000,-0.1982,-0.1982) collide=False insertType=0 objState=0x303 winterp=0.4397 return=-1 +[push-back-disp] site=dispatch center=(0.3206,-0.2304,0.6039) mvmt=(0.0000,-0.1982,-0.1982) collide=False insertType=0 objState=0x303 winterp=0.4397 return=-1 +[push-back-disp] site=dispatch center=(0.3206,-2.4417,-0.7461) mvmt=(0.0000,-0.1982,-0.1982) collide=False insertType=0 objState=0x303 winterp=0.4397 return=-1 +[push-back-disp] site=dispatch center=(0.6076,-2.9656,2.1082) mvmt=(0.1823,-0.0778,-0.1982) collide=False insertType=0 objState=0x303 winterp=0.4397 return=-1 +[push-back-disp] site=dispatch center=(-10.4794,4.1576,-0.8963) mvmt=(0.0000,-0.1982,-0.1982) collide=False insertType=0 objState=0x303 winterp=0.4397 return=-1 +[push-back-disp] site=dispatch center=(-10.4794,4.1576,-1.6663) mvmt=(0.0000,-0.1982,-0.9482) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.979,7.342,92.354) lpos=(-10.479,4.158,-1.666) lprev=(-10.479,4.356,-0.718) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6544,0.0096,-0.0411) mvmt=(0.0000,-0.1982,-0.9482) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3206,-0.2304,-0.1461) mvmt=(0.0000,-0.1982,-0.9482) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3206,-0.2304,-0.1461) out=(0.3206,-0.2304,0.5971) delta=(0.0000,0.0000,0.7432) deltaMag=0.7432 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0091 dpPos=-0.0365 dpMove=-0.5213 iDist=0.9909 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4794,4.1576,-0.9231) mvmt=(0.0000,-0.1982,-0.2050) collide=False insertType=0 objState=0x303 winterp=0.0091 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.979,7.342,93.097) lpos=(-10.479,4.158,-0.923) lprev=(-10.479,4.356,-0.718) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6544,0.0096,0.7021) mvmt=(0.0000,-0.1982,-0.2050) collide=False insertType=0 objState=0x303 winterp=0.0091 return=-1 +[push-back-disp] site=dispatch center=(0.3206,-0.2304,0.5971) mvmt=(0.0000,-0.1982,-0.2050) collide=False insertType=0 objState=0x303 winterp=0.0091 return=-1 +[push-back-disp] site=dispatch center=(0.3206,-2.4417,-0.7529) mvmt=(0.0000,-0.1982,-0.2050) collide=False insertType=0 objState=0x303 winterp=0.0091 return=-1 +[push-back-disp] site=dispatch center=(0.6076,-2.9656,2.1014) mvmt=(0.1823,-0.0778,-0.2050) collide=False insertType=0 objState=0x303 winterp=0.0091 return=-1 +[push-back-disp] site=dispatch center=(-10.4794,4.1576,-0.9031) mvmt=(0.0000,-0.1982,-0.2050) collide=False insertType=0 objState=0x303 winterp=0.0091 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4794,3.9687,-1.1186) mvmt=(0.0000,-0.1889,-0.1955) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.979,7.531,92.901) lpos=(-10.479,3.969,-1.119) lprev=(-10.479,4.158,-0.923) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6544,-0.1794,0.5066) mvmt=(0.0000,-0.1889,-0.1955) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3206,-0.4194,0.4016) mvmt=(0.0000,-0.1889,-0.1955) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3206,-2.6306,-0.9484) mvmt=(0.0000,-0.1889,-0.1955) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7814,-3.0397,1.9059) mvmt=(0.1738,-0.0741,-0.1955) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4794,3.9687,-1.0986) mvmt=(0.0000,-0.1889,-0.1955) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4794,3.9687,-1.8686) mvmt=(0.0000,-0.1889,-0.9455) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.979,7.531,92.151) lpos=(-10.479,3.969,-1.869) lprev=(-10.479,4.158,-0.923) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6544,-0.1794,-0.2434) mvmt=(0.0000,-0.1889,-0.9455) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3206,-0.4194,-0.3484) mvmt=(0.0000,-0.1889,-0.9455) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3206,-0.4194,-0.3484) out=(0.3206,-0.4194,0.4016) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4794,3.9687,-1.1186) mvmt=(0.0000,-0.1889,-0.1955) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.979,7.531,92.901) lpos=(-10.479,3.969,-1.119) lprev=(-10.479,4.158,-0.923) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6544,-0.1794,0.5066) mvmt=(0.0000,-0.1889,-0.1955) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3206,-0.4194,0.4016) mvmt=(0.0000,-0.1889,-0.1955) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3206,-2.6306,-0.9484) mvmt=(0.0000,-0.1889,-0.1955) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7814,-3.0397,1.9059) mvmt=(0.1738,-0.0741,-0.1955) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4794,3.9687,-1.0986) mvmt=(0.0000,-0.1889,-0.1955) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3330,3.7900,-1.3034) mvmt=(0.1464,-0.1786,-0.1848) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.833,7.710,92.717) lpos=(-10.333,3.790,-1.303) lprev=(-10.479,3.969,-1.119) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5080,-0.3580,0.3218) mvmt=(0.1464,-0.1786,-0.1848) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3330,3.7900,-1.3034) mvmt=(0.1464,-0.1786,-0.1848) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.833,7.710,92.717) lpos=(-10.333,3.790,-1.303) lprev=(-10.479,3.969,-1.119) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5080,-0.3580,0.3218) mvmt=(0.1464,-0.1786,-0.1848) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5080,-0.3580,0.3218) out=(-0.5080,-0.3580,0.6708) delta=(0.0000,0.0000,0.3490) deltaMag=0.3490 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4183 dpPos=0.2332 dpMove=-0.4243 iDist=0.5817 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3330,3.7900,-0.9544) mvmt=(0.1464,-0.1786,0.1642) collide=False insertType=0 objState=0x303 winterp=0.4183 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.833,7.710,93.066) lpos=(-10.333,3.790,-0.954) lprev=(-10.479,3.969,-1.119) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5080,-0.3580,0.6708) mvmt=(0.1464,-0.1786,0.1642) collide=False insertType=0 objState=0x303 winterp=0.4183 return=-1 +[push-back-disp] site=dispatch center=(0.4670,-0.5980,0.5658) mvmt=(0.1464,-0.1786,0.1642) collide=False insertType=0 objState=0x303 winterp=0.4183 return=-1 +[push-back-disp] site=dispatch center=(0.4670,-2.8093,-0.7842) mvmt=(0.1464,-0.1786,0.1642) collide=False insertType=0 objState=0x303 winterp=0.4183 return=-1 +[push-back-disp] site=dispatch center=(1.0032,-2.9751,2.0701) mvmt=(0.2218,0.0646,0.1642) collide=False insertType=0 objState=0x303 winterp=0.4183 return=-1 +[push-back-disp] site=dispatch center=(-10.3330,3.7900,-0.9344) mvmt=(0.1464,-0.1786,0.1642) collide=False insertType=0 objState=0x303 winterp=0.4183 return=-1 +[push-back-disp] site=dispatch center=(-10.3330,3.7900,-0.9544) mvmt=(0.1464,-0.1786,0.1642) collide=False insertType=1 objState=0x303 winterp=0.4183 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.833,7.710,93.066) lpos=(-10.333,3.790,-0.954) lprev=(-10.479,3.969,-1.119) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5080,-0.3580,0.6708) mvmt=(0.1464,-0.1786,0.1642) collide=False insertType=1 objState=0x303 winterp=0.4183 return=-1 +[push-back-disp] site=dispatch center=(0.4670,-0.5980,0.5658) mvmt=(0.1464,-0.1786,0.1642) collide=False insertType=1 objState=0x303 winterp=0.4183 return=-1 +[push-back-disp] site=dispatch center=(0.4670,-2.8093,-0.7842) mvmt=(0.1464,-0.1786,0.1642) collide=False insertType=1 objState=0x303 winterp=0.4183 return=-1 +[push-back-disp] site=dispatch center=(1.0032,-2.9751,2.0701) mvmt=(0.2218,0.0646,0.1642) collide=False insertType=1 objState=0x303 winterp=0.4183 return=-1 +[push-back-disp] site=dispatch center=(-10.3330,3.7900,-0.9344) mvmt=(0.1464,-0.1786,0.1642) collide=False insertType=1 objState=0x303 winterp=0.4183 return=-1 +[push-back-disp] site=dispatch center=(0.4670,-0.5980,0.5658) mvmt=(0.1464,-0.1786,0.1642) collide=False insertType=0 objState=0x303 winterp=0.4183 return=-1 +[push-back-disp] site=dispatch center=(0.4670,-2.8093,-0.7842) mvmt=(0.1464,-0.1786,0.1642) collide=False insertType=0 objState=0x303 winterp=0.4183 return=-1 +[push-back-disp] site=dispatch center=(1.0032,-2.9751,2.0701) mvmt=(0.2218,0.0646,0.1642) collide=False insertType=0 objState=0x303 winterp=0.4183 return=-1 +[push-back-disp] site=dispatch center=(-10.3330,3.7900,-0.9344) mvmt=(0.1464,-0.1786,0.1642) collide=False insertType=0 objState=0x303 winterp=0.4183 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.1726,3.5874,-1.1570) mvmt=(0.1604,-0.2026,-0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.673,7.913,92.863) lpos=(-10.173,3.587,-1.157) lprev=(-10.333,3.790,-0.954) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3476,-0.5606,0.4682) mvmt=(0.1604,-0.2026,-0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6274,-0.8006,0.3632) mvmt=(0.1604,-0.2026,-0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6274,-3.0119,-0.9868) mvmt=(0.1604,-0.2026,-0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2524,-2.9071,1.8675) mvmt=(0.2493,0.0681,-0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1726,3.5874,-1.1370) mvmt=(0.1604,-0.2026,-0.2026) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1726,3.5874,-1.9070) mvmt=(0.1604,-0.2026,-0.9526) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.673,7.913,92.113) lpos=(-10.173,3.587,-1.907) lprev=(-10.333,3.790,-0.954) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3476,-0.5606,-0.2818) mvmt=(0.1604,-0.2026,-0.9526) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3476,-0.5606,-0.2818) out=(-0.3476,-0.5606,0.4682) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0503 dpMove=-0.5303 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.1726,3.5874,-1.1570) mvmt=(0.1604,-0.2026,-0.2026) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.673,7.913,92.863) lpos=(-10.173,3.587,-1.157) lprev=(-10.333,3.790,-0.954) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3476,-0.5606,0.4682) mvmt=(0.1604,-0.2026,-0.2026) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6274,-0.8006,0.3632) mvmt=(0.1604,-0.2026,-0.2026) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6274,-3.0119,-0.9868) mvmt=(0.1604,-0.2026,-0.2026) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2524,-2.9071,1.8675) mvmt=(0.2493,0.0681,-0.2026) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1726,3.5874,-1.1370) mvmt=(0.1604,-0.2026,-0.2026) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.0226,3.3980,-1.3464) mvmt=(0.1500,-0.1895,-0.1895) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.523,8.102,92.674) lpos=(-10.023,3.398,-1.346) lprev=(-10.173,3.587,-1.157) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1976,-0.7501,0.2788) mvmt=(0.1500,-0.1895,-0.1895) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7774,-0.9901,0.1738) mvmt=(0.1500,-0.1895,-0.1895) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7774,-3.2013,-1.1762) mvmt=(0.1500,-0.1895,-0.1895) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4855,-2.8434,1.6781) mvmt=(0.2331,0.0637,-0.1895) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0226,3.3980,-1.3264) mvmt=(0.1500,-0.1895,-0.1895) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0226,3.3980,-2.0964) mvmt=(0.1500,-0.1895,-0.9395) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.523,8.102,91.924) lpos=(-10.023,3.398,-2.096) lprev=(-10.173,3.587,-1.157) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1976,-0.7501,-0.4712) mvmt=(0.1500,-0.1895,-0.9395) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1976,-0.7501,-0.4712) out=(-0.1976,-0.7501,0.2788) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0503 dpMove=-0.5303 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.0226,3.3980,-1.3464) mvmt=(0.1500,-0.1895,-0.1895) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.523,8.102,92.674) lpos=(-10.023,3.398,-1.346) lprev=(-10.173,3.587,-1.157) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1976,-0.7501,0.2788) mvmt=(0.1500,-0.1895,-0.1895) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7774,-0.9901,0.1738) mvmt=(0.1500,-0.1895,-0.1895) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7774,-3.2013,-1.1762) mvmt=(0.1500,-0.1895,-0.1895) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4855,-2.8434,1.6781) mvmt=(0.2331,0.0637,-0.1895) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.0226,3.3980,-1.3264) mvmt=(0.1500,-0.1895,-0.1895) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.8707,3.2061,-1.5384) mvmt=(0.1520,-0.1919,-0.1919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.371,8.294,92.482) lpos=(-9.871,3.206,-1.538) lprev=(-10.023,3.398,-1.346) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.0457,-0.9420,0.0868) mvmt=(0.1520,-0.1919,-0.1919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9294,-1.1820,-0.0182) mvmt=(0.1520,-0.1919,-0.1919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9294,-3.3932,-1.3682) mvmt=(0.1520,-0.1919,-0.1919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7217,-2.7789,1.4861) mvmt=(0.2361,0.0645,-0.1919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.8707,3.2061,-1.5184) mvmt=(0.1520,-0.1919,-0.1919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.8707,3.2061,-2.2884) mvmt=(0.1520,-0.1919,-0.9419) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.371,8.294,91.732) lpos=(-9.871,3.206,-2.288) lprev=(-10.023,3.398,-1.346) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.0457,-0.9420,-0.6632) mvmt=(0.1520,-0.1919,-0.9419) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0457,-0.9420,-0.6632) out=(-0.0457,-0.9420,0.0868) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0503 dpMove=-0.5303 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-9.8707,3.2061,-1.5384) mvmt=(0.1520,-0.1919,-0.1919) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.371,8.294,92.482) lpos=(-9.871,3.206,-1.538) lprev=(-10.023,3.398,-1.346) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.0457,-0.9420,0.0868) mvmt=(0.1520,-0.1919,-0.1919) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9294,-1.1820,-0.0182) mvmt=(0.1520,-0.1919,-0.1919) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.9294,-3.3932,-1.3682) mvmt=(0.1520,-0.1919,-0.1919) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7217,-2.7789,1.4861) mvmt=(0.2361,0.0645,-0.1919) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.8707,3.2061,-1.5184) mvmt=(0.1520,-0.1919,-0.1919) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.7235,3.0202,-1.7242) mvmt=(0.1472,-0.1858,-0.1858) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.223,8.480,92.296) lpos=(-9.723,3.020,-1.724) lprev=(-9.871,3.206,-1.538) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.1015,-1.1278,-0.0990) mvmt=(0.1472,-0.1858,-0.1858) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0765,-1.3678,-0.2040) mvmt=(0.1472,-0.1858,-0.1858) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0765,-3.5791,-1.5540) mvmt=(0.1472,-0.1858,-0.1858) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9504,-2.7165,1.3003) mvmt=(0.2287,0.0624,-0.1858) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.7235,3.0202,-1.7042) mvmt=(0.1472,-0.1858,-0.1858) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.7235,3.0202,-2.4742) mvmt=(0.1472,-0.1858,-0.9358) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.223,8.480,91.546) lpos=(-9.723,3.020,-2.474) lprev=(-9.871,3.206,-1.538) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.1015,-1.1278,-0.8490) mvmt=(0.1472,-0.1858,-0.9358) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1015,-1.1278,-0.8490) out=(0.1015,-1.1278,-0.0990) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0503 dpMove=-0.5303 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-9.7235,3.0202,-1.7242) mvmt=(0.1472,-0.1858,-0.1858) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.223,8.480,92.296) lpos=(-9.723,3.020,-1.724) lprev=(-9.871,3.206,-1.538) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.1015,-1.1278,-0.0990) mvmt=(0.1472,-0.1858,-0.1858) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0765,-1.3678,-0.2040) mvmt=(0.1472,-0.1858,-0.1858) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0765,-3.5791,-1.5540) mvmt=(0.1472,-0.1858,-0.1858) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9504,-2.7165,1.3003) mvmt=(0.2287,0.0624,-0.1858) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.7235,3.0202,-1.7042) mvmt=(0.1472,-0.1858,-0.1858) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.5641,2.8189,-1.9255) mvmt=(0.1594,-0.2013,-0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.064,8.681,92.094) lpos=(-9.564,2.819,-1.926) lprev=(-9.723,3.020,-1.724) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.2609,-1.3292,-0.3003) mvmt=(0.1594,-0.2013,-0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2359,-1.5692,-0.4053) mvmt=(0.1594,-0.2013,-0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2359,-3.7804,-1.7553) mvmt=(0.1594,-0.2013,-0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1981,-2.6489,1.0990) mvmt=(0.2477,0.0676,-0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.5641,2.8189,-1.9055) mvmt=(0.1594,-0.2013,-0.2013) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.5641,2.8189,-2.6755) mvmt=(0.1594,-0.2013,-0.9513) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.5641,2.8189,-2.6755) out=(-9.5641,2.8189,-2.5700) delta=(0.0000,0.0000,0.1055) deltaMag=0.1055 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.8593 dpPos=0.3745 dpMove=-0.7500 iDist=0.1407 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(140.064,8.681,91.344) lpos=(-9.564,2.819,-2.676) lprev=(-9.723,3.020,-1.724) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.5641,2.8189,-2.5700) mvmt=(0.1594,-0.2013,-0.8458) collide=False insertType=0 objState=0x303 winterp=0.8593 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.064,8.681,91.450) lpos=(-9.564,2.819,-2.570) lprev=(-9.723,3.020,-1.724) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.2609,-1.3292,-0.9448) mvmt=(0.1594,-0.2013,-0.8458) collide=False insertType=0 objState=0x303 winterp=0.8593 return=-1 +[push-back] site=adjust_sphere in=(0.2609,-1.3292,-0.9448) out=(0.2609,-1.3292,-0.3003) delta=(0.0000,0.0000,0.6445) deltaMag=0.6445 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.8593->-0.0000 dpPos=0.0243 dpMove=-0.4557 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-9.5641,2.8189,-1.9255) mvmt=(0.1594,-0.2013,-0.2013) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.064,8.681,92.094) lpos=(-9.564,2.819,-1.926) lprev=(-9.723,3.020,-1.724) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.2609,-1.3292,-0.3003) mvmt=(0.1594,-0.2013,-0.2013) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2359,-1.5692,-0.4053) mvmt=(0.1594,-0.2013,-0.2013) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.2359,-3.7804,-1.7553) mvmt=(0.1594,-0.2013,-0.2013) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1981,-2.6489,1.0990) mvmt=(0.2477,0.0676,-0.2013) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.5641,2.8189,-1.9055) mvmt=(0.1594,-0.2013,-0.2013) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.4082,2.6220,-2.1224) mvmt=(0.1559,-0.1969,-0.1969) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.908,8.878,91.898) lpos=(-9.408,2.622,-2.122) lprev=(-9.564,2.819,-1.926) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.4168,-1.5260,-0.4972) mvmt=(0.1559,-0.1969,-0.1969) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3918,-1.7660,-0.6022) mvmt=(0.1559,-0.1969,-0.1969) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4404,-2.5827,0.9021) mvmt=(0.2423,0.0662,-0.1969) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.4082,2.6220,-2.1024) mvmt=(0.1559,-0.1969,-0.1969) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.4082,2.6220,-2.8724) mvmt=(0.1559,-0.1969,-0.9469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.4082,2.6220,-2.8724) out=(-9.4082,2.6220,-2.5700) delta=(0.0000,0.0000,0.3024) deltaMag=0.3024 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.5968 dpPos=0.1776 dpMove=-0.7500 iDist=0.4032 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(139.908,8.878,91.148) lpos=(-9.408,2.622,-2.872) lprev=(-9.564,2.819,-1.926) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.4082,2.6220,-2.5700) mvmt=(0.1559,-0.1969,-0.6445) collide=False insertType=0 objState=0x303 winterp=0.5968 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.908,8.878,91.450) lpos=(-9.408,2.622,-2.570) lprev=(-9.564,2.819,-1.926) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.4168,-1.5260,-0.9448) mvmt=(0.1559,-0.1969,-0.6445) collide=False insertType=0 objState=0x303 winterp=0.5968 return=-1 +[push-back] site=adjust_sphere in=(0.4168,-1.5260,-0.9448) out=(0.4168,-1.5260,-0.4972) delta=(0.0000,0.0000,0.4476) deltaMag=0.4476 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.5968->0.0000 dpPos=0.1635 dpMove=-0.3165 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-9.4082,2.6220,-2.1224) mvmt=(0.1559,-0.1969,-0.1969) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.908,8.878,91.898) lpos=(-9.408,2.622,-2.122) lprev=(-9.564,2.819,-1.926) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.4168,-1.5260,-0.4972) mvmt=(0.1559,-0.1969,-0.1969) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3918,-1.7660,-0.6022) mvmt=(0.1559,-0.1969,-0.1969) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4404,-2.5827,0.9021) mvmt=(0.2423,0.0662,-0.1969) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.4082,2.6220,-2.1024) mvmt=(0.1559,-0.1969,-0.1969) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.2500,2.4222,-2.3222) mvmt=(0.1582,-0.1998,-0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.750,9.078,91.698) lpos=(-9.250,2.422,-2.322) lprev=(-9.408,2.622,-2.122) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.5750,-1.7258,-0.6970) mvmt=(0.1582,-0.1998,-0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5500,-1.9658,-0.8020) mvmt=(0.1582,-0.1998,-0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6862,-2.5156,0.7023) mvmt=(0.2458,0.0671,-0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.2500,2.4222,-2.3022) mvmt=(0.1582,-0.1998,-0.1998) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.2500,2.4222,-3.0722) mvmt=(0.1582,-0.1998,-0.9498) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.2500,2.4222,-3.0722) out=(-9.2500,2.4222,-2.5700) delta=(0.0000,0.0000,0.5022) deltaMag=0.5022 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.3304 dpPos=-0.0222 dpMove=-0.7500 iDist=0.6696 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(139.750,9.078,90.948) lpos=(-9.250,2.422,-3.072) lprev=(-9.408,2.622,-2.122) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.2500,2.4222,-2.5700) mvmt=(0.1582,-0.1998,-0.4476) collide=False insertType=0 objState=0x303 winterp=0.3304 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.750,9.078,91.450) lpos=(-9.250,2.422,-2.570) lprev=(-9.408,2.622,-2.122) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.5750,-1.7258,-0.9448) mvmt=(0.1582,-0.1998,-0.4476) collide=False insertType=0 objState=0x303 winterp=0.3304 return=-1 +[push-back-disp] site=dispatch center=(1.5500,-1.9658,-1.0498) mvmt=(0.1582,-0.1998,-0.4476) collide=False insertType=0 objState=0x303 winterp=0.3304 return=-1 +[push-back-disp] site=dispatch center=(2.6862,-2.5156,0.4545) mvmt=(0.2458,0.0671,-0.4476) collide=False insertType=0 objState=0x303 winterp=0.3304 return=-1 +[push-back-disp] site=dispatch center=(-9.2500,2.4222,-2.5500) mvmt=(0.1582,-0.1998,-0.4476) collide=False insertType=0 objState=0x303 winterp=0.3304 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.0993,2.0416,-2.5700) mvmt=(0.1507,-0.3806,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.599,9.458,91.450) lpos=(-9.099,2.042,-2.570) lprev=(-9.250,2.422,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.7257,-2.1064,-0.9448) mvmt=(0.1507,-0.3806,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7007,-2.3464,-1.0498) mvmt=(0.1507,-0.3806,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0954,-2.5263,0.4545) mvmt=(0.4092,-0.0107,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.0993,2.0416,-2.5500) mvmt=(0.1507,-0.3806,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.0993,2.0416,-3.3200) mvmt=(0.1507,-0.3806,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.0993,2.0416,-3.3200) out=(-9.0993,2.0416,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(139.599,9.458,90.700) lpos=(-9.099,2.042,-3.320) lprev=(-9.250,2.422,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.0993,2.0416,-2.5700) mvmt=(0.1507,-0.3806,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.599,9.458,91.450) lpos=(-9.099,2.042,-2.570) lprev=(-9.250,2.422,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.7257,-2.1064,-0.9448) mvmt=(0.1507,-0.3806,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7007,-2.3464,-1.0498) mvmt=(0.1507,-0.3806,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0954,-2.5263,0.4545) mvmt=(0.4092,-0.0107,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.0993,2.0416,-2.5500) mvmt=(0.1507,-0.3806,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-8.9442,1.6497,-2.5700) mvmt=(0.1552,-0.3919,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.444,9.850,91.450) lpos=(-8.944,1.650,-2.570) lprev=(-9.099,2.042,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.8808,-2.4984,-0.9448) mvmt=(0.1552,-0.3919,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8559,-2.7384,-1.0498) mvmt=(0.1552,-0.3919,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.9442,1.6497,-2.5500) mvmt=(0.1552,-0.3919,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.9442,1.6497,-3.3200) mvmt=(0.1552,-0.3919,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-8.9442,1.6497,-3.3200) out=(-8.9442,1.6497,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(139.444,9.850,90.700) lpos=(-8.944,1.650,-3.320) lprev=(-9.099,2.042,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-8.9442,1.6497,-2.5700) mvmt=(0.1552,-0.3919,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.444,9.850,91.450) lpos=(-8.944,1.650,-2.570) lprev=(-9.099,2.042,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.8808,-2.4984,-0.9448) mvmt=(0.1552,-0.3919,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8559,-2.7384,-1.0498) mvmt=(0.1552,-0.3919,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.9442,1.6497,-2.5500) mvmt=(0.1552,-0.3919,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-8.7874,1.2538,-2.5700) mvmt=(0.1567,-0.3959,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.287,10.246,91.450) lpos=(-8.787,1.254,-2.570) lprev=(-8.944,1.650,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.0376,-2.8943,-0.9448) mvmt=(0.1567,-0.3959,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0126,-3.1343,-1.0498) mvmt=(0.1567,-0.3959,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.7874,1.2538,-2.5500) mvmt=(0.1567,-0.3959,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.7874,1.2538,-3.3200) mvmt=(0.1567,-0.3959,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-8.7874,1.2538,-3.3200) out=(-8.7874,1.2538,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(139.287,10.246,90.700) lpos=(-8.787,1.254,-3.320) lprev=(-8.944,1.650,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-8.7874,1.2538,-2.5700) mvmt=(0.1567,-0.3959,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.287,10.246,91.450) lpos=(-8.787,1.254,-2.570) lprev=(-8.944,1.650,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.0376,-2.8943,-0.9448) mvmt=(0.1567,-0.3959,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0126,-3.1343,-1.0498) mvmt=(0.1567,-0.3959,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.7874,1.2538,-2.5500) mvmt=(0.1567,-0.3959,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-8.6414,0.8850,-2.5700) mvmt=(0.1460,-0.3688,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.141,10.615,91.450) lpos=(-8.641,0.885,-2.570) lprev=(-8.787,1.254,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.1836,-3.2630,-0.9448) mvmt=(0.1460,-0.3688,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1586,-3.5030,-1.0498) mvmt=(0.1460,-0.3688,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.6414,0.8850,-2.5500) mvmt=(0.1460,-0.3688,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.6414,0.8850,-3.3200) mvmt=(0.1460,-0.3688,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-8.6414,0.8850,-3.3200) out=(-8.6414,0.8850,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(139.141,10.615,90.700) lpos=(-8.641,0.885,-3.320) lprev=(-8.787,1.254,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-8.6414,0.8850,-2.5700) mvmt=(0.1460,-0.3688,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.141,10.615,91.450) lpos=(-8.641,0.885,-2.570) lprev=(-8.787,1.254,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.1836,-3.2630,-0.9448) mvmt=(0.1460,-0.3688,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1586,-3.5030,-1.0498) mvmt=(0.1460,-0.3688,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.6414,0.8850,-2.5500) mvmt=(0.1460,-0.3688,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-8.4811,0.4801,-2.5700) mvmt=(0.1603,-0.4049,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.981,11.020,91.450) lpos=(-8.481,0.480,-2.570) lprev=(-8.641,0.885,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.3439,-3.6679,-0.9448) mvmt=(0.1603,-0.4049,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3189,-3.9079,-1.0498) mvmt=(0.1603,-0.4049,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.4811,0.4801,-2.5500) mvmt=(0.1603,-0.4049,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.4811,0.4801,-3.3200) mvmt=(0.1603,-0.4049,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-8.4811,0.4801,-3.3200) out=(-8.4811,0.4801,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.981,11.020,90.700) lpos=(-8.481,0.480,-3.320) lprev=(-8.641,0.885,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-8.4811,0.4801,-2.5700) mvmt=(0.1603,-0.4049,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.981,11.020,91.450) lpos=(-8.481,0.480,-2.570) lprev=(-8.641,0.885,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.3439,-3.6679,-0.9448) mvmt=(0.1603,-0.4049,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3189,-3.9079,-1.0498) mvmt=(0.1603,-0.4049,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.4811,0.4801,-2.5500) mvmt=(0.1603,-0.4049,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-8.3235,0.0821,-2.5700) mvmt=(0.1576,-0.3980,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.3235,0.0821,-2.5700) mvmt=(0.1576,-0.3980,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.824,11.418,91.450) lpos=(-8.324,0.082,-2.570) lprev=(-8.481,0.480,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5014,-4.0659,-0.9448) mvmt=(0.1576,-0.3980,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4765,-4.3059,-1.0498) mvmt=(0.1576,-0.3980,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.3235,0.0821,-2.5500) mvmt=(0.1576,-0.3980,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.824,11.418,91.450) lpos=(-8.324,0.082,-2.570) lprev=(-8.481,0.480,-2.570) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-8.3235,0.4801,-2.5700) mvmt=(0.1576,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.824,11.020,91.450) lpos=(-8.324,0.480,-2.570) lprev=(-8.481,0.480,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5014,-3.6679,-0.9448) mvmt=(0.1576,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4765,-3.9079,-1.0498) mvmt=(0.1576,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.3235,0.4801,-2.5500) mvmt=(0.1576,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.3235,0.4801,-3.3200) mvmt=(0.1576,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-8.3235,0.4801,-3.3200) out=(-8.3235,0.4801,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.824,11.020,90.700) lpos=(-8.324,0.480,-3.320) lprev=(-8.481,0.480,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-8.3235,0.4801,-2.5700) mvmt=(0.1576,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.824,11.020,91.450) lpos=(-8.324,0.480,-2.570) lprev=(-8.481,0.480,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5014,-3.6679,-0.9448) mvmt=(0.1576,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4765,-3.9079,-1.0498) mvmt=(0.1576,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.3235,0.4801,-2.5500) mvmt=(0.1576,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.9835,0.7042,-2.5700) mvmt=(0.3401,0.2240,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.483,10.796,91.450) lpos=(-7.983,0.704,-2.570) lprev=(-8.324,0.480,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.8415,-3.4439,-0.9448) mvmt=(0.3401,0.2240,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8165,-3.6839,-1.0498) mvmt=(0.3401,0.2240,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.9835,0.7042,-2.5500) mvmt=(0.3401,0.2240,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.9835,0.7042,-3.3200) mvmt=(0.3401,0.2240,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.9835,0.7042,-3.3200) out=(-7.9835,0.7042,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.483,10.796,90.700) lpos=(-7.983,0.704,-3.320) lprev=(-8.324,0.480,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.9835,0.7042,-2.5700) mvmt=(0.3401,0.2240,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.483,10.796,91.450) lpos=(-7.983,0.704,-2.570) lprev=(-8.324,0.480,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.8415,-3.4439,-0.9448) mvmt=(0.3401,0.2240,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8165,-3.6839,-1.0498) mvmt=(0.3401,0.2240,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.9835,0.7042,-2.5500) mvmt=(0.3401,0.2240,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.6467,0.9698,-2.5700) mvmt=(0.3368,0.2656,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.147,10.530,91.450) lpos=(-7.647,0.970,-2.570) lprev=(-7.983,0.704,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1783,-3.1783,-0.9448) mvmt=(0.3368,0.2656,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1533,-3.4183,-1.0498) mvmt=(0.3368,0.2656,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.6467,0.9698,-2.5500) mvmt=(0.3368,0.2656,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.6467,0.9698,-3.3200) mvmt=(0.3368,0.2656,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.6467,0.9698,-3.3200) out=(-7.6467,0.9698,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.147,10.530,90.700) lpos=(-7.647,0.970,-3.320) lprev=(-7.983,0.704,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.6467,0.9698,-2.5700) mvmt=(0.3368,0.2656,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.147,10.530,91.450) lpos=(-7.647,0.970,-2.570) lprev=(-7.983,0.704,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1783,-3.1783,-0.9448) mvmt=(0.3368,0.2656,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1533,-3.4183,-1.0498) mvmt=(0.3368,0.2656,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.6467,0.9698,-2.5500) mvmt=(0.3368,0.2656,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.3267,1.2635,-2.5700) mvmt=(0.3200,0.2937,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.827,10.236,91.450) lpos=(-7.327,1.264,-2.570) lprev=(-7.647,0.970,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4983,-2.8845,-0.9448) mvmt=(0.3200,0.2937,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4733,-3.1245,-1.0498) mvmt=(0.3200,0.2937,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.3267,1.2635,-2.5500) mvmt=(0.3200,0.2937,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.3267,1.2635,-3.3200) mvmt=(0.3200,0.2937,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.3267,1.2635,-3.3200) out=(-7.3267,1.2635,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(137.827,10.236,90.700) lpos=(-7.327,1.264,-3.320) lprev=(-7.647,0.970,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.3267,1.2635,-2.5700) mvmt=(0.3200,0.2937,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.827,10.236,91.450) lpos=(-7.327,1.264,-2.570) lprev=(-7.647,0.970,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4983,-2.8845,-0.9448) mvmt=(0.3200,0.2937,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4733,-3.1245,-1.0498) mvmt=(0.3200,0.2937,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.3267,1.2635,-2.5500) mvmt=(0.3200,0.2937,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-6.9997,1.5637,-2.5700) mvmt=(0.3270,0.3002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.500,9.936,91.450) lpos=(-7.000,1.564,-2.570) lprev=(-7.327,1.264,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8253,-2.5844,-0.9448) mvmt=(0.3270,0.3002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8003,-2.8244,-1.0498) mvmt=(0.3270,0.3002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.9997,1.5637,-2.5500) mvmt=(0.3270,0.3002,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.9997,1.5637,-3.3200) mvmt=(0.3270,0.3002,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-6.9997,1.5637,-3.3200) out=(-6.9997,1.5637,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(137.500,9.936,90.700) lpos=(-7.000,1.564,-3.320) lprev=(-7.327,1.264,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-6.9997,1.5637,-2.5700) mvmt=(0.3270,0.3002,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.500,9.936,91.450) lpos=(-7.000,1.564,-2.570) lprev=(-7.327,1.264,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8253,-2.5844,-0.9448) mvmt=(0.3270,0.3002,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8003,-2.8244,-1.0498) mvmt=(0.3270,0.3002,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.9997,1.5637,-2.5500) mvmt=(0.3270,0.3002,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-6.7054,1.8338,-2.5700) mvmt=(0.2943,0.2702,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.205,9.666,91.450) lpos=(-6.705,1.834,-2.570) lprev=(-7.000,1.564,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1196,-2.3142,-0.9448) mvmt=(0.2943,0.2702,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0946,-2.5542,-1.0498) mvmt=(0.2943,0.2702,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.7054,1.8338,-2.5500) mvmt=(0.2943,0.2702,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.7054,1.8338,-3.3200) mvmt=(0.2943,0.2702,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-6.7054,1.8338,-3.3200) out=(-6.7054,1.8338,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(137.205,9.666,90.700) lpos=(-6.705,1.834,-3.320) lprev=(-7.000,1.564,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-6.7054,1.8338,-2.5700) mvmt=(0.2943,0.2702,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.205,9.666,91.450) lpos=(-6.705,1.834,-2.570) lprev=(-7.000,1.564,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1196,-2.3142,-0.9448) mvmt=(0.2943,0.2702,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.0946,-2.5542,-1.0498) mvmt=(0.2943,0.2702,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.7054,1.8338,-2.5500) mvmt=(0.2943,0.2702,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-6.4098,2.1051,-2.5700) mvmt=(0.2955,0.2713,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(136.910,9.395,91.450) lpos=(-6.410,2.105,-2.570) lprev=(-6.705,1.834,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-6.4098,2.1051,-2.5700) mvmt=(0.2955,0.2713,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40148 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40148 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.4152,-2.0429,-0.9448) mvmt=(0.2955,0.2713,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3902,-2.2829,-1.0498) mvmt=(0.2955,0.2713,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.4098,2.1051,-2.5500) mvmt=(0.2955,0.2713,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.4098,2.1051,-3.3200) mvmt=(0.2955,0.2713,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-6.4098,2.1051,-3.3200) out=(-6.4098,2.1051,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(136.910,9.395,90.700) lpos=(-6.410,2.105,-3.320) lprev=(-6.705,1.834,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-6.4098,2.1051,-2.5700) mvmt=(0.2955,0.2713,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(136.910,9.395,91.450) lpos=(-6.410,2.105,-2.570) lprev=(-6.705,1.834,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-6.4098,2.1051,-2.5700) mvmt=(0.2955,0.2713,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40148 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40148 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.4152,-2.0429,-0.9448) mvmt=(0.2955,0.2713,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.3902,-2.2829,-1.0498) mvmt=(0.2955,0.2713,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.4098,2.1051,-2.5500) mvmt=(0.2955,0.2713,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-6.0816,2.4064,-2.5700) mvmt=(0.3282,0.3013,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(136.582,9.094,91.450) lpos=(-6.082,2.406,-2.570) lprev=(-6.410,2.105,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-6.0816,2.4064,-2.5700) mvmt=(0.3282,0.3013,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40148 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40148 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.7434,-1.7417,-0.9448) mvmt=(0.3282,0.3013,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7184,-1.9817,-1.0498) mvmt=(0.3282,0.3013,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.0816,2.4064,-2.5500) mvmt=(0.3282,0.3013,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.0816,2.4064,-3.3200) mvmt=(0.3282,0.3013,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-6.0816,2.4064,-3.3200) out=(-6.0816,2.4064,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(136.582,9.094,90.700) lpos=(-6.082,2.406,-3.320) lprev=(-6.410,2.105,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-6.0816,2.4064,-2.5700) mvmt=(0.3282,0.3013,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(136.582,9.094,91.450) lpos=(-6.082,2.406,-2.570) lprev=(-6.410,2.105,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-6.0816,2.4064,-2.5700) mvmt=(0.3282,0.3013,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40148 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40148 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.7434,-1.7417,-0.9448) mvmt=(0.3282,0.3013,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.7184,-1.9817,-1.0498) mvmt=(0.3282,0.3013,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.0816,2.4064,-2.5500) mvmt=(0.3282,0.3013,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.7800,2.6833,-2.5700) mvmt=(0.3016,0.2769,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(136.280,8.817,91.450) lpos=(-5.780,2.683,-2.570) lprev=(-6.082,2.406,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.7800,2.6833,-2.5700) mvmt=(0.3016,0.2769,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40148 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40148 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.0450,-1.4648,-0.9448) mvmt=(0.3016,0.2769,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.0200,-1.7048,-1.0498) mvmt=(0.3016,0.2769,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.7800,2.6832,-2.5500) mvmt=(0.3016,0.2769,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[check-bldg] portal->0xA9B40145 wpos=(136.280,8.817,90.700) lpos=(-5.780,2.683,-3.320) r=0.480 inside=False +[check-bldg] portal->0xA9B4014C wpos=(136.280,8.817,90.700) lpos=(-5.780,2.683,-3.320) r=0.480 inside=False +[check-bldg] portal->0xA9B4014E wpos=(136.280,8.817,90.700) lpos=(-5.780,2.683,-3.320) r=0.480 inside=False +[check-bldg] portal->0xA9B4014F wpos=(136.280,8.817,90.700) lpos=(-5.780,2.683,-3.320) r=0.480 inside=False +[check-bldg] portal->0xA9B40150 wpos=(136.280,8.817,90.700) lpos=(-5.780,2.683,-3.320) r=0.480 inside=False +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateWalkable:1802 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,-0.000,1.000) D=-94.000 caller=Transition.ValidateWalkable:1802 +[cp-write] ContactPlaneCellId: 0xA9B40147 -> 0xA9B40029 caller=Transition.ValidateWalkable:1802 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,-0.000,1.000) D=-94.000 caller=Transition.ValidateWalkable:1802 +[cp-write] LastKnownContactPlaneCellId: 0xA9B40147 -> 0xA9B40029 caller=Transition.ValidateWalkable:1802 +[check-bldg] portal->0xA9B40145 wpos=(136.280,8.817,89.950) lpos=(-5.780,2.683,-4.070) r=0.480 inside=False +[check-bldg] portal->0xA9B4014C wpos=(136.280,8.817,89.950) lpos=(-5.780,2.683,-4.070) r=0.480 inside=False +[check-bldg] portal->0xA9B4014E wpos=(136.280,8.817,89.950) lpos=(-5.780,2.683,-4.070) r=0.480 inside=False +[check-bldg] portal->0xA9B4014F wpos=(136.280,8.817,89.950) lpos=(-5.780,2.683,-4.070) r=0.480 inside=False +[check-bldg] portal->0xA9B40150 wpos=(136.280,8.817,89.950) lpos=(-5.780,2.683,-4.070) r=0.480 inside=False +[cp-write] ContactPlaneValid: True -> False caller=Transition.EdgeSlideAfterStepDownFailed:1109 +[cp-write] LastKnownContactPlaneValid: True -> False caller=Transition.ValidateTransition:2844 +[push-back-disp] site=dispatch center=(-5.7759,2.6870,-2.5760) mvmt=(0.3057,0.2806,-0.0060) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(136.276,8.813,91.444) lpos=(-5.776,2.687,-2.576) lprev=(-6.082,2.406,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.7759,2.6870,-2.5760) mvmt=(0.3057,0.2806,-0.0060) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40148 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40148 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.0491,-1.4610,-0.9508) mvmt=(0.3057,0.2806,-0.0060) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.0241,-1.7010,-1.0558) mvmt=(0.3057,0.2806,-0.0060) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.7759,2.6870,-2.5560) mvmt=(0.3057,0.2806,-0.0060) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.4592,2.9777,-2.5949) mvmt=(0.3167,0.2907,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.959,8.522,91.425) lpos=(-5.459,2.978,-2.595) lprev=(-5.776,2.687,-2.576) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.4592,2.9777,-2.5949) mvmt=(0.3167,0.2907,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40148 iter=0xA9B40147 result=OK +[push-back-cell] site=other_cell primary=0xA9B40148 other=0xA9B40147 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.3658,-1.1703,-0.9697) mvmt=(0.3167,0.2907,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(5.3408,-1.4103,-1.0747) mvmt=(0.3167,0.2907,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6625,1.1892,0.4296) mvmt=(-0.1431,0.4053,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.4592,2.9777,-2.5749) mvmt=(0.3167,0.2907,-0.0189) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[cell-transit] 0xA9B40147 -> 0xA9B40148 pos=(135.959,8.522,90.945) reason=resolver +[push-back-disp] site=dispatch center=(-5.1633,3.2493,-2.6242) mvmt=(0.2959,0.2716,-0.0293) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.663,8.251,91.396) lpos=(-5.163,3.249,-2.624) lprev=(-5.459,2.978,-2.595) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.1633,3.2493,-2.6242) mvmt=(0.2959,0.2716,-0.0293) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40148 iter=0xA9B40147 result=OK +[push-back-cell] site=other_cell primary=0xA9B40148 other=0xA9B40147 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(4.6617,-0.8988,-0.9990) mvmt=(0.2959,0.2716,-0.0293) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5288,1.5679,0.4003) mvmt=(-0.1337,0.3787,-0.0293) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.1633,3.2493,-2.6042) mvmt=(0.2959,0.2716,-0.0293) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.8514,3.5356,-2.6673) mvmt=(0.3119,0.2863,-0.0431) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.351,7.964,91.353) lpos=(-4.851,3.536,-2.667) lprev=(-5.163,3.249,-2.624) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(4.9736,-0.6125,-1.0421) mvmt=(0.3119,0.2863,-0.0431) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3878,1.9671,0.3572) mvmt=(-0.1410,0.3992,-0.0431) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.8514,3.5356,-2.6473) mvmt=(0.3119,0.2863,-0.0431) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.5564,3.8064,-2.7196) mvmt=(0.2950,0.2708,-0.0523) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.056,7.694,91.300) lpos=(-4.556,3.806,-2.720) lprev=(-4.851,3.536,-2.667) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.5564,3.8064,-2.6996) mvmt=(0.2950,0.2708,-0.0523) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.2349,4.1015,-2.7893) mvmt=(0.3215,0.2951,-0.0697) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(134.735,7.398,91.231) lpos=(-4.235,4.102,-2.789) lprev=(-4.556,3.806,-2.720) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.2349,4.1015,-2.7693) mvmt=(0.3215,0.2951,-0.0697) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9108,4.3990,-2.8731) mvmt=(0.3241,0.2975,-0.0837) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(134.411,7.101,91.147) lpos=(-3.911,4.399,-2.873) lprev=(-4.235,4.102,-2.789) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-3.9108,4.3990,-2.8531) mvmt=(0.3241,0.2975,-0.0837) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6180,4.6678,-2.9604) mvmt=(0.2929,0.2688,-0.0873) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(134.118,6.832,91.060) lpos=(-3.618,4.668,-2.960) lprev=(-3.911,4.399,-2.873) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-3.6180,4.6678,-2.9404) mvmt=(0.2929,0.2688,-0.0873) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.2957,4.9636,-3.0692) mvmt=(0.3223,0.2958,-0.1088) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.796,6.536,90.951) lpos=(-3.296,4.964,-3.069) lprev=(-3.618,4.668,-2.960) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-3.2957,4.9636,-3.0492) mvmt=(0.3223,0.2958,-0.1088) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.0034,5.2319,-3.1794) mvmt=(0.2922,0.2682,-0.1102) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.503,6.268,90.841) lpos=(-3.003,5.232,-3.179) lprev=(-3.296,4.964,-3.069) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-3.0034,5.2319,-3.1594) mvmt=(0.2922,0.2682,-0.1102) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.7102,5.5010,-3.3010) mvmt=(0.2932,0.2691,-0.1216) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.210,5.999,90.719) lpos=(-2.710,5.501,-3.301) lprev=(-3.003,5.232,-3.179) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-2.7102,5.5010,-3.2810) mvmt=(0.2932,0.2691,-0.1216) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.3918,5.7933,-3.4456) mvmt=(0.3184,0.2923,-0.1446) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.892,5.707,90.574) lpos=(-2.392,5.793,-3.446) lprev=(-2.710,5.501,-3.301) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-2.3918,5.7933,-3.4256) mvmt=(0.3184,0.2923,-0.1446) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0743,6.0847,-3.6028) mvmt=(0.3175,0.2915,-0.1572) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.574,5.415,90.417) lpos=(-2.074,6.085,-3.603) lprev=(-2.392,5.793,-3.446) r=0.480 result=Adjusted n=(0.000,0.000,1.000) sides=Landblock +[push-back-disp] site=dispatch center=(-2.0743,6.0847,-3.6028) mvmt=(0.3175,0.2915,-0.1572) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.0743,6.0847,-3.6028) out=(-2.2416,5.9312,-3.5200) delta=(-0.1673,-0.1536,0.0828) deltaMag=0.2417 n=(0.0000,0.0000,1.0000) d=4.0000 r=0.4800 winterp=1.0000->0.4732 dpPos=0.3972 dpMove=-0.1572 iDist=0.5268 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=BSPQuery.FindCollisions:1713 +[indoor-bsp] cell=0xA9B40148 wpos=(132.574,5.415,90.417) lpos=(-2.074,6.085,-3.603) lprev=(-2.392,5.793,-3.446) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.2416,5.9312,-3.5200) mvmt=(0.1502,0.1379,-0.0744) collide=True insertType=0 objState=0x300 winterp=0.4732 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.742,5.569,90.500) lpos=(-2.242,5.931,-3.520) lprev=(-2.392,5.793,-3.446) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-2.2416,5.9312,-3.5000) mvmt=(0.1502,0.1379,-0.0744) collide=True insertType=0 objState=0x300 winterp=0.4732 return=-1 +[push-back-disp] site=dispatch center=(-2.2416,5.9312,-3.5200) mvmt=(0.1502,0.1379,-0.0744) collide=False insertType=1 objState=0x300 winterp=0.4732 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.742,5.569,90.500) lpos=(-2.242,5.931,-3.520) lprev=(-2.392,5.793,-3.446) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-2.2416,5.9312,-3.5000) mvmt=(0.1502,0.1379,-0.0744) collide=False insertType=1 objState=0x300 winterp=0.4732 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.0552,6.2944,-3.5200) mvmt=(0.1864,0.3633,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.555,5.206,90.500) lpos=(-2.055,6.294,-3.520) lprev=(-2.242,5.931,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-2.0552,6.2944,-3.5000) mvmt=(0.1864,0.3633,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.0552,6.2944,-4.2700) mvmt=(0.1864,0.3633,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.0552,6.2944,-4.2700) out=(-2.0552,6.2944,-3.5200) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=4.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(132.555,5.206,89.750) lpos=(-2.055,6.294,-4.270) lprev=(-2.242,5.931,-3.520) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.0552,6.2944,-3.5200) mvmt=(0.1864,0.3633,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.555,5.206,90.500) lpos=(-2.055,6.294,-3.520) lprev=(-2.242,5.931,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-2.0552,6.2944,-3.5000) mvmt=(0.1864,0.3633,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.9014,6.6642,-3.5200) mvmt=(0.1539,0.3698,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.401,4.836,90.500) lpos=(-1.901,6.664,-3.520) lprev=(-2.055,6.294,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.9014,6.6642,-3.5000) mvmt=(0.1539,0.3698,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.9014,6.6642,-4.2700) mvmt=(0.1539,0.3698,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.9014,6.6642,-4.2700) out=(-1.9014,6.6642,-3.5200) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=4.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(132.401,4.836,89.750) lpos=(-1.901,6.664,-4.270) lprev=(-2.055,6.294,-3.520) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.9014,6.6642,-3.5200) mvmt=(0.1539,0.3698,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.401,4.836,90.500) lpos=(-1.901,6.664,-3.520) lprev=(-2.055,6.294,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.9014,6.6642,-3.5000) mvmt=(0.1539,0.3698,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.7743,7.0579,-3.5200) mvmt=(0.1270,0.3937,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.274,4.442,90.500) lpos=(-1.774,7.058,-3.520) lprev=(-1.901,6.664,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.7743,7.0579,-3.5000) mvmt=(0.1270,0.3937,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7743,7.0579,-4.2700) mvmt=(0.1270,0.3937,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.7743,7.0579,-4.2700) out=(-1.7743,7.0579,-3.5200) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=4.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(132.274,4.442,89.750) lpos=(-1.774,7.058,-4.270) lprev=(-1.901,6.664,-3.520) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.7743,7.0579,-3.5200) mvmt=(0.1270,0.3937,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.274,4.442,90.500) lpos=(-1.774,7.058,-3.520) lprev=(-1.901,6.664,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.7743,7.0579,-3.5000) mvmt=(0.1270,0.3937,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.6808,7.4564,-3.5200) mvmt=(0.0936,0.3985,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.181,4.044,90.500) lpos=(-1.681,7.456,-3.520) lprev=(-1.774,7.058,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.6808,7.4564,-3.5000) mvmt=(0.0936,0.3985,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6808,7.4564,-4.2700) mvmt=(0.0936,0.3985,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.6808,7.4564,-4.2700) out=(-1.6808,7.4564,-3.5200) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=4.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(132.181,4.044,89.750) lpos=(-1.681,7.456,-4.270) lprev=(-1.774,7.058,-3.520) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.6808,7.4564,-3.5200) mvmt=(0.0936,0.3985,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.181,4.044,90.500) lpos=(-1.681,7.456,-3.520) lprev=(-1.774,7.058,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.6808,7.4564,-3.5000) mvmt=(0.0936,0.3985,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.6197,7.8638,-3.5200) mvmt=(0.0611,0.4074,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.120,3.636,90.500) lpos=(-1.620,7.864,-3.520) lprev=(-1.681,7.456,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8762,-3.0047,0.4925) mvmt=(-0.4074,0.0611,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6197,7.8638,-3.5000) mvmt=(0.0611,0.4074,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6197,7.8638,-4.2700) mvmt=(0.0611,0.4074,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.6197,7.8638,-4.2700) out=(-1.6197,7.8638,-3.5200) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=4.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(132.120,3.636,89.750) lpos=(-1.620,7.864,-4.270) lprev=(-1.681,7.456,-3.520) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.6197,7.8638,-3.5200) mvmt=(0.0611,0.4074,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.120,3.636,90.500) lpos=(-1.620,7.864,-3.520) lprev=(-1.681,7.456,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8762,-3.0047,0.4925) mvmt=(-0.4074,0.0611,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6197,7.8638,-3.5000) mvmt=(0.0611,0.4074,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.5921,8.2652,-3.5200) mvmt=(0.0276,0.4014,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.092,3.235,90.500) lpos=(-1.592,8.265,-3.520) lprev=(-1.620,7.864,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4748,-2.9771,0.4925) mvmt=(-0.4014,0.0276,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6273,-1.5371,0.4925) mvmt=(-0.4014,0.0276,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5921,8.2652,-3.5000) mvmt=(0.0276,0.4014,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5921,8.2652,-4.2700) mvmt=(0.0276,0.4014,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.5921,8.2652,-4.2700) out=(-1.5921,8.2652,-3.5200) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=4.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(132.092,3.235,89.750) lpos=(-1.592,8.265,-4.270) lprev=(-1.620,7.864,-3.520) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.5921,8.2652,-3.5200) mvmt=(0.0276,0.4014,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.092,3.235,90.500) lpos=(-1.592,8.265,-3.520) lprev=(-1.620,7.864,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.4748,-2.9771,0.4925) mvmt=(-0.4014,0.0276,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6273,-1.5371,0.4925) mvmt=(-0.4014,0.0276,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5921,8.2652,-3.5000) mvmt=(0.0276,0.4014,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.5967,8.6689,-3.5200) mvmt=(-0.0047,0.4036,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.097,2.831,90.500) lpos=(-1.597,8.669,-3.520) lprev=(-1.592,8.265,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0711,-2.9817,0.4925) mvmt=(-0.4036,-0.0047,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2236,-1.5417,0.4925) mvmt=(-0.4036,-0.0047,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5967,8.6689,-3.5000) mvmt=(-0.0047,0.4036,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5967,8.6689,-4.2700) mvmt=(-0.0047,0.4036,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.5967,8.6689,-4.2700) out=(-1.5967,8.6689,-3.5200) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=4.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(132.097,2.831,89.750) lpos=(-1.597,8.669,-4.270) lprev=(-1.592,8.265,-3.520) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.5967,8.6689,-3.5200) mvmt=(-0.0047,0.4036,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.097,2.831,90.500) lpos=(-1.597,8.669,-3.520) lprev=(-1.592,8.265,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0711,-2.9817,0.4925) mvmt=(-0.4036,-0.0047,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.2236,-1.5417,0.4925) mvmt=(-0.4036,-0.0047,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.5967,8.6689,-3.5000) mvmt=(-0.0047,0.4036,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.6334,9.0687,-3.5200) mvmt=(-0.0367,0.3999,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.133,2.431,90.500) lpos=(-1.633,9.069,-3.520) lprev=(-1.597,8.669,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6712,-3.0184,0.4925) mvmt=(-0.3999,-0.0367,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8112,-3.0184,0.4925) mvmt=(-0.3999,-0.0367,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8237,-1.5784,0.4925) mvmt=(-0.3999,-0.0367,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6334,9.0687,-3.5000) mvmt=(-0.0367,0.3999,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6334,9.0687,-4.2700) mvmt=(-0.0367,0.3999,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.6334,9.0687,-4.2700) out=(-1.6334,9.0687,-3.5200) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=4.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(132.133,2.431,89.750) lpos=(-1.633,9.069,-4.270) lprev=(-1.597,8.669,-3.520) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.6334,9.0687,-3.5200) mvmt=(-0.0367,0.3999,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.133,2.431,90.500) lpos=(-1.633,9.069,-3.520) lprev=(-1.597,8.669,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6712,-3.0184,0.4925) mvmt=(-0.3999,-0.0367,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8112,-3.0184,0.4925) mvmt=(-0.3999,-0.0367,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8237,-1.5784,0.4925) mvmt=(-0.3999,-0.0367,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.6334,9.0687,-3.5000) mvmt=(-0.0367,0.3999,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-1.7041,9.4731,-3.5200) mvmt=(-0.0707,0.4044,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.204,2.027,90.500) lpos=(-1.704,9.473,-3.520) lprev=(-1.633,9.069,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.2669,-3.0891,0.4925) mvmt=(-0.4044,-0.0707,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4069,-3.0891,0.4925) mvmt=(-0.4044,-0.0707,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4194,-1.6491,0.4925) mvmt=(-0.4044,-0.0707,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7041,9.4731,-3.5000) mvmt=(-0.0707,0.4044,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7041,9.4731,-4.2700) mvmt=(-0.0707,0.4044,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-1.7041,9.4731,-4.2700) out=(-1.7041,9.4731,-3.5200) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=4.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(132.204,2.027,89.750) lpos=(-1.704,9.473,-4.270) lprev=(-1.633,9.069,-3.520) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-1.7041,9.4731,-3.5200) mvmt=(-0.0707,0.4044,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.204,2.027,90.500) lpos=(-1.704,9.473,-3.520) lprev=(-1.633,9.069,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.2669,-3.0891,0.4925) mvmt=(-0.4044,-0.0707,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4069,-3.0891,0.4925) mvmt=(-0.4044,-0.0707,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4194,-1.6491,0.4925) mvmt=(-0.4044,-0.0707,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-1.7041,9.4731,-3.5000) mvmt=(-0.0707,0.4044,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.1339,9.3987,-3.5200) mvmt=(-0.4298,-0.0744,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.634,2.101,90.500) lpos=(-2.134,9.399,-3.520) lprev=(-1.704,9.473,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.3413,-3.5189,0.4925) mvmt=(0.0744,-0.4298,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4813,-3.5189,0.4925) mvmt=(0.0744,-0.4298,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4938,-2.0789,0.4925) mvmt=(0.0744,-0.4298,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1339,9.3987,-3.5000) mvmt=(-0.4298,-0.0744,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1339,9.3987,-4.2700) mvmt=(-0.4298,-0.0744,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.1339,9.3987,-4.2700) out=(-2.1339,9.3987,-3.5200) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=4.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(132.634,2.101,89.750) lpos=(-2.134,9.399,-4.270) lprev=(-1.704,9.473,-3.520) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.1339,9.3987,-3.5200) mvmt=(-0.4298,-0.0744,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(132.634,2.101,90.500) lpos=(-2.134,9.399,-3.520) lprev=(-1.704,9.473,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.3413,-3.5189,0.4925) mvmt=(0.0744,-0.4298,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4813,-3.5189,0.4925) mvmt=(0.0744,-0.4298,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4938,-2.0789,0.4925) mvmt=(0.0744,-0.4298,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.1339,9.3987,-3.5000) mvmt=(-0.4298,-0.0744,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.5520,9.2886,-3.5200) mvmt=(-0.4181,-0.1101,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.052,2.211,90.500) lpos=(-2.552,9.289,-3.520) lprev=(-2.134,9.399,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.4514,-3.9370,0.4925) mvmt=(0.1101,-0.4181,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5914,-3.9370,0.4925) mvmt=(0.1101,-0.4181,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6039,-2.4970,0.4925) mvmt=(0.1101,-0.4181,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5520,9.2886,-3.5000) mvmt=(-0.4181,-0.1101,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5520,9.2886,-4.2700) mvmt=(-0.4181,-0.1101,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.5520,9.2886,-4.2700) out=(-2.5520,9.2886,-3.5200) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=4.0000 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(133.052,2.211,89.750) lpos=(-2.552,9.289,-4.270) lprev=(-2.134,9.399,-3.520) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.5520,9.2886,-3.5200) mvmt=(-0.4181,-0.1101,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.052,2.211,90.500) lpos=(-2.552,9.289,-3.520) lprev=(-2.134,9.399,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.4514,-3.9370,0.4925) mvmt=(0.1101,-0.4181,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.5914,-3.9370,0.4925) mvmt=(0.1101,-0.4181,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6039,-2.4970,0.4925) mvmt=(0.1101,-0.4181,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.5520,9.2886,-3.5000) mvmt=(-0.4181,-0.1101,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.020 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-2.9581,9.1435,-3.5200) mvmt=(-0.4061,-0.1451,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-2.9581,9.1435,-3.5200) mvmt=(-0.4061,-0.1451,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-2.9581,9.1435,-3.5200) out=(-2.9581,9.1435,-3.5121) delta=(0.0000,0.0000,0.0078) deltaMag=0.0078 n=(0.2806,0.0000,0.9598) d=4.6810 r=0.4800 winterp=1.0000->0.9869 dpPos=0.4725 dpMove=-0.5759 iDist=0.0131 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.020 -> n=(-0.281,0.000,0.960) D=-48.949 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.020 -> n=(-0.281,0.000,0.960) D=-48.949 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(133.458,2.357,90.500) lpos=(-2.958,9.143,-3.520) lprev=(-2.552,9.289,-3.520) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-2.9581,9.1435,-3.5121) mvmt=(-0.4061,-0.1451,0.0079) collide=False insertType=0 objState=0x303 winterp=0.9869 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.458,2.357,90.508) lpos=(-2.958,9.143,-3.512) lprev=(-2.552,9.289,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5965,-4.3431,0.5004) mvmt=(0.1451,-0.4061,0.0079) collide=False insertType=0 objState=0x303 winterp=0.9869 return=-1 +[push-back-disp] site=dispatch center=(2.7490,-2.9032,0.5004) mvmt=(0.1451,-0.4061,0.0079) collide=False insertType=0 objState=0x303 winterp=0.9869 return=-1 +[push-back-disp] site=dispatch center=(-2.9581,9.1435,-3.4921) mvmt=(-0.4061,-0.1451,0.0079) collide=False insertType=0 objState=0x303 winterp=0.9869 return=-1 +[push-back-disp] site=dispatch center=(-2.9581,9.1435,-3.5121) mvmt=(-0.4061,-0.1451,0.0079) collide=False insertType=1 objState=0x303 winterp=0.9869 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.458,2.357,90.508) lpos=(-2.958,9.143,-3.512) lprev=(-2.552,9.289,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5965,-4.3431,0.5004) mvmt=(0.1451,-0.4061,0.0079) collide=False insertType=1 objState=0x303 winterp=0.9869 return=-1 +[push-back-disp] site=dispatch center=(2.7490,-2.9032,0.5004) mvmt=(0.1451,-0.4061,0.0079) collide=False insertType=1 objState=0x303 winterp=0.9869 return=-1 +[push-back-disp] site=dispatch center=(-2.9581,9.1435,-3.4921) mvmt=(-0.4061,-0.1451,0.0079) collide=False insertType=1 objState=0x303 winterp=0.9869 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.458,2.357,90.500) lpos=(-2.958,9.143,-3.520) lprev=(-2.552,9.289,-3.520) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.5965,-4.3431,0.5004) mvmt=(0.1451,-0.4061,0.0079) collide=False insertType=0 objState=0x303 winterp=0.9869 return=-1 +[push-back-disp] site=dispatch center=(2.7490,-2.9032,0.5004) mvmt=(0.1451,-0.4061,0.0079) collide=False insertType=0 objState=0x303 winterp=0.9869 return=-1 +[push-back-disp] site=dispatch center=(-2.9581,9.1435,-3.4921) mvmt=(-0.4061,-0.1451,0.0079) collide=False insertType=0 objState=0x303 winterp=0.9869 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-3.3302,8.9575,-3.4034) mvmt=(-0.3721,-0.1860,0.1088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.830,2.543,90.617) lpos=(-3.330,8.957,-3.403) lprev=(-2.958,9.143,-3.512) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9350,-3.2752,0.6091) mvmt=(0.1860,-0.3721,0.1088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3302,8.9575,-3.3834) mvmt=(-0.3721,-0.1860,0.1088) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.3302,8.9575,-4.1534) mvmt=(-0.3721,-0.1860,-0.6412) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-3.3302,8.9575,-4.1534) out=(-3.3302,8.9575,-3.5200) delta=(0.0000,0.0000,0.6334) deltaMag=0.6334 n=(0.0000,0.0000,1.0000) d=4.0000 r=0.4800 winterp=1.0000->0.1555 dpPos=-0.1534 dpMove=-0.7500 iDist=0.8445 applied=True +[push-back] site=adjust_sphere in=(-3.3302,8.9575,-3.5200) out=(-3.3302,8.9575,-3.4034) delta=(0.0000,0.0000,0.1166) deltaMag=0.1166 n=(0.2806,0.0000,0.9598) d=4.6810 r=0.4800 winterp=0.1555->0.1313 dpPos=0.3681 dpMove=-0.7199 iDist=0.1555 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(133.830,2.543,89.867) lpos=(-3.330,8.957,-4.153) lprev=(-2.958,9.143,-3.512) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-3.3302,8.9575,-3.4034) mvmt=(-0.3721,-0.1860,0.1088) collide=False insertType=0 objState=0x303 winterp=0.1313 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(133.830,2.543,90.617) lpos=(-3.330,8.957,-3.403) lprev=(-2.958,9.143,-3.512) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9350,-3.2752,0.6091) mvmt=(0.1860,-0.3721,0.1088) collide=False insertType=0 objState=0x303 winterp=0.1313 return=-1 +[push-back-disp] site=dispatch center=(-3.3302,8.9575,-3.3834) mvmt=(-0.3721,-0.1860,0.1088) collide=False insertType=0 objState=0x303 winterp=0.1313 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-3.6509,8.7623,-3.3097) mvmt=(-0.3206,-0.1951,0.0937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(134.151,2.738,90.710) lpos=(-3.651,8.762,-3.310) lprev=(-3.330,8.957,-3.403) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1302,-3.5959,0.7028) mvmt=(0.1951,-0.3206,0.0937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6509,8.7623,-3.2897) mvmt=(-0.3206,-0.1951,0.0937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6509,8.7623,-4.0597) mvmt=(-0.3206,-0.1951,-0.6563) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-3.6509,8.7623,-4.0597) out=(-3.6509,8.7623,-3.3097) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.2806,0.0000,0.9598) d=4.6810 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.2399 dpMove=-0.7199 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(134.151,2.738,89.960) lpos=(-3.651,8.762,-4.060) lprev=(-3.330,8.957,-3.403) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-3.6509,8.7623,-3.3097) mvmt=(-0.3206,-0.1951,0.0937) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(134.151,2.738,90.710) lpos=(-3.651,8.762,-3.310) lprev=(-3.330,8.957,-3.403) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1302,-3.5959,0.7028) mvmt=(0.1951,-0.3206,0.0937) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.6509,8.7623,-3.2897) mvmt=(-0.3206,-0.1951,0.0937) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-3.9548,8.5414,-3.2208) mvmt=(-0.3040,-0.2209,0.0889) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(134.455,2.959,90.799) lpos=(-3.955,8.541,-3.221) lprev=(-3.651,8.762,-3.310) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-3.9549,8.5414,-3.2008) mvmt=(-0.3040,-0.2209,0.0889) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-3.9548,8.5414,-3.9708) mvmt=(-0.3040,-0.2209,-0.6611) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-3.9548,8.5414,-3.9708) out=(-3.9548,8.5414,-3.2208) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.2806,0.0000,0.9598) d=4.6810 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2399 dpMove=-0.7199 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(134.455,2.959,90.049) lpos=(-3.955,8.541,-3.971) lprev=(-3.651,8.762,-3.310) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-3.9548,8.5414,-3.2208) mvmt=(-0.3040,-0.2209,0.0889) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(134.455,2.959,90.799) lpos=(-3.955,8.541,-3.221) lprev=(-3.651,8.762,-3.310) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-3.9549,8.5414,-3.2008) mvmt=(-0.3040,-0.2209,0.0889) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-4.2473,8.2897,-3.1353) mvmt=(-0.2924,-0.2517,0.0855) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(134.747,3.210,90.885) lpos=(-4.247,8.290,-3.135) lprev=(-3.955,8.541,-3.221) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.2473,8.2897,-3.1153) mvmt=(-0.2924,-0.2517,0.0855) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.2473,8.2897,-3.8853) mvmt=(-0.2924,-0.2517,-0.6645) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-4.2473,8.2897,-3.8853) out=(-4.2473,8.2897,-3.1353) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.2806,0.0000,0.9598) d=4.6810 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2399 dpMove=-0.7199 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(134.747,3.210,90.135) lpos=(-4.247,8.290,-3.885) lprev=(-3.955,8.541,-3.221) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-4.2473,8.2897,-3.1353) mvmt=(-0.2924,-0.2517,0.0855) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(134.747,3.210,90.885) lpos=(-4.247,8.290,-3.135) lprev=(-3.955,8.541,-3.221) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.2473,8.2897,-3.1153) mvmt=(-0.2924,-0.2517,0.0855) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-4.5352,7.9950,-3.0511) mvmt=(-0.2880,-0.2947,0.0842) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.035,3.505,90.969) lpos=(-4.535,7.995,-3.051) lprev=(-4.247,8.290,-3.135) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.5352,7.9950,-3.0312) mvmt=(-0.2880,-0.2947,0.0842) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.5352,7.9950,-3.8011) mvmt=(-0.2880,-0.2947,-0.6658) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-4.5352,7.9950,-3.8011) out=(-4.5352,7.9950,-3.0511) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.2806,0.0000,0.9598) d=4.6810 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2399 dpMove=-0.7199 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(135.035,3.505,90.219) lpos=(-4.535,7.995,-3.801) lprev=(-4.247,8.290,-3.135) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-4.5352,7.9950,-3.0511) mvmt=(-0.2880,-0.2947,0.0842) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.035,3.505,90.969) lpos=(-4.535,7.995,-3.051) lprev=(-4.247,8.290,-3.135) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.5352,7.9950,-3.0312) mvmt=(-0.2880,-0.2947,0.0842) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-4.8179,7.6987,-2.9685) mvmt=(-0.2827,-0.2963,0.0826) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.318,3.801,91.051) lpos=(-4.818,7.699,-2.969) lprev=(-4.535,7.995,-3.051) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.8179,7.6987,-2.9485) mvmt=(-0.2827,-0.2963,0.0826) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-4.8179,7.6987,-3.7185) mvmt=(-0.2827,-0.2963,-0.6674) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-4.8179,7.6987,-3.7185) out=(-4.8179,7.6987,-2.9685) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.2806,0.0000,0.9598) d=4.6810 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2399 dpMove=-0.7199 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(135.318,3.801,90.301) lpos=(-4.818,7.699,-3.719) lprev=(-4.535,7.995,-3.051) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-4.8179,7.6987,-2.9685) mvmt=(-0.2827,-0.2963,0.0826) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.318,3.801,91.051) lpos=(-4.818,7.699,-2.969) lprev=(-4.535,7.995,-3.051) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-4.8179,7.6987,-2.9485) mvmt=(-0.2827,-0.2963,0.0826) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.1121,7.3904,-2.8825) mvmt=(-0.2942,-0.3084,0.0860) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.612,4.110,91.137) lpos=(-5.112,7.390,-2.883) lprev=(-4.818,7.699,-2.969) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.1121,7.3904,-2.8625) mvmt=(-0.2942,-0.3084,0.0860) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.1121,7.3904,-3.6325) mvmt=(-0.2942,-0.3084,-0.6640) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-5.1121,7.3904,-3.6325) out=(-5.1121,7.3904,-2.8825) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.2806,0.0000,0.9598) d=4.6810 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2399 dpMove=-0.7199 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(135.612,4.110,90.387) lpos=(-5.112,7.390,-3.633) lprev=(-4.818,7.699,-2.969) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-5.1121,7.3904,-2.8825) mvmt=(-0.2942,-0.3084,0.0860) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.612,4.110,91.137) lpos=(-5.112,7.390,-2.883) lprev=(-4.818,7.699,-2.969) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.1121,7.3904,-2.8625) mvmt=(-0.2942,-0.3084,0.0860) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.4123,7.0757,-2.7948) mvmt=(-0.3002,-0.3146,0.0877) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.912,4.424,91.225) lpos=(-5.412,7.076,-2.795) lprev=(-5.112,7.390,-2.883) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.4123,7.0757,-2.7948) mvmt=(-0.3002,-0.3146,0.0877) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40148 iter=0xA9B40147 result=OK +[push-back-cell] site=other_cell primary=0xA9B40148 other=0xA9B40147 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.4123,7.0757,-2.7748) mvmt=(-0.3002,-0.3146,0.0877) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.4123,7.0757,-3.5448) mvmt=(-0.3002,-0.3146,-0.6623) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-5.4123,7.0757,-3.5448) out=(-5.4123,7.0757,-2.7948) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.2806,0.0000,0.9598) d=4.6810 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2399 dpMove=-0.7199 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(135.912,4.424,90.475) lpos=(-5.412,7.076,-3.545) lprev=(-5.112,7.390,-2.883) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-5.4123,7.0757,-2.7948) mvmt=(-0.3002,-0.3146,0.0877) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(135.912,4.424,91.225) lpos=(-5.412,7.076,-2.795) lprev=(-5.112,7.390,-2.883) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.4123,7.0757,-2.7948) mvmt=(-0.3002,-0.3146,0.0877) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40148 iter=0xA9B40147 result=OK +[push-back-cell] site=other_cell primary=0xA9B40148 other=0xA9B40147 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-5.4123,7.0757,-2.7748) mvmt=(-0.3002,-0.3146,0.0877) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-5.7128,6.7608,-2.7069) mvmt=(-0.3005,-0.3150,0.0878) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(136.213,4.739,91.313) lpos=(-5.713,6.761,-2.707) lprev=(-5.412,7.076,-2.795) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.7128,6.7608,-2.7069) mvmt=(-0.3005,-0.3150,0.0878) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40148 iter=0xA9B40147 result=OK +[push-back-cell] site=other_cell primary=0xA9B40148 other=0xA9B40147 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.0833,2.4402,0.3176) mvmt=(0.1718,-0.4000,0.0878) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.7128,6.7608,-2.6869) mvmt=(-0.3005,-0.3150,0.0878) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.7128,6.7608,-3.4569) mvmt=(-0.3005,-0.3150,-0.6622) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-5.7128,6.7608,-3.4569) out=(-5.7128,6.7608,-2.7069) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.2806,0.0000,0.9598) d=4.6810 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2399 dpMove=-0.7199 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40148 wpos=(136.213,4.739,90.563) lpos=(-5.713,6.761,-3.457) lprev=(-5.412,7.076,-2.795) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-5.7128,6.7608,-2.7069) mvmt=(-0.3005,-0.3150,0.0878) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40148 wpos=(136.213,4.739,91.313) lpos=(-5.713,6.761,-2.707) lprev=(-5.412,7.076,-2.795) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-5.7128,6.7608,-2.7069) mvmt=(-0.3005,-0.3150,0.0878) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40148 iter=0xA9B40147 result=OK +[push-back-cell] site=other_cell primary=0xA9B40148 other=0xA9B40147 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(0.0833,2.4402,0.3176) mvmt=(0.1718,-0.4000,0.0878) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-5.7128,6.7608,-2.6869) mvmt=(-0.3005,-0.3150,0.0878) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(-0.281,0.000,0.960) D=-48.949 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40148 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-6.0073,6.4521,-2.6208) mvmt=(-0.2945,-0.3087,0.0861) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(136.507,5.048,91.399) lpos=(-6.007,6.452,-2.621) lprev=(-5.713,6.761,-2.707) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-6.0073,6.4521,-2.6208) mvmt=(-0.2945,-0.3087,0.0861) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40148 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40148 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.8177,2.3040,-0.9957) mvmt=(-0.2945,-0.3087,0.0861) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2517,2.0482,0.4036) mvmt=(0.1684,-0.3920,0.0861) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.0073,6.4521,-2.6009) mvmt=(-0.2945,-0.3087,0.0861) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.0073,6.4521,-3.3708) mvmt=(-0.2945,-0.3087,-0.6639) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-6.0073,6.4521,-3.3708) out=(-6.0073,6.4521,-2.5700) delta=(0.0000,0.0000,0.8008) deltaMag=0.8008 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->-0.0678 dpPos=-0.3208 dpMove=-0.7500 iDist=1.0678 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(-0.281,0.000,0.960) D=-48.949 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlaneCellId: 0xA9B40148 -> 0xA9B40147 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(-0.281,0.000,0.960) D=-48.949 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlaneCellId: 0xA9B40148 -> 0xA9B40147 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(136.507,5.048,90.649) lpos=(-6.007,6.452,-3.371) lprev=(-5.713,6.761,-2.707) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-6.0073,6.4521,-2.5700) mvmt=(-0.2945,-0.3087,0.1369) collide=False insertType=0 objState=0x303 winterp=-0.0678 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(136.507,5.048,91.450) lpos=(-6.007,6.452,-2.570) lprev=(-5.713,6.761,-2.707) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-6.0073,6.4521,-2.5700) mvmt=(-0.2945,-0.3087,0.1369) collide=False insertType=0 objState=0x303 winterp=-0.0678 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40148 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40148 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.8177,2.3040,-0.9448) mvmt=(-0.2945,-0.3087,0.1369) collide=False insertType=0 objState=0x303 winterp=-0.0678 return=-1 +[push-back-disp] site=dispatch center=(0.2517,2.0482,0.4545) mvmt=(0.1684,-0.3920,0.1369) collide=False insertType=0 objState=0x303 winterp=-0.0678 return=-1 +[push-back-disp] site=dispatch center=(-6.0073,6.4521,-2.5500) mvmt=(-0.2945,-0.3087,0.1369) collide=False insertType=0 objState=0x303 winterp=-0.0678 return=-1 +[cell-transit] 0xA9B40148 -> 0xA9B40147 pos=(136.507,5.048,90.970) reason=resolver +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-6.3350,6.1357,-2.5700) mvmt=(-0.3276,-0.3164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(136.835,5.364,91.450) lpos=(-6.335,6.136,-2.570) lprev=(-6.007,6.452,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-6.3350,6.1357,-2.5700) mvmt=(-0.3276,-0.3164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40148 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40148 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.4900,1.9877,-0.9448) mvmt=(-0.3276,-0.3164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4650,1.7477,-1.0498) mvmt=(-0.3276,-0.3164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4141,1.6227,0.4545) mvmt=(0.1625,-0.4255,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.3350,6.1357,-2.5500) mvmt=(-0.3276,-0.3164,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.3350,6.1357,-3.3200) mvmt=(-0.3276,-0.3164,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-6.3350,6.1357,-3.3200) out=(-6.3350,6.1357,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(136.835,5.364,90.700) lpos=(-6.335,6.136,-3.320) lprev=(-6.007,6.452,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-6.3350,6.1357,-2.5700) mvmt=(-0.3276,-0.3164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(136.835,5.364,91.450) lpos=(-6.335,6.136,-2.570) lprev=(-6.007,6.452,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-6.3350,6.1357,-2.5700) mvmt=(-0.3276,-0.3164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40148 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40148 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(3.4900,1.9877,-0.9448) mvmt=(-0.3276,-0.3164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.4650,1.7477,-1.0498) mvmt=(-0.3276,-0.3164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4141,1.6227,0.4545) mvmt=(0.1625,-0.4255,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.3350,6.1357,-2.5500) mvmt=(-0.3276,-0.3164,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-6.6509,5.8307,-2.5700) mvmt=(-0.3159,-0.3051,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.151,5.669,91.450) lpos=(-6.651,5.831,-2.570) lprev=(-6.335,6.136,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1741,1.6826,-0.9448) mvmt=(-0.3159,-0.3051,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1491,1.4426,-1.0498) mvmt=(-0.3159,-0.3051,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5708,1.2124,0.4545) mvmt=(0.1567,-0.4103,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.6509,5.8307,-2.5500) mvmt=(-0.3159,-0.3051,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.6509,5.8307,-3.3200) mvmt=(-0.3159,-0.3051,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-6.6509,5.8307,-3.3200) out=(-6.6509,5.8307,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(137.151,5.669,90.700) lpos=(-6.651,5.831,-3.320) lprev=(-6.335,6.136,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-6.6509,5.8307,-2.5700) mvmt=(-0.3159,-0.3051,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.151,5.669,91.450) lpos=(-6.651,5.831,-2.570) lprev=(-6.335,6.136,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.1741,1.6826,-0.9448) mvmt=(-0.3159,-0.3051,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.1491,1.4426,-1.0498) mvmt=(-0.3159,-0.3051,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5708,1.2124,0.4545) mvmt=(0.1567,-0.4103,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.6509,5.8307,-2.5500) mvmt=(-0.3159,-0.3051,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-6.9387,5.5527,-2.5700) mvmt=(-0.2878,-0.2779,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.439,5.947,91.450) lpos=(-6.939,5.553,-2.570) lprev=(-6.651,5.831,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8863,1.4047,-0.9448) mvmt=(-0.2878,-0.2779,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8613,1.1647,-1.0498) mvmt=(-0.2878,-0.2779,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7135,0.8386,0.4545) mvmt=(0.1427,-0.3738,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.9387,5.5527,-2.5700) mvmt=(-0.2878,-0.2779,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.439,5.947,91.450) lpos=(-6.939,5.553,-2.570) lprev=(-6.651,5.831,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.8863,1.4047,-0.9448) mvmt=(-0.2878,-0.2779,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.8613,1.1647,-1.0498) mvmt=(-0.2878,-0.2779,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7135,0.8386,0.4545) mvmt=(0.1427,-0.3738,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.9387,5.5527,-2.5500) mvmt=(-0.2878,-0.2779,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.5949,5.6994,-2.5700) mvmt=(0.0560,-0.1313,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.095,5.801,91.450) lpos=(-6.595,5.699,-2.570) lprev=(-6.651,5.831,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.2301,1.5513,-0.9448) mvmt=(0.0560,-0.1313,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.2051,1.3113,-1.0498) mvmt=(0.0560,-0.1313,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7135,1.2124,0.4545) mvmt=(0.1427,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.5949,5.6994,-2.5500) mvmt=(0.0560,-0.1313,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.5949,5.6994,-3.3200) mvmt=(0.0560,-0.1313,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-6.5949,5.6994,-3.3200) out=(-6.5949,5.6994,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(137.095,5.801,90.700) lpos=(-6.595,5.699,-3.320) lprev=(-6.651,5.831,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-6.5949,5.6994,-2.5700) mvmt=(0.0560,-0.1313,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.095,5.801,91.450) lpos=(-6.595,5.699,-2.570) lprev=(-6.651,5.831,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.2301,1.5513,-0.9448) mvmt=(0.0560,-0.1313,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.2051,1.3113,-1.0498) mvmt=(0.0560,-0.1313,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7135,1.2124,0.4545) mvmt=(0.1427,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.5949,5.6994,-2.5500) mvmt=(0.0560,-0.1313,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-6.5333,5.5550,-2.5700) mvmt=(0.0616,-0.1444,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.033,5.945,91.450) lpos=(-6.533,5.555,-2.570) lprev=(-6.595,5.699,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.2917,1.4070,-0.9448) mvmt=(0.0616,-0.1444,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(4.2667,1.1670,-1.0498) mvmt=(0.0616,-0.1444,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8704,1.2124,0.4545) mvmt=(0.1569,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.5333,5.5550,-2.5500) mvmt=(0.0616,-0.1444,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.5333,5.5550,-3.3200) mvmt=(0.0616,-0.1444,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-6.5333,5.5550,-3.3200) out=(-6.5333,5.5550,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(137.033,5.945,90.700) lpos=(-6.533,5.555,-3.320) lprev=(-6.595,5.699,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-6.5333,5.5550,-2.5700) mvmt=(0.0616,-0.1444,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.033,5.945,91.450) lpos=(-6.533,5.555,-2.570) lprev=(-6.595,5.699,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(3.2917,1.4070,-0.9448) mvmt=(0.0616,-0.1444,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(4.2667,1.1670,-1.0498) mvmt=(0.0616,-0.1444,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8704,1.2124,0.4545) mvmt=(0.1569,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.5333,5.5550,-2.5500) mvmt=(0.0616,-0.1444,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-6.8524,5.2469,-2.5700) mvmt=(-0.3191,-0.3082,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.352,6.253,91.450) lpos=(-6.852,5.247,-2.570) lprev=(-6.533,5.555,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9725,1.0988,-0.9448) mvmt=(-0.3191,-0.3082,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9476,0.8588,-1.0498) mvmt=(-0.3191,-0.3082,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0287,0.7979,0.4545) mvmt=(0.1582,-0.4145,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.8524,5.2469,-2.5500) mvmt=(-0.3191,-0.3082,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.8524,5.2469,-3.3200) mvmt=(-0.3191,-0.3082,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-6.8524,5.2469,-3.3200) out=(-6.8524,5.2469,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(137.352,6.253,90.700) lpos=(-6.852,5.247,-3.320) lprev=(-6.533,5.555,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-6.8524,5.2469,-2.5700) mvmt=(-0.3191,-0.3082,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.352,6.253,91.450) lpos=(-6.852,5.247,-2.570) lprev=(-6.533,5.555,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.9725,1.0988,-0.9448) mvmt=(-0.3191,-0.3082,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.9476,0.8588,-1.0498) mvmt=(-0.3191,-0.3082,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.0287,0.7979,0.4545) mvmt=(0.1582,-0.4145,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-6.8524,5.2469,-2.5500) mvmt=(-0.3191,-0.3082,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.1790,4.9315,-2.5700) mvmt=(-0.3266,-0.3154,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.679,6.569,91.450) lpos=(-7.179,4.931,-2.570) lprev=(-6.852,5.247,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6460,0.7834,-0.9448) mvmt=(-0.3266,-0.3154,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6210,0.5434,-1.0498) mvmt=(-0.3266,-0.3154,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1906,0.3738,0.4545) mvmt=(0.1619,-0.4241,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.1790,4.9315,-2.5500) mvmt=(-0.3266,-0.3154,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.1790,4.9315,-3.3200) mvmt=(-0.3266,-0.3154,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.1790,4.9315,-3.3200) out=(-7.1790,4.9315,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(137.679,6.569,90.700) lpos=(-7.179,4.931,-3.320) lprev=(-6.852,5.247,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.1790,4.9315,-2.5700) mvmt=(-0.3266,-0.3154,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.679,6.569,91.450) lpos=(-7.179,4.931,-2.570) lprev=(-6.852,5.247,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.6460,0.7834,-0.9448) mvmt=(-0.3266,-0.3154,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.6210,0.5434,-1.0498) mvmt=(-0.3266,-0.3154,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1906,0.3738,0.4545) mvmt=(0.1619,-0.4241,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.1790,4.9315,-2.5500) mvmt=(-0.3266,-0.3154,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.4967,4.6247,-2.5700) mvmt=(-0.3177,-0.3068,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.997,6.875,91.450) lpos=(-7.497,4.625,-2.570) lprev=(-7.179,4.931,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3283,0.4767,-0.9448) mvmt=(-0.3177,-0.3068,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3033,0.2367,-1.0498) mvmt=(-0.3177,-0.3068,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3482,-0.0388,0.4545) mvmt=(0.1575,-0.4126,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.4967,4.6247,-2.5500) mvmt=(-0.3177,-0.3068,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.4967,4.6247,-3.3200) mvmt=(-0.3177,-0.3068,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.4967,4.6247,-3.3200) out=(-7.4967,4.6247,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(137.997,6.875,90.700) lpos=(-7.497,4.625,-3.320) lprev=(-7.179,4.931,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.4967,4.6247,-2.5700) mvmt=(-0.3177,-0.3068,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(137.997,6.875,91.450) lpos=(-7.497,4.625,-2.570) lprev=(-7.179,4.931,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.3283,0.4767,-0.9448) mvmt=(-0.3177,-0.3068,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3033,0.2367,-1.0498) mvmt=(-0.3177,-0.3068,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.3482,-0.0388,0.4545) mvmt=(0.1575,-0.4126,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.4967,4.6247,-2.5500) mvmt=(-0.3177,-0.3068,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.8133,4.3190,-2.5700) mvmt=(-0.3166,-0.3057,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.313,7.181,91.450) lpos=(-7.813,4.319,-2.570) lprev=(-7.497,4.625,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0117,0.1710,-0.9448) mvmt=(-0.3166,-0.3057,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9867,-0.0690,-1.0498) mvmt=(-0.3166,-0.3057,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5051,-0.4499,0.4545) mvmt=(0.1570,-0.4111,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.8133,4.3190,-2.5500) mvmt=(-0.3166,-0.3057,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.8133,4.3190,-3.3200) mvmt=(-0.3166,-0.3057,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.8133,4.3190,-3.3200) out=(-7.8133,4.3190,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.313,7.181,90.700) lpos=(-7.813,4.319,-3.320) lprev=(-7.497,4.625,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.8133,4.3190,-2.5700) mvmt=(-0.3166,-0.3057,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.313,7.181,91.450) lpos=(-7.813,4.319,-2.570) lprev=(-7.497,4.625,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0117,0.1710,-0.9448) mvmt=(-0.3166,-0.3057,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9867,-0.0690,-1.0498) mvmt=(-0.3166,-0.3057,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.5051,-0.4499,0.4545) mvmt=(0.1570,-0.4111,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.8133,4.3190,-2.5500) mvmt=(-0.3166,-0.3057,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-8.1336,4.0098,-2.5700) mvmt=(-0.3203,-0.3093,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.634,7.490,91.450) lpos=(-8.134,4.010,-2.570) lprev=(-7.813,4.319,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6914,-0.1383,-0.9448) mvmt=(-0.3203,-0.3093,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6664,-0.3783,-1.0498) mvmt=(-0.3203,-0.3093,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6639,-0.8658,0.4545) mvmt=(0.1588,-0.4159,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.1336,4.0098,-2.5500) mvmt=(-0.3203,-0.3093,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.1336,4.0098,-3.3200) mvmt=(-0.3203,-0.3093,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-8.1336,4.0098,-3.3200) out=(-8.1336,4.0098,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.634,7.490,90.700) lpos=(-8.134,4.010,-3.320) lprev=(-7.813,4.319,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-8.1336,4.0098,-2.5700) mvmt=(-0.3203,-0.3093,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.634,7.490,91.450) lpos=(-8.134,4.010,-2.570) lprev=(-7.813,4.319,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6914,-0.1383,-0.9448) mvmt=(-0.3203,-0.3093,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6664,-0.3783,-1.0498) mvmt=(-0.3203,-0.3093,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6639,-0.8658,0.4545) mvmt=(0.1588,-0.4159,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.1336,4.0098,-2.5500) mvmt=(-0.3203,-0.3093,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-8.4508,3.7035,-2.5700) mvmt=(-0.3172,-0.3063,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.951,7.796,91.450) lpos=(-8.451,3.704,-2.570) lprev=(-8.134,4.010,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.3742,-0.4445,-0.9448) mvmt=(-0.3172,-0.3063,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3492,-0.6845,-1.0498) mvmt=(-0.3172,-0.3063,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3492,-2.8958,-2.3998) mvmt=(-0.3172,-0.3063,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8212,-1.2777,0.4545) mvmt=(0.1573,-0.4119,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.4508,3.7035,-2.5500) mvmt=(-0.3172,-0.3063,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.4508,3.7035,-3.3200) mvmt=(-0.3172,-0.3063,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-8.4508,3.7035,-3.3200) out=(-8.4508,3.7035,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.951,7.796,90.700) lpos=(-8.451,3.704,-3.320) lprev=(-8.134,4.010,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-8.4508,3.7035,-2.5700) mvmt=(-0.3172,-0.3063,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.951,7.796,91.450) lpos=(-8.451,3.704,-2.570) lprev=(-8.134,4.010,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.3742,-0.4445,-0.9448) mvmt=(-0.3172,-0.3063,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3492,-0.6845,-1.0498) mvmt=(-0.3172,-0.3063,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.3492,-2.8958,-2.3998) mvmt=(-0.3172,-0.3063,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.8212,-1.2777,0.4545) mvmt=(0.1573,-0.4119,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.4508,3.7035,-2.5500) mvmt=(-0.3172,-0.3063,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-8.7773,3.3882,-2.5700) mvmt=(-0.3265,-0.3153,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.277,8.112,91.450) lpos=(-8.777,3.388,-2.570) lprev=(-8.451,3.704,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.0477,-0.7598,-0.9448) mvmt=(-0.3265,-0.3153,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0227,-0.9998,-1.0498) mvmt=(-0.3265,-0.3153,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0227,-3.2111,-2.3998) mvmt=(-0.3265,-0.3153,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9831,-1.7018,0.4545) mvmt=(0.1619,-0.4240,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.7773,3.3882,-2.5500) mvmt=(-0.3265,-0.3153,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.7773,3.3882,-3.3200) mvmt=(-0.3265,-0.3153,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-8.7773,3.3882,-3.3200) out=(-8.7773,3.3882,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(139.277,8.112,90.700) lpos=(-8.777,3.388,-3.320) lprev=(-8.451,3.704,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-8.7773,3.3882,-2.5700) mvmt=(-0.3265,-0.3153,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.277,8.112,91.450) lpos=(-8.777,3.388,-2.570) lprev=(-8.451,3.704,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.0477,-0.7598,-0.9448) mvmt=(-0.3265,-0.3153,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0227,-0.9998,-1.0498) mvmt=(-0.3265,-0.3153,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.0227,-3.2111,-2.3998) mvmt=(-0.3265,-0.3153,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9831,-1.7018,0.4545) mvmt=(0.1619,-0.4240,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.7773,3.3882,-2.5500) mvmt=(-0.3265,-0.3153,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementBackup Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementStrafeLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-8.5933,3.2360,-2.5700) mvmt=(0.1839,-0.1522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.093,8.264,91.450) lpos=(-8.593,3.236,-2.570) lprev=(-8.777,3.388,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.2317,-0.9120,-0.9448) mvmt=(0.1839,-0.1522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2067,-1.1520,-1.0498) mvmt=(0.1839,-0.1522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1953,-1.5923,0.4545) mvmt=(0.2121,0.1095,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.5933,3.2360,-2.5500) mvmt=(0.1839,-0.1522,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.5933,3.2360,-3.3200) mvmt=(0.1839,-0.1522,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-8.5933,3.2360,-3.3200) out=(-8.5933,3.2360,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(139.093,8.264,90.700) lpos=(-8.593,3.236,-3.320) lprev=(-8.777,3.388,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-8.5933,3.2360,-2.5700) mvmt=(0.1839,-0.1522,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.093,8.264,91.450) lpos=(-8.593,3.236,-2.570) lprev=(-8.777,3.388,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.2317,-0.9120,-0.9448) mvmt=(0.1839,-0.1522,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2067,-1.1520,-1.0498) mvmt=(0.1839,-0.1522,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1953,-1.5923,0.4545) mvmt=(0.2121,0.1095,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.5933,3.2360,-2.5500) mvmt=(0.1839,-0.1522,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-8.3901,3.0679,-2.5700) mvmt=(0.2032,-0.1681,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.890,8.432,91.450) lpos=(-8.390,3.068,-2.570) lprev=(-8.593,3.236,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.4349,-1.0801,-0.9448) mvmt=(0.2032,-0.1681,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4099,-1.3201,-1.0498) mvmt=(0.2032,-0.1681,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4296,-1.4713,0.4545) mvmt=(0.2344,0.1210,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.3901,3.0679,-2.5500) mvmt=(0.2032,-0.1681,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.3901,3.0679,-3.3200) mvmt=(0.2032,-0.1681,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-8.3901,3.0679,-3.3200) out=(-8.3901,3.0679,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.890,8.432,90.700) lpos=(-8.390,3.068,-3.320) lprev=(-8.593,3.236,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-8.3901,3.0679,-2.5700) mvmt=(0.2032,-0.1681,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.890,8.432,91.450) lpos=(-8.390,3.068,-2.570) lprev=(-8.593,3.236,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.4349,-1.0801,-0.9448) mvmt=(0.2032,-0.1681,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4099,-1.3201,-1.0498) mvmt=(0.2032,-0.1681,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4296,-1.4713,0.4545) mvmt=(0.2344,0.1210,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.3901,3.0679,-2.5500) mvmt=(0.2032,-0.1681,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-8.1869,2.8998,-2.5700) mvmt=(0.2032,-0.1681,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.687,8.600,91.450) lpos=(-8.187,2.900,-2.570) lprev=(-8.390,3.068,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6381,-1.2482,-0.9448) mvmt=(0.2032,-0.1681,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6131,-1.4882,-1.0498) mvmt=(0.2032,-0.1681,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6640,-1.3503,0.4545) mvmt=(0.2344,0.1210,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.1869,2.8998,-2.5500) mvmt=(0.2032,-0.1681,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.1869,2.8998,-3.3200) mvmt=(0.2032,-0.1681,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-8.1869,2.8998,-3.3200) out=(-8.1869,2.8998,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.687,8.600,90.700) lpos=(-8.187,2.900,-3.320) lprev=(-8.390,3.068,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-8.1869,2.8998,-2.5700) mvmt=(0.2032,-0.1681,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.687,8.600,91.450) lpos=(-8.187,2.900,-2.570) lprev=(-8.390,3.068,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.6381,-1.2482,-0.9448) mvmt=(0.2032,-0.1681,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6131,-1.4882,-1.0498) mvmt=(0.2032,-0.1681,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.6640,-1.3503,0.4545) mvmt=(0.2344,0.1210,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.1869,2.8998,-2.5500) mvmt=(0.2032,-0.1681,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.9831,2.7312,-2.5700) mvmt=(0.2038,-0.1686,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.483,8.769,91.450) lpos=(-7.983,2.731,-2.570) lprev=(-8.187,2.900,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.8419,-1.4168,-0.9448) mvmt=(0.2038,-0.1686,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8169,-1.6568,-1.0498) mvmt=(0.2038,-0.1686,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8990,-1.2290,0.4545) mvmt=(0.2350,0.1213,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.9831,2.7312,-2.5500) mvmt=(0.2038,-0.1686,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.9831,2.7312,-3.3200) mvmt=(0.2038,-0.1686,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.9831,2.7312,-3.3200) out=(-7.9831,2.7312,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.483,8.769,90.700) lpos=(-7.983,2.731,-3.320) lprev=(-8.187,2.900,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.9831,2.7312,-2.5700) mvmt=(0.2038,-0.1686,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.483,8.769,91.450) lpos=(-7.983,2.731,-2.570) lprev=(-8.187,2.900,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.8419,-1.4168,-0.9448) mvmt=(0.2038,-0.1686,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8169,-1.6568,-1.0498) mvmt=(0.2038,-0.1686,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8990,-1.2290,0.4545) mvmt=(0.2350,0.1213,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.9831,2.7312,-2.5500) mvmt=(0.2038,-0.1686,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.8017,2.5812,-2.5700) mvmt=(0.1814,-0.1501,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.302,8.919,91.450) lpos=(-7.802,2.581,-2.570) lprev=(-7.983,2.731,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0233,-1.5669,-0.9448) mvmt=(0.1814,-0.1501,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9983,-1.8069,-1.0498) mvmt=(0.1814,-0.1501,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1082,-1.1210,0.4545) mvmt=(0.2092,0.1080,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.8017,2.5812,-2.5500) mvmt=(0.1814,-0.1501,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.8017,2.5812,-3.3200) mvmt=(0.1814,-0.1501,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.8017,2.5812,-3.3200) out=(-7.8017,2.5812,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.302,8.919,90.700) lpos=(-7.802,2.581,-3.320) lprev=(-7.983,2.731,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.8017,2.5812,-2.5700) mvmt=(0.1814,-0.1501,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.302,8.919,91.450) lpos=(-7.802,2.581,-2.570) lprev=(-7.983,2.731,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0233,-1.5669,-0.9448) mvmt=(0.1814,-0.1501,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9983,-1.8069,-1.0498) mvmt=(0.1814,-0.1501,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1082,-1.1210,0.4545) mvmt=(0.2092,0.1080,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.8017,2.5812,-2.5500) mvmt=(0.1814,-0.1501,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.6033,2.4170,-2.5700) mvmt=(0.1984,-0.1641,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.103,9.083,91.450) lpos=(-7.603,2.417,-2.570) lprev=(-7.802,2.581,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2217,-1.7310,-0.9448) mvmt=(0.1984,-0.1641,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1967,-1.9710,-1.0498) mvmt=(0.1984,-0.1641,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3370,-1.0029,0.4545) mvmt=(0.2288,0.1181,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.6033,2.4170,-2.5500) mvmt=(0.1984,-0.1641,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.6033,2.4170,-3.3200) mvmt=(0.1984,-0.1641,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.6033,2.4170,-3.3200) out=(-7.6033,2.4170,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.103,9.083,90.700) lpos=(-7.603,2.417,-3.320) lprev=(-7.802,2.581,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.6033,2.4170,-2.5700) mvmt=(0.1984,-0.1641,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.103,9.083,91.450) lpos=(-7.603,2.417,-2.570) lprev=(-7.802,2.581,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2217,-1.7310,-0.9448) mvmt=(0.1984,-0.1641,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1967,-1.9710,-1.0498) mvmt=(0.1984,-0.1641,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.3370,-1.0029,0.4545) mvmt=(0.2288,0.1181,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.6033,2.4170,-2.5500) mvmt=(0.1984,-0.1641,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.6227,2.2778,-2.5700) mvmt=(-0.0194,-0.1392,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.123,9.222,91.450) lpos=(-7.623,2.278,-2.570) lprev=(-7.603,2.417,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2023,-1.8702,-0.9448) mvmt=(-0.0194,-0.1392,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1773,-2.1102,-1.0498) mvmt=(-0.0194,-0.1392,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4575,-1.0754,0.4545) mvmt=(0.1204,-0.0725,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.6227,2.2778,-2.5500) mvmt=(-0.0194,-0.1392,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.6227,2.2778,-3.3200) mvmt=(-0.0194,-0.1392,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.6227,2.2778,-3.3200) out=(-7.6227,2.2778,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.123,9.222,90.700) lpos=(-7.623,2.278,-3.320) lprev=(-7.603,2.417,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.6227,2.2778,-2.5700) mvmt=(-0.0194,-0.1392,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.123,9.222,91.450) lpos=(-7.623,2.278,-2.570) lprev=(-7.603,2.417,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.2023,-1.8702,-0.9448) mvmt=(-0.0194,-0.1392,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1773,-2.1102,-1.0498) mvmt=(-0.0194,-0.1392,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.4575,-1.0754,0.4545) mvmt=(0.1204,-0.0725,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.6227,2.2778,-2.5500) mvmt=(-0.0194,-0.1392,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementStrafeLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.6400,2.1540,-2.5700) mvmt=(-0.0173,-0.1238,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.140,9.346,91.450) lpos=(-7.640,2.154,-2.570) lprev=(-7.623,2.278,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1850,-1.9940,-0.9448) mvmt=(-0.0173,-0.1238,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1600,-2.2340,-1.0498) mvmt=(-0.0173,-0.1238,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5646,-1.1399,0.4545) mvmt=(0.1071,-0.0645,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.6400,2.1540,-2.5500) mvmt=(-0.0173,-0.1238,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.6400,2.1540,-3.3200) mvmt=(-0.0173,-0.1238,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.6400,2.1540,-3.3200) out=(-7.6400,2.1540,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.140,9.346,90.700) lpos=(-7.640,2.154,-3.320) lprev=(-7.623,2.278,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.6400,2.1540,-2.5700) mvmt=(-0.0173,-0.1238,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.140,9.346,91.450) lpos=(-7.640,2.154,-2.570) lprev=(-7.623,2.278,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1850,-1.9940,-0.9448) mvmt=(-0.0173,-0.1238,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1600,-2.2340,-1.0498) mvmt=(-0.0173,-0.1238,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.5646,-1.1399,0.4545) mvmt=(0.1071,-0.0645,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.6400,2.1540,-2.5500) mvmt=(-0.0173,-0.1238,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.6590,2.0176,-2.5700) mvmt=(-0.0190,-0.1364,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.159,9.482,91.450) lpos=(-7.659,2.018,-2.570) lprev=(-7.640,2.154,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1660,-2.1304,-0.9448) mvmt=(-0.0190,-0.1364,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1410,-2.3704,-1.0498) mvmt=(-0.0190,-0.1364,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.6590,2.0176,-2.5500) mvmt=(-0.0190,-0.1364,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.6590,2.0176,-3.3200) mvmt=(-0.0190,-0.1364,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.6590,2.0176,-3.3200) out=(-7.6590,2.0176,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.159,9.482,90.700) lpos=(-7.659,2.018,-3.320) lprev=(-7.640,2.154,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.6590,2.0176,-2.5700) mvmt=(-0.0190,-0.1364,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.159,9.482,91.450) lpos=(-7.659,2.018,-2.570) lprev=(-7.640,2.154,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1660,-2.1304,-0.9448) mvmt=(-0.0190,-0.1364,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1410,-2.3704,-1.0498) mvmt=(-0.0190,-0.1364,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.6590,2.0176,-2.5500) mvmt=(-0.0190,-0.1364,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.6778,1.8835,-2.5700) mvmt=(-0.0187,-0.1341,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.178,9.617,91.450) lpos=(-7.678,1.883,-2.570) lprev=(-7.659,2.018,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1472,-2.2646,-0.9448) mvmt=(-0.0187,-0.1341,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1222,-2.5046,-1.0498) mvmt=(-0.0187,-0.1341,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.6778,1.8835,-2.5500) mvmt=(-0.0187,-0.1341,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.6778,1.8835,-3.3200) mvmt=(-0.0187,-0.1341,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.6778,1.8835,-3.3200) out=(-7.6778,1.8835,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.178,9.617,90.700) lpos=(-7.678,1.883,-3.320) lprev=(-7.659,2.018,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.6778,1.8835,-2.5700) mvmt=(-0.0187,-0.1341,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.178,9.617,91.450) lpos=(-7.678,1.883,-2.570) lprev=(-7.659,2.018,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1472,-2.2646,-0.9448) mvmt=(-0.0187,-0.1341,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1222,-2.5046,-1.0498) mvmt=(-0.0187,-0.1341,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.6778,1.8835,-2.5500) mvmt=(-0.0187,-0.1341,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.6966,1.7488,-2.5700) mvmt=(-0.0188,-0.1347,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.197,9.751,91.450) lpos=(-7.697,1.749,-2.570) lprev=(-7.678,1.883,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1284,-2.3993,-0.9448) mvmt=(-0.0188,-0.1347,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1034,-2.6393,-1.0498) mvmt=(-0.0188,-0.1347,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.6966,1.7488,-2.5500) mvmt=(-0.0188,-0.1347,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.6966,1.7488,-3.3200) mvmt=(-0.0188,-0.1347,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.6966,1.7488,-3.3200) out=(-7.6966,1.7488,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.197,9.751,90.700) lpos=(-7.697,1.749,-3.320) lprev=(-7.678,1.883,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.6966,1.7488,-2.5700) mvmt=(-0.0188,-0.1347,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.197,9.751,91.450) lpos=(-7.697,1.749,-2.570) lprev=(-7.678,1.883,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1284,-2.3993,-0.9448) mvmt=(-0.0188,-0.1347,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.1034,-2.6393,-1.0498) mvmt=(-0.0188,-0.1347,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.6966,1.7488,-2.5500) mvmt=(-0.0188,-0.1347,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.7154,1.6142,-2.5700) mvmt=(-0.0188,-0.1346,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.215,9.886,91.450) lpos=(-7.715,1.614,-2.570) lprev=(-7.697,1.749,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1096,-2.5339,-0.9448) mvmt=(-0.0188,-0.1346,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0846,-2.7739,-1.0498) mvmt=(-0.0188,-0.1346,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.7154,1.6142,-2.5500) mvmt=(-0.0188,-0.1346,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.7154,1.6142,-3.3200) mvmt=(-0.0188,-0.1346,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.7154,1.6142,-3.3200) out=(-7.7154,1.6142,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.215,9.886,90.700) lpos=(-7.715,1.614,-3.320) lprev=(-7.697,1.749,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.7154,1.6142,-2.5700) mvmt=(-0.0188,-0.1346,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.215,9.886,91.450) lpos=(-7.715,1.614,-2.570) lprev=(-7.697,1.749,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.1096,-2.5339,-0.9448) mvmt=(-0.0188,-0.1346,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0846,-2.7739,-1.0498) mvmt=(-0.0188,-0.1346,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.7154,1.6142,-2.5500) mvmt=(-0.0188,-0.1346,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.7354,1.4916,-2.5700) mvmt=(-0.0200,-0.1226,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.235,10.008,91.450) lpos=(-7.735,1.492,-2.570) lprev=(-7.715,1.614,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0896,-2.6564,-0.9448) mvmt=(-0.0200,-0.1226,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0647,-2.8964,-1.0498) mvmt=(-0.0200,-0.1226,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.7354,1.4916,-2.5500) mvmt=(-0.0200,-0.1226,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.7354,1.4916,-3.3200) mvmt=(-0.0200,-0.1226,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.7354,1.4916,-3.3200) out=(-7.7354,1.4916,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.235,10.008,90.700) lpos=(-7.735,1.492,-3.320) lprev=(-7.715,1.614,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.7354,1.4916,-2.5700) mvmt=(-0.0200,-0.1226,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.235,10.008,91.450) lpos=(-7.735,1.492,-2.570) lprev=(-7.715,1.614,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0896,-2.6564,-0.9448) mvmt=(-0.0200,-0.1226,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0647,-2.8964,-1.0498) mvmt=(-0.0200,-0.1226,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.7354,1.4916,-2.5500) mvmt=(-0.0200,-0.1226,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.7687,1.3599,-2.5700) mvmt=(-0.0333,-0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.269,10.140,91.450) lpos=(-7.769,1.360,-2.570) lprev=(-7.735,1.492,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0563,-2.7881,-0.9448) mvmt=(-0.0333,-0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0313,-3.0281,-1.0498) mvmt=(-0.0333,-0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.7687,1.3599,-2.5500) mvmt=(-0.0333,-0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.7687,1.3599,-3.3200) mvmt=(-0.0333,-0.1317,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.7687,1.3599,-3.3200) out=(-7.7687,1.3599,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.269,10.140,90.700) lpos=(-7.769,1.360,-3.320) lprev=(-7.735,1.492,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.7687,1.3599,-2.5700) mvmt=(-0.0333,-0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.269,10.140,91.450) lpos=(-7.769,1.360,-2.570) lprev=(-7.735,1.492,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0563,-2.7881,-0.9448) mvmt=(-0.0333,-0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(3.0313,-3.0281,-1.0498) mvmt=(-0.0333,-0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.7687,1.3599,-2.5500) mvmt=(-0.0333,-0.1317,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.8129,1.2325,-2.5700) mvmt=(-0.0442,-0.1274,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.313,10.268,91.450) lpos=(-7.813,1.232,-2.570) lprev=(-7.769,1.360,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0121,-2.9156,-0.9448) mvmt=(-0.0442,-0.1274,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9871,-3.1556,-1.0498) mvmt=(-0.0442,-0.1274,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.8129,1.2325,-2.5500) mvmt=(-0.0442,-0.1274,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.8129,1.2325,-3.3200) mvmt=(-0.0442,-0.1274,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.8129,1.2325,-3.3200) out=(-7.8129,1.2325,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.313,10.268,90.700) lpos=(-7.813,1.232,-3.320) lprev=(-7.769,1.360,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.8129,1.2325,-2.5700) mvmt=(-0.0442,-0.1274,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.313,10.268,91.450) lpos=(-7.813,1.232,-2.570) lprev=(-7.769,1.360,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(2.0121,-2.9156,-0.9448) mvmt=(-0.0442,-0.1274,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9871,-3.1556,-1.0498) mvmt=(-0.0442,-0.1274,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.8129,1.2325,-2.5500) mvmt=(-0.0442,-0.1274,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.8682,1.1086,-2.5700) mvmt=(-0.0553,-0.1238,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.368,10.391,91.450) lpos=(-7.868,1.109,-2.570) lprev=(-7.813,1.232,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9568,-3.0394,-0.9448) mvmt=(-0.0553,-0.1238,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9318,-3.2794,-1.0498) mvmt=(-0.0553,-0.1238,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.8682,1.1086,-2.5500) mvmt=(-0.0553,-0.1238,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.8682,1.1086,-3.3200) mvmt=(-0.0553,-0.1238,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.8682,1.1086,-3.3200) out=(-7.8682,1.1086,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.368,10.391,90.700) lpos=(-7.868,1.109,-3.320) lprev=(-7.813,1.232,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.8682,1.1086,-2.5700) mvmt=(-0.0553,-0.1238,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.368,10.391,91.450) lpos=(-7.868,1.109,-2.570) lprev=(-7.813,1.232,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.9568,-3.0394,-0.9448) mvmt=(-0.0553,-0.1238,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.9318,-3.2794,-1.0498) mvmt=(-0.0553,-0.1238,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.8682,1.1086,-2.5500) mvmt=(-0.0553,-0.1238,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-7.9273,1.0002,-2.5700) mvmt=(-0.0591,-0.1085,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.427,10.500,91.450) lpos=(-7.927,1.000,-2.570) lprev=(-7.868,1.109,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.8977,-3.1479,-0.9448) mvmt=(-0.0591,-0.1085,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8727,-3.3879,-1.0498) mvmt=(-0.0591,-0.1085,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.9273,1.0002,-2.5500) mvmt=(-0.0591,-0.1085,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.9273,1.0002,-3.3200) mvmt=(-0.0591,-0.1085,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-7.9273,1.0002,-3.3200) out=(-7.9273,1.0002,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.427,10.500,90.700) lpos=(-7.927,1.000,-3.320) lprev=(-7.868,1.109,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-7.9273,1.0002,-2.5700) mvmt=(-0.0591,-0.1085,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.427,10.500,91.450) lpos=(-7.927,1.000,-2.570) lprev=(-7.868,1.109,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.8977,-3.1479,-0.9448) mvmt=(-0.0591,-0.1085,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.8727,-3.3879,-1.0498) mvmt=(-0.0591,-0.1085,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-7.9273,1.0002,-2.5500) mvmt=(-0.0591,-0.1085,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-8.0029,0.8861,-2.5700) mvmt=(-0.0757,-0.1141,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.503,10.614,91.450) lpos=(-8.003,0.886,-2.570) lprev=(-7.927,1.000,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.8221,-3.2619,-0.9448) mvmt=(-0.0757,-0.1141,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7971,-3.5019,-1.0498) mvmt=(-0.0757,-0.1141,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.0029,0.8861,-2.5500) mvmt=(-0.0757,-0.1141,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.0029,0.8861,-3.3200) mvmt=(-0.0757,-0.1141,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-8.0029,0.8861,-3.3200) out=(-8.0029,0.8861,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.503,10.614,90.700) lpos=(-8.003,0.886,-3.320) lprev=(-7.927,1.000,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-8.0029,0.8861,-2.5700) mvmt=(-0.0757,-0.1141,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.503,10.614,91.450) lpos=(-8.003,0.886,-2.570) lprev=(-7.927,1.000,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.8221,-3.2619,-0.9448) mvmt=(-0.0757,-0.1141,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7971,-3.5019,-1.0498) mvmt=(-0.0757,-0.1141,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.0029,0.8861,-2.5500) mvmt=(-0.0757,-0.1141,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-8.0855,0.7820,-2.5700) mvmt=(-0.0826,-0.1041,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.585,10.718,91.450) lpos=(-8.085,0.782,-2.570) lprev=(-8.003,0.886,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7395,-3.3661,-0.9448) mvmt=(-0.0826,-0.1041,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7145,-3.6061,-1.0498) mvmt=(-0.0826,-0.1041,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.0855,0.7820,-2.5500) mvmt=(-0.0826,-0.1041,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.0855,0.7820,-3.3200) mvmt=(-0.0826,-0.1041,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-8.0855,0.7820,-3.3200) out=(-8.0855,0.7820,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.585,10.718,90.700) lpos=(-8.085,0.782,-3.320) lprev=(-8.003,0.886,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-8.0855,0.7820,-2.5700) mvmt=(-0.0826,-0.1041,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.585,10.718,91.450) lpos=(-8.085,0.782,-2.570) lprev=(-8.003,0.886,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.7395,-3.3661,-0.9448) mvmt=(-0.0826,-0.1041,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.7145,-3.6061,-1.0498) mvmt=(-0.0826,-0.1041,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.0855,0.7820,-2.5500) mvmt=(-0.0826,-0.1041,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-8.3428,1.1216,-2.5700) mvmt=(-0.2573,0.3396,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.843,10.378,91.450) lpos=(-8.343,1.122,-2.570) lprev=(-8.085,0.782,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.4822,-3.0264,-0.9448) mvmt=(-0.2573,0.3396,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4572,-3.2664,-1.0498) mvmt=(-0.2573,0.3396,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.3428,1.1216,-2.5500) mvmt=(-0.2573,0.3396,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.3428,1.1216,-3.3200) mvmt=(-0.2573,0.3396,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-8.3428,1.1216,-3.3200) out=(-8.3428,1.1216,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(138.843,10.378,90.700) lpos=(-8.343,1.122,-3.320) lprev=(-8.085,0.782,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-8.3428,1.1216,-2.5700) mvmt=(-0.2573,0.3396,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(138.843,10.378,91.450) lpos=(-8.343,1.122,-2.570) lprev=(-8.085,0.782,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.4822,-3.0264,-0.9448) mvmt=(-0.2573,0.3396,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.4572,-3.2664,-1.0498) mvmt=(-0.2573,0.3396,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.3428,1.1216,-2.5500) mvmt=(-0.2573,0.3396,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-8.6143,1.4799,-2.5700) mvmt=(-0.2715,0.3583,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.114,10.020,91.450) lpos=(-8.614,1.480,-2.570) lprev=(-8.343,1.122,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.2107,-2.6681,-0.9448) mvmt=(-0.2715,0.3583,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1857,-2.9081,-1.0498) mvmt=(-0.2715,0.3583,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.6143,1.4799,-2.5500) mvmt=(-0.2715,0.3583,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.6143,1.4799,-3.3200) mvmt=(-0.2715,0.3583,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-8.6143,1.4799,-3.3200) out=(-8.6143,1.4799,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(139.114,10.020,90.700) lpos=(-8.614,1.480,-3.320) lprev=(-8.343,1.122,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-8.6143,1.4799,-2.5700) mvmt=(-0.2715,0.3583,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.114,10.020,91.450) lpos=(-8.614,1.480,-2.570) lprev=(-8.343,1.122,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(1.2107,-2.6681,-0.9448) mvmt=(-0.2715,0.3583,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.1857,-2.9081,-1.0498) mvmt=(-0.2715,0.3583,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.6143,1.4799,-2.5500) mvmt=(-0.2715,0.3583,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-8.8807,1.8316,-2.5700) mvmt=(-0.2664,0.3517,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.381,9.668,91.450) lpos=(-8.881,1.832,-2.570) lprev=(-8.614,1.480,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.9443,-2.3165,-0.9448) mvmt=(-0.2664,0.3517,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9193,-2.5565,-1.0498) mvmt=(-0.2664,0.3517,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.8807,1.8316,-2.5500) mvmt=(-0.2664,0.3517,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.8807,1.8316,-3.3200) mvmt=(-0.2664,0.3517,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-8.8807,1.8316,-3.3200) out=(-8.8807,1.8316,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(139.381,9.668,90.700) lpos=(-8.881,1.832,-3.320) lprev=(-8.614,1.480,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-8.8807,1.8316,-2.5700) mvmt=(-0.2664,0.3517,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.381,9.668,91.450) lpos=(-8.881,1.832,-2.570) lprev=(-8.614,1.480,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.9443,-2.3165,-0.9448) mvmt=(-0.2664,0.3517,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9193,-2.5565,-1.0498) mvmt=(-0.2664,0.3517,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-8.8807,1.8316,-2.5500) mvmt=(-0.2664,0.3517,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.1564,2.1955,-2.5700) mvmt=(-0.2757,0.3639,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.656,9.304,91.450) lpos=(-9.156,2.196,-2.570) lprev=(-8.881,1.832,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.6686,-1.9525,-0.9448) mvmt=(-0.2757,0.3639,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6436,-2.1925,-1.0498) mvmt=(-0.2757,0.3639,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.1564,2.1955,-2.5500) mvmt=(-0.2757,0.3639,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.1564,2.1955,-3.3200) mvmt=(-0.2757,0.3639,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.1564,2.1955,-3.3200) out=(-9.1564,2.1955,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(139.656,9.304,90.700) lpos=(-9.156,2.196,-3.320) lprev=(-8.881,1.832,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.1564,2.1955,-2.5700) mvmt=(-0.2757,0.3639,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.656,9.304,91.450) lpos=(-9.156,2.196,-2.570) lprev=(-8.881,1.832,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.6686,-1.9525,-0.9448) mvmt=(-0.2757,0.3639,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.6436,-2.1925,-1.0498) mvmt=(-0.2757,0.3639,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.1564,2.1955,-2.5500) mvmt=(-0.2757,0.3639,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.4188,2.5419,-2.5700) mvmt=(-0.2624,0.3464,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.919,8.958,91.450) lpos=(-9.419,2.542,-2.570) lprev=(-9.156,2.196,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.4062,-1.6062,-0.9448) mvmt=(-0.2624,0.3464,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.4188,2.5419,-2.5700) mvmt=(-0.2624,0.3464,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.919,8.958,91.450) lpos=(-9.419,2.542,-2.570) lprev=(-9.156,2.196,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.4062,-1.6062,-0.9448) mvmt=(-0.2624,0.3464,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.4062,-1.6062,-0.9448) out=(0.4062,-1.6062,-0.5774) delta=(0.0000,0.0000,0.3674) deltaMag=0.3674 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.3876 dpPos=0.2202 dpMove=-0.4243 iDist=0.6124 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-9.4188,2.5419,-2.2026) mvmt=(-0.2624,0.3464,0.3674) collide=False insertType=0 objState=0x303 winterp=0.3876 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.919,8.958,91.817) lpos=(-9.419,2.542,-2.203) lprev=(-9.156,2.196,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.4062,-1.6062,-0.5774) mvmt=(-0.2624,0.3464,0.3674) collide=False insertType=0 objState=0x303 winterp=0.3876 return=-1 +[push-back-disp] site=dispatch center=(1.3812,-1.8462,-0.6824) mvmt=(-0.2624,0.3464,0.3674) collide=False insertType=0 objState=0x303 winterp=0.3876 return=-1 +[push-back-disp] site=dispatch center=(2.5099,-2.6239,0.8219) mvmt=(-0.4215,-0.1055,0.3674) collide=False insertType=0 objState=0x303 winterp=0.3876 return=-1 +[push-back-disp] site=dispatch center=(-9.4188,2.5419,-2.1826) mvmt=(-0.2624,0.3464,0.3674) collide=False insertType=0 objState=0x303 winterp=0.3876 return=-1 +[push-back-disp] site=dispatch center=(-9.4188,2.5419,-2.2026) mvmt=(-0.2624,0.3464,0.3674) collide=False insertType=1 objState=0x303 winterp=0.3876 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(139.919,8.958,91.817) lpos=(-9.419,2.542,-2.203) lprev=(-9.156,2.196,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.4062,-1.6062,-0.5774) mvmt=(-0.2624,0.3464,0.3674) collide=False insertType=1 objState=0x303 winterp=0.3876 return=-1 +[push-back-disp] site=dispatch center=(1.3812,-1.8462,-0.6824) mvmt=(-0.2624,0.3464,0.3674) collide=False insertType=1 objState=0x303 winterp=0.3876 return=-1 +[push-back-disp] site=dispatch center=(2.5099,-2.6239,0.8219) mvmt=(-0.4215,-0.1055,0.3674) collide=False insertType=1 objState=0x303 winterp=0.3876 return=-1 +[push-back-disp] site=dispatch center=(-9.4188,2.5419,-2.1826) mvmt=(-0.2624,0.3464,0.3674) collide=False insertType=1 objState=0x303 winterp=0.3876 return=-1 +[push-back-disp] site=dispatch center=(1.3812,-1.8462,-0.6824) mvmt=(-0.2624,0.3464,0.3674) collide=False insertType=0 objState=0x303 winterp=0.3876 return=-1 +[push-back-disp] site=dispatch center=(2.5099,-2.6239,0.8219) mvmt=(-0.4215,-0.1055,0.3674) collide=False insertType=0 objState=0x303 winterp=0.3876 return=-1 +[push-back-disp] site=dispatch center=(-9.4188,2.5419,-2.1826) mvmt=(-0.2624,0.3464,0.3674) collide=False insertType=0 objState=0x303 winterp=0.3876 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.6863,2.7184,-2.0260) mvmt=(-0.2675,0.1766,0.1766) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.186,8.782,91.994) lpos=(-9.686,2.718,-2.026) lprev=(-9.419,2.542,-2.203) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.1387,-1.4296,-0.4008) mvmt=(-0.2675,0.1766,0.1766) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1137,-1.6696,-0.5058) mvmt=(-0.2675,0.1766,0.1766) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2426,-2.8007,0.9985) mvmt=(-0.2674,-0.1768,0.1766) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.6863,2.7184,-2.0060) mvmt=(-0.2675,0.1766,0.1766) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.6863,2.7184,-2.7760) mvmt=(-0.2675,0.1766,-0.5734) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.6863,2.7184,-2.7760) out=(-9.6863,2.7184,-2.5700) delta=(0.0000,0.0000,0.2060) deltaMag=0.2060 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.7254 dpPos=0.2740 dpMove=-0.7500 iDist=0.2746 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(140.186,8.782,91.244) lpos=(-9.686,2.718,-2.776) lprev=(-9.419,2.542,-2.203) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.6863,2.7184,-2.5700) mvmt=(-0.2675,0.1766,-0.3674) collide=False insertType=0 objState=0x303 winterp=0.7254 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.186,8.782,91.450) lpos=(-9.686,2.718,-2.570) lprev=(-9.419,2.542,-2.203) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.1387,-1.4296,-0.9448) mvmt=(-0.2675,0.1766,-0.3674) collide=False insertType=0 objState=0x303 winterp=0.7254 return=-1 +[push-back] site=adjust_sphere in=(0.1387,-1.4296,-0.9448) out=(0.1387,-1.4296,-0.4008) delta=(0.0000,0.0000,0.5440) deltaMag=0.5440 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.7254->-0.0000 dpPos=0.0953 dpMove=-0.3847 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-9.6863,2.7184,-2.0260) mvmt=(-0.2675,0.1766,0.1766) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.186,8.782,91.994) lpos=(-9.686,2.718,-2.026) lprev=(-9.419,2.542,-2.203) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(0.1387,-1.4296,-0.4008) mvmt=(-0.2675,0.1766,0.1766) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.1137,-1.6696,-0.5058) mvmt=(-0.2675,0.1766,0.1766) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(2.2426,-2.8007,0.9985) mvmt=(-0.2674,-0.1768,0.1766) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.6863,2.7184,-2.0060) mvmt=(-0.2675,0.1766,0.1766) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-9.9497,2.8923,-1.8521) mvmt=(-0.2634,0.1738,0.1738) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.450,8.608,92.168) lpos=(-9.950,2.892,-1.852) lprev=(-9.686,2.718,-2.026) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1247,-1.2558,-0.2269) mvmt=(-0.2634,0.1738,0.1738) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8503,-1.4958,-0.3319) mvmt=(-0.2634,0.1738,0.1738) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9793,-2.9748,1.1724) mvmt=(-0.2632,-0.1741,0.1738) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.9497,2.8923,-1.8321) mvmt=(-0.2634,0.1738,0.1738) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.9497,2.8923,-2.6021) mvmt=(-0.2634,0.1738,-0.5762) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-9.9497,2.8923,-2.6021) out=(-9.9497,2.8923,-2.5700) delta=(0.0000,0.0000,0.0321) deltaMag=0.0321 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.9571 dpPos=0.4479 dpMove=-0.7500 iDist=0.0429 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(140.450,8.608,91.418) lpos=(-9.950,2.892,-2.602) lprev=(-9.686,2.718,-2.026) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-9.9497,2.8923,-2.5700) mvmt=(-0.2634,0.1738,-0.5440) collide=False insertType=0 objState=0x303 winterp=0.9571 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.450,8.608,91.450) lpos=(-9.950,2.892,-2.570) lprev=(-9.686,2.718,-2.026) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1247,-1.2558,-0.9448) mvmt=(-0.2634,0.1738,-0.5440) collide=False insertType=0 objState=0x303 winterp=0.9571 return=-1 +[push-back] site=adjust_sphere in=(-0.1247,-1.2558,-0.9448) out=(-0.1247,-1.2558,-0.2269) delta=(0.0000,0.0000,0.7179) deltaMag=0.7179 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=0.9571->0.0000 dpPos=-0.0276 dpMove=-0.5076 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-9.9497,2.8923,-1.8521) mvmt=(-0.2634,0.1738,0.1738) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.450,8.608,92.168) lpos=(-9.950,2.892,-1.852) lprev=(-9.686,2.718,-2.026) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.1247,-1.2558,-0.2269) mvmt=(-0.2634,0.1738,0.1738) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.8503,-1.4958,-0.3319) mvmt=(-0.2634,0.1738,0.1738) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.9793,-2.9748,1.1724) mvmt=(-0.2632,-0.1741,0.1738) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-9.9497,2.8923,-1.8321) mvmt=(-0.2634,0.1738,0.1738) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.1883,3.0498,-1.6946) mvmt=(-0.2386,0.1575,0.1575) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.688,8.450,92.325) lpos=(-10.188,3.050,-1.695) lprev=(-9.950,2.892,-1.852) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3633,-1.0983,-0.0694) mvmt=(-0.2386,0.1575,0.1575) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6117,-1.3383,-0.1744) mvmt=(-0.2386,0.1575,0.1575) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6117,-3.5495,-1.5244) mvmt=(-0.2386,0.1575,0.1575) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7408,-3.1325,1.3299) mvmt=(-0.2385,-0.1577,0.1575) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1883,3.0498,-1.6746) mvmt=(-0.2386,0.1575,0.1575) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1883,3.0498,-2.4446) mvmt=(-0.2386,0.1575,-0.5925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.688,8.450,91.575) lpos=(-10.188,3.050,-2.445) lprev=(-9.950,2.892,-1.852) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3633,-1.0983,-0.8194) mvmt=(-0.2386,0.1575,-0.5925) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3633,-1.0983,-0.8194) out=(-0.3633,-1.0983,-0.0694) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0503 dpMove=-0.5303 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.1883,3.0498,-1.6946) mvmt=(-0.2386,0.1575,0.1575) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.688,8.450,92.325) lpos=(-10.188,3.050,-1.695) lprev=(-9.950,2.892,-1.852) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3633,-1.0983,-0.0694) mvmt=(-0.2386,0.1575,0.1575) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6117,-1.3383,-0.1744) mvmt=(-0.2386,0.1575,0.1575) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.6117,-3.5495,-1.5244) mvmt=(-0.2386,0.1575,0.1575) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.7408,-3.1325,1.3299) mvmt=(-0.2385,-0.1577,0.1575) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1883,3.0498,-1.6746) mvmt=(-0.2386,0.1575,0.1575) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4436,3.2182,-1.5262) mvmt=(-0.2552,0.1684,0.1684) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.944,8.282,92.494) lpos=(-10.444,3.218,-1.526) lprev=(-10.188,3.050,-1.695) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6186,-0.9298,0.0990) mvmt=(-0.2552,0.1684,0.1684) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3564,-1.1698,-0.0060) mvmt=(-0.2552,0.1684,0.1684) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3564,-3.3811,-1.3560) mvmt=(-0.2552,0.1684,0.1684) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4857,-3.3012,1.4983) mvmt=(-0.2551,-0.1687,0.1684) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4436,3.2182,-1.5062) mvmt=(-0.2552,0.1684,0.1684) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4436,3.2182,-2.2762) mvmt=(-0.2552,0.1684,-0.5816) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.944,8.282,91.744) lpos=(-10.444,3.218,-2.276) lprev=(-10.188,3.050,-1.695) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6186,-0.9298,-0.6510) mvmt=(-0.2552,0.1684,-0.5816) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.6186,-0.9298,-0.6510) out=(-0.6186,-0.9298,0.0990) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0503 dpMove=-0.5303 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4436,3.2182,-1.5262) mvmt=(-0.2552,0.1684,0.1684) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.944,8.282,92.494) lpos=(-10.444,3.218,-1.526) lprev=(-10.188,3.050,-1.695) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6186,-0.9298,0.0990) mvmt=(-0.2552,0.1684,0.1684) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3564,-1.1698,-0.0060) mvmt=(-0.2552,0.1684,0.1684) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3564,-3.3811,-1.3560) mvmt=(-0.2552,0.1684,0.1684) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(1.4857,-3.3012,1.4983) mvmt=(-0.2551,-0.1687,0.1684) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4436,3.2182,-1.5062) mvmt=(-0.2552,0.1684,0.1684) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7002,3.3876,-1.3568) mvmt=(-0.2567,0.1694,0.1694) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.200,8.112,92.663) lpos=(-10.700,3.388,-1.357) lprev=(-10.444,3.218,-1.526) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8752,-0.7604,0.2684) mvmt=(-0.2567,0.1694,0.1694) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0998,-1.0004,0.1634) mvmt=(-0.2567,0.1694,0.1694) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0998,-3.2117,-1.1866) mvmt=(-0.2567,0.1694,0.1694) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7002,3.3876,-1.3368) mvmt=(-0.2567,0.1694,0.1694) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7002,3.3876,-2.1068) mvmt=(-0.2567,0.1694,-0.5806) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.200,8.112,91.913) lpos=(-10.700,3.388,-2.107) lprev=(-10.444,3.218,-1.526) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8752,-0.7604,-0.4816) mvmt=(-0.2567,0.1694,-0.5806) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0998,-1.0004,-0.5866) mvmt=(-0.2567,0.1694,-0.5806) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0998,-1.0004,-0.5866) out=(0.0998,-1.0004,-0.1995) delta=(0.0000,0.0000,0.3871) deltaMag=0.3871 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.4838 dpPos=0.2109 dpMove=-0.5213 iDist=0.5162 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.7002,3.3876,-1.7197) mvmt=(-0.2567,0.1694,-0.1935) collide=False insertType=0 objState=0x303 winterp=0.4838 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.200,8.112,92.300) lpos=(-10.700,3.388,-1.720) lprev=(-10.444,3.218,-1.526) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8752,-0.7604,-0.0945) mvmt=(-0.2567,0.1694,-0.1935) collide=False insertType=0 objState=0x303 winterp=0.4838 return=-1 +[push-back-disp] site=dispatch center=(0.0998,-1.0004,-0.1995) mvmt=(-0.2567,0.1694,-0.1935) collide=False insertType=0 objState=0x303 winterp=0.4838 return=-1 +[push-back-disp] site=dispatch center=(0.0998,-3.2117,-1.5495) mvmt=(-0.2567,0.1694,-0.1935) collide=False insertType=0 objState=0x303 winterp=0.4838 return=-1 +[push-back-disp] site=dispatch center=(1.2292,-3.4708,1.3048) mvmt=(-0.2565,-0.1696,-0.1935) collide=False insertType=0 objState=0x303 winterp=0.4838 return=-1 +[push-back-disp] site=dispatch center=(-10.7002,3.3876,-1.6997) mvmt=(-0.2567,0.1694,-0.1935) collide=False insertType=0 objState=0x303 winterp=0.4838 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9589,3.5525,-1.5491) mvmt=(-0.2586,0.1649,0.1706) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.459,7.947,92.471) lpos=(-10.959,3.553,-1.549) lprev=(-10.700,3.388,-1.720) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1339,-0.5955,0.0761) mvmt=(-0.2586,0.1649,0.1706) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1589,-0.8355,-0.0289) mvmt=(-0.2586,0.1649,0.1706) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1589,-3.0468,-1.3789) mvmt=(-0.2586,0.1649,0.1706) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9589,3.5525,-1.5291) mvmt=(-0.2586,0.1649,0.1706) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9589,3.5525,-2.2991) mvmt=(-0.2586,0.1649,-0.5794) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.459,7.947,91.721) lpos=(-10.959,3.553,-2.299) lprev=(-10.700,3.388,-1.720) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1339,-0.5955,-0.6739) mvmt=(-0.2586,0.1649,-0.5794) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1589,-0.8355,-0.7789) mvmt=(-0.2586,0.1649,-0.5794) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1589,-0.8355,-0.7789) out=(-0.1589,-0.8355,-0.0289) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.9589,3.5525,-1.5491) mvmt=(-0.2586,0.1649,0.1706) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.459,7.947,92.471) lpos=(-10.959,3.553,-1.549) lprev=(-10.700,3.388,-1.720) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1339,-0.5955,0.0761) mvmt=(-0.2586,0.1649,0.1706) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1589,-0.8355,-0.0289) mvmt=(-0.2586,0.1649,0.1706) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1589,-3.0468,-1.3789) mvmt=(-0.2586,0.1649,0.1706) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9589,3.5525,-1.5291) mvmt=(-0.2586,0.1649,0.1706) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9627,3.7597,-1.3348) mvmt=(-0.0038,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.463,7.740,92.685) lpos=(-10.963,3.760,-1.335) lprev=(-10.959,3.553,-1.549) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1377,-0.3884,0.2904) mvmt=(-0.0038,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1627,-0.6284,0.1854) mvmt=(-0.0038,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1627,-2.8396,-1.1646) mvmt=(-0.0038,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9627,3.7597,-1.3148) mvmt=(-0.0038,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9627,3.7597,-2.0848) mvmt=(-0.0038,0.2072,-0.5357) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.463,7.740,91.935) lpos=(-10.963,3.760,-2.085) lprev=(-10.959,3.553,-1.549) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1377,-0.3884,-0.4596) mvmt=(-0.0038,0.2072,-0.5357) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1627,-0.6284,-0.5646) mvmt=(-0.0038,0.2072,-0.5357) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1627,-0.6284,-0.5646) out=(-0.1627,-0.6284,0.1854) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.9627,3.7597,-1.3348) mvmt=(-0.0038,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.463,7.740,92.685) lpos=(-10.963,3.760,-1.335) lprev=(-10.959,3.553,-1.549) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1377,-0.3884,0.2904) mvmt=(-0.0038,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1627,-0.6284,0.1854) mvmt=(-0.0038,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1627,-2.8396,-1.1646) mvmt=(-0.0038,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9627,3.7597,-1.3148) mvmt=(-0.0038,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9316,3.9614,-1.1261) mvmt=(0.0311,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.432,7.539,92.894) lpos=(-10.932,3.961,-1.126) lprev=(-10.963,3.760,-1.335) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1066,-0.1867,0.4991) mvmt=(0.0311,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1316,-0.4267,0.3941) mvmt=(0.0311,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1316,-2.6379,-0.9559) mvmt=(0.0311,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9316,3.9614,-1.1061) mvmt=(0.0311,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9316,3.9614,-1.8761) mvmt=(0.0311,0.2017,-0.5414) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.432,7.539,92.144) lpos=(-10.932,3.961,-1.876) lprev=(-10.963,3.760,-1.335) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1066,-0.1867,-0.2509) mvmt=(0.0311,0.2017,-0.5414) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1316,-0.4267,-0.3559) mvmt=(0.0311,0.2017,-0.5414) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1316,-0.4267,-0.3559) out=(-0.1316,-0.4267,0.3941) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.9316,3.9614,-1.1261) mvmt=(0.0311,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.432,7.539,92.894) lpos=(-10.932,3.961,-1.126) lprev=(-10.963,3.760,-1.335) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1066,-0.1867,0.4991) mvmt=(0.0311,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1316,-0.4267,0.3941) mvmt=(0.0311,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1316,-2.6379,-0.9559) mvmt=(0.0311,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9316,3.9614,-1.1061) mvmt=(0.0311,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8606,4.1714,-0.9089) mvmt=(0.0710,0.2100,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.361,7.329,93.111) lpos=(-10.861,4.171,-0.909) lprev=(-10.932,3.961,-1.126) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0356,0.0233,0.7163) mvmt=(0.0710,0.2100,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0606,-0.2167,0.6113) mvmt=(0.0710,0.2100,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0606,-2.4279,-0.7387) mvmt=(0.0710,0.2100,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8606,4.1714,-0.8889) mvmt=(0.0710,0.2100,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8606,4.1714,-1.6589) mvmt=(0.0710,0.2100,-0.5328) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.361,7.329,92.361) lpos=(-10.861,4.171,-1.659) lprev=(-10.932,3.961,-1.126) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0356,0.0233,-0.0337) mvmt=(0.0710,0.2100,-0.5328) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0606,-0.2167,-0.1387) mvmt=(0.0710,0.2100,-0.5328) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0606,-0.2167,-0.1387) out=(-0.0606,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.8606,4.1714,-0.9089) mvmt=(0.0710,0.2100,0.2172) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.361,7.329,93.111) lpos=(-10.861,4.171,-0.909) lprev=(-10.932,3.961,-1.126) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0356,0.0233,0.7163) mvmt=(0.0710,0.2100,0.2172) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0606,-0.2167,0.6113) mvmt=(0.0710,0.2100,0.2172) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0606,-2.4279,-0.7387) mvmt=(0.0710,0.2100,0.2172) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8606,4.1714,-0.8889) mvmt=(0.0710,0.2100,0.2172) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7532,4.3757,-0.6975) mvmt=(0.1075,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.253,7.124,93.323) lpos=(-10.753,4.376,-0.697) lprev=(-10.861,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7532,4.3757,-0.6975) mvmt=(0.1075,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9282,0.2277,0.9277) mvmt=(0.1075,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0468,-0.0123,0.8227) mvmt=(0.1075,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0468,-2.2236,-0.5273) mvmt=(0.1075,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7532,4.3757,-0.6775) mvmt=(0.1075,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7532,4.3757,-0.6975) mvmt=(0.1075,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.253,7.124,93.323) lpos=(-10.753,4.376,-0.697) lprev=(-10.861,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7532,4.3757,-0.6975) mvmt=(0.1075,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9282,0.2277,0.9277) mvmt=(0.1075,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0468,-0.0123,0.8227) mvmt=(0.1075,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0468,-2.2236,-0.5273) mvmt=(0.1075,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7532,4.3757,-0.6775) mvmt=(0.1075,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7532,4.1714,-0.9089) mvmt=(0.1075,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.253,7.329,93.111) lpos=(-10.753,4.171,-0.909) lprev=(-10.861,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9282,0.0233,0.7163) mvmt=(0.1075,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0468,-0.2167,0.6113) mvmt=(0.1075,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0468,-2.4279,-0.7387) mvmt=(0.1075,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7532,4.1714,-0.8889) mvmt=(0.1075,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7532,4.1714,-1.6589) mvmt=(0.1075,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.253,7.329,92.361) lpos=(-10.753,4.171,-1.659) lprev=(-10.861,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9282,0.0233,-0.0337) mvmt=(0.1075,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0468,-0.2167,-0.1387) mvmt=(0.1075,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0468,-0.2167,-0.1387) out=(0.0468,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.7532,4.1714,-0.9089) mvmt=(0.1075,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.253,7.329,93.111) lpos=(-10.753,4.171,-0.909) lprev=(-10.861,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9282,0.0233,0.7163) mvmt=(0.1075,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0468,-0.2167,0.6113) mvmt=(0.1075,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0468,-2.4279,-0.7387) mvmt=(0.1075,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7532,4.1714,-0.8889) mvmt=(0.1075,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6521,4.3636,-0.7100) mvmt=(0.1011,0.1922,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.152,7.136,93.310) lpos=(-10.652,4.364,-0.710) lprev=(-10.753,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8271,0.2156,0.9152) mvmt=(0.1011,0.1922,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1479,-0.0244,0.8102) mvmt=(0.1011,0.1922,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1479,-2.2357,-0.5398) mvmt=(0.1011,0.1922,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6521,4.3636,-0.6900) mvmt=(0.1011,0.1922,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6521,4.3636,-0.7100) mvmt=(0.1011,0.1922,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.152,7.136,93.310) lpos=(-10.652,4.364,-0.710) lprev=(-10.753,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8271,0.2156,0.9152) mvmt=(0.1011,0.1922,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1479,-0.0244,0.8102) mvmt=(0.1011,0.1922,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1479,-2.2357,-0.5398) mvmt=(0.1011,0.1922,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6521,4.3636,-0.6900) mvmt=(0.1011,0.1922,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6521,4.1714,-0.9089) mvmt=(0.1011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.152,7.329,93.111) lpos=(-10.652,4.171,-0.909) lprev=(-10.753,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8271,0.0233,0.7163) mvmt=(0.1011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1479,-0.2167,0.6113) mvmt=(0.1011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1479,-2.4279,-0.7387) mvmt=(0.1011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6521,4.1714,-0.8889) mvmt=(0.1011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6521,4.1714,-1.6589) mvmt=(0.1011,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.152,7.329,92.361) lpos=(-10.652,4.171,-1.659) lprev=(-10.753,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8271,0.0233,-0.0337) mvmt=(0.1011,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1479,-0.2167,-0.1387) mvmt=(0.1011,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1479,-0.2167,-0.1387) out=(0.1479,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6521,4.1714,-0.9089) mvmt=(0.1011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.152,7.329,93.111) lpos=(-10.652,4.171,-0.909) lprev=(-10.753,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8271,0.0233,0.7163) mvmt=(0.1011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1479,-0.2167,0.6113) mvmt=(0.1011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1479,-2.4279,-0.7387) mvmt=(0.1011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6521,4.1714,-0.8889) mvmt=(0.1011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5474,4.3705,-0.7029) mvmt=(0.1047,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.047,7.130,93.317) lpos=(-10.547,4.370,-0.703) lprev=(-10.652,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7224,0.2224,0.9223) mvmt=(0.1047,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2526,-0.0176,0.8173) mvmt=(0.1047,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2526,-2.2289,-0.5327) mvmt=(0.1047,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3851,-2.9446,2.3216) mvmt=(-0.1421,0.1744,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5474,4.3705,-0.6829) mvmt=(0.1047,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5474,4.3705,-0.7029) mvmt=(0.1047,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.047,7.130,93.317) lpos=(-10.547,4.370,-0.703) lprev=(-10.652,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7224,0.2224,0.9223) mvmt=(0.1047,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2526,-0.0176,0.8173) mvmt=(0.1047,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2526,-2.2289,-0.5327) mvmt=(0.1047,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3851,-2.9446,2.3216) mvmt=(-0.1421,0.1744,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5474,4.3705,-0.6829) mvmt=(0.1047,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5474,4.1714,-0.9089) mvmt=(0.1047,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.047,7.329,93.111) lpos=(-10.547,4.171,-0.909) lprev=(-10.652,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7224,0.0233,0.7163) mvmt=(0.1047,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2526,-0.2167,0.6113) mvmt=(0.1047,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2526,-2.4279,-0.7387) mvmt=(0.1047,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5474,4.1714,-0.8889) mvmt=(0.1047,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5474,4.1714,-1.6589) mvmt=(0.1047,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.047,7.329,92.361) lpos=(-10.547,4.171,-1.659) lprev=(-10.652,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7224,0.0233,-0.0337) mvmt=(0.1047,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2526,-0.2167,-0.1387) mvmt=(0.1047,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2526,-0.2167,-0.1387) out=(0.2526,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.5474,4.1714,-0.9089) mvmt=(0.1047,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.047,7.329,93.111) lpos=(-10.547,4.171,-0.909) lprev=(-10.652,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7224,0.0233,0.7163) mvmt=(0.1047,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2526,-0.2167,0.6113) mvmt=(0.1047,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2526,-2.4279,-0.7387) mvmt=(0.1047,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5474,4.1714,-0.8889) mvmt=(0.1047,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4458,4.3647,-0.7089) mvmt=(0.1016,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.946,7.135,93.311) lpos=(-10.446,4.365,-0.709) lprev=(-10.547,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6208,0.2167,0.9163) mvmt=(0.1016,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3542,-0.0233,0.8113) mvmt=(0.1016,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3542,-2.2346,-0.5387) mvmt=(0.1016,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4303,-2.8534,2.3156) mvmt=(-0.1380,0.1693,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4458,4.3647,-0.6889) mvmt=(0.1016,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4458,4.3647,-0.7089) mvmt=(0.1016,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.946,7.135,93.311) lpos=(-10.446,4.365,-0.709) lprev=(-10.547,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6208,0.2167,0.9163) mvmt=(0.1016,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3542,-0.0233,0.8113) mvmt=(0.1016,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3542,-2.2346,-0.5387) mvmt=(0.1016,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4303,-2.8534,2.3156) mvmt=(-0.1380,0.1693,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4458,4.3647,-0.6889) mvmt=(0.1016,0.1933,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4458,4.1714,-0.9089) mvmt=(0.1016,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.946,7.329,93.111) lpos=(-10.446,4.171,-0.909) lprev=(-10.547,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6208,0.0233,0.7163) mvmt=(0.1016,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3542,-0.2167,0.6113) mvmt=(0.1016,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3542,-2.4279,-0.7387) mvmt=(0.1016,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4458,4.1714,-0.8889) mvmt=(0.1016,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4458,4.1714,-1.6589) mvmt=(0.1016,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.946,7.329,92.361) lpos=(-10.446,4.171,-1.659) lprev=(-10.547,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6208,0.0233,-0.0337) mvmt=(0.1016,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3542,-0.2167,-0.1387) mvmt=(0.1016,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3542,-0.2167,-0.1387) out=(0.3542,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4458,4.1714,-0.9089) mvmt=(0.1016,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.946,7.329,93.111) lpos=(-10.446,4.171,-0.909) lprev=(-10.547,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6208,0.0233,0.7163) mvmt=(0.1016,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3542,-0.2167,0.6113) mvmt=(0.1016,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3542,-2.4279,-0.7387) mvmt=(0.1016,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4458,4.1714,-0.8889) mvmt=(0.1016,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3446,4.3638,-0.7098) mvmt=(0.1012,0.1924,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3446,4.3638,-0.7098) mvmt=(0.1012,0.1924,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.845,7.136,93.310) lpos=(-10.345,4.364,-0.710) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5196,0.2158,0.9154) mvmt=(0.1012,0.1924,0.1991) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5196,0.2158,0.9154) out=(-0.5196,0.2158,1.2446) delta=(0.0000,0.0000,0.3292) deltaMag=0.3292 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4513 dpPos=0.2472 dpMove=-0.4243 iDist=0.5487 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3446,4.3638,-0.3806) mvmt=(0.1012,0.1924,0.5283) collide=False insertType=0 objState=0x303 winterp=0.4513 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.845,7.136,93.639) lpos=(-10.345,4.364,-0.381) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3446,4.3638,-0.3806) mvmt=(0.1012,0.1924,0.5283) collide=False insertType=0 objState=0x303 winterp=0.4513 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.3446,4.3638,-0.3806) mvmt=(0.1012,0.1924,0.5283) collide=False insertType=0 objState=0x303 winterp=0.4513 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5196,0.2158,1.2446) mvmt=(0.1012,0.1924,0.5283) collide=False insertType=0 objState=0x303 winterp=0.4513 return=-1 +[push-back-disp] site=dispatch center=(0.4554,-0.0242,1.1396) mvmt=(0.1012,0.1924,0.5283) collide=False insertType=0 objState=0x303 winterp=0.4513 return=-1 +[push-back-disp] site=dispatch center=(0.4554,-2.2355,-0.2104) mvmt=(0.1012,0.1924,0.5283) collide=False insertType=0 objState=0x303 winterp=0.4513 return=-1 +[push-back-disp] site=dispatch center=(0.4708,-2.7607,2.6439) mvmt=(-0.1373,0.1686,0.5283) collide=False insertType=0 objState=0x303 winterp=0.4513 return=-1 +[push-back-disp] site=dispatch center=(-10.3446,4.3638,-0.3606) mvmt=(0.1012,0.1924,0.5283) collide=False insertType=0 objState=0x303 winterp=0.4513 return=-1 +[push-back-disp] site=dispatch center=(-10.3446,4.3638,-0.3806) mvmt=(0.1012,0.1924,0.5283) collide=False insertType=1 objState=0x303 winterp=0.4513 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.845,7.136,93.639) lpos=(-10.345,4.364,-0.381) lprev=(-10.446,4.171,-0.909) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.845,7.136,93.310) lpos=(-10.345,4.364,-0.710) lprev=(-10.446,4.171,-0.909) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3446,4.1714,-0.9089) mvmt=(0.1012,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4513 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.845,7.329,93.111) lpos=(-10.345,4.171,-0.909) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5196,0.0233,0.7163) mvmt=(0.1012,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4513 return=-1 +[push-back-disp] site=dispatch center=(-10.3446,4.1714,-0.9089) mvmt=(0.1012,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.845,7.329,93.111) lpos=(-10.345,4.171,-0.909) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5196,0.0233,0.7163) mvmt=(0.1012,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5196,0.0233,0.7163) out=(-0.5196,0.0233,1.0521) delta=(0.0000,0.0000,0.3358) deltaMag=0.3358 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4403 dpPos=0.2425 dpMove=-0.4243 iDist=0.5597 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3446,4.1714,-0.5731) mvmt=(0.1012,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.845,7.329,93.447) lpos=(-10.345,4.171,-0.573) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3446,4.1714,-0.5731) mvmt=(0.1012,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5196,0.0233,1.0521) mvmt=(0.1012,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[push-back-disp] site=dispatch center=(0.4554,-0.2167,0.9472) mvmt=(0.1012,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[push-back-disp] site=dispatch center=(0.4554,-2.4279,-0.4029) mvmt=(0.1012,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[push-back-disp] site=dispatch center=(0.6478,-2.8362,2.4514) mvmt=(0.0397,0.0931,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[push-back-disp] site=dispatch center=(-10.3446,4.1714,-0.5531) mvmt=(0.1012,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[push-back-disp] site=dispatch center=(-10.3446,4.1714,-0.5731) mvmt=(0.1012,0.0000,0.3358) collide=False insertType=1 objState=0x303 winterp=0.4403 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.845,7.329,93.447) lpos=(-10.345,4.171,-0.573) lprev=(-10.446,4.171,-0.909) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4458,4.3863,-0.5569) mvmt=(0.0000,0.2149,0.3520) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4458,4.3863,-0.5569) mvmt=(0.0000,0.2149,0.3520) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.946,7.114,93.463) lpos=(-10.446,4.386,-0.557) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4458,4.3863,-0.5569) mvmt=(0.0000,0.2149,0.3520) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6208,0.2383,1.0683) mvmt=(0.0000,0.2149,0.3520) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3542,-0.0017,0.9633) mvmt=(0.0000,0.2149,0.3520) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3542,-2.2130,-0.3867) mvmt=(-0.0000,0.2149,0.3520) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4104,-2.8449,2.4676) mvmt=(-0.1977,0.0843,0.3520) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4458,4.3863,-0.5369) mvmt=(0.0000,0.2149,0.3520) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.946,7.114,93.463) lpos=(-10.446,4.386,-0.557) lprev=(-10.446,4.171,-0.909) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3464,4.3671,-0.5761) mvmt=(0.0994,0.1957,0.3328) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3464,4.3671,-0.5761) mvmt=(0.0994,0.1957,0.3328) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.846,7.133,93.444) lpos=(-10.346,4.367,-0.576) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3464,4.3671,-0.5761) mvmt=(0.0994,0.1957,0.3328) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5214,0.2191,1.0491) mvmt=(0.0994,0.1957,0.3328) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4536,-0.0209,0.9441) mvmt=(0.0994,0.1957,0.3328) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4536,-2.2322,-0.4059) mvmt=(0.0994,0.1957,0.3328) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4671,-2.7610,2.4484) mvmt=(-0.1410,0.1682,0.3328) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3464,4.3671,-0.5561) mvmt=(0.0994,0.1957,0.3328) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.846,7.133,93.444) lpos=(-10.346,4.367,-0.576) lprev=(-10.446,4.171,-0.909) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3464,4.1714,-0.9089) mvmt=(0.0994,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.846,7.329,93.111) lpos=(-10.346,4.171,-0.909) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5214,0.0233,0.7163) mvmt=(0.0994,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3464,4.1714,-0.9089) mvmt=(0.0994,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.846,7.329,93.111) lpos=(-10.346,4.171,-0.909) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5214,0.0233,0.7163) mvmt=(0.0994,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5214,0.0233,0.7163) out=(-0.5214,0.0233,1.0521) delta=(0.0000,0.0000,0.3358) deltaMag=0.3358 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4403 dpPos=0.2425 dpMove=-0.4243 iDist=0.5597 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3464,4.1714,-0.5731) mvmt=(0.0994,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.846,7.329,93.447) lpos=(-10.346,4.171,-0.573) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3464,4.1714,-0.5731) mvmt=(0.0994,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5214,0.0233,1.0521) mvmt=(0.0994,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[push-back-disp] site=dispatch center=(0.4536,-0.2167,0.9472) mvmt=(0.0994,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[push-back-disp] site=dispatch center=(0.4536,-2.4279,-0.4029) mvmt=(0.0994,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[push-back-disp] site=dispatch center=(0.6472,-2.8378,2.4514) mvmt=(0.0390,0.0915,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[push-back-disp] site=dispatch center=(-10.3464,4.1714,-0.5531) mvmt=(0.0994,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[push-back-disp] site=dispatch center=(-10.3464,4.1714,-0.5731) mvmt=(0.0994,0.0000,0.3358) collide=False insertType=1 objState=0x303 winterp=0.4403 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.846,7.329,93.447) lpos=(-10.346,4.171,-0.573) lprev=(-10.446,4.171,-0.909) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4458,4.3650,-0.5782) mvmt=(0.0000,0.1936,0.3307) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4458,4.3650,-0.5782) mvmt=(0.0000,0.1936,0.3307) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.946,7.135,93.442) lpos=(-10.446,4.365,-0.578) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4458,4.3650,-0.5782) mvmt=(0.0000,0.1936,0.3307) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6208,0.2169,1.0470) mvmt=(0.0000,0.1936,0.3307) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3542,-0.0231,0.9420) mvmt=(0.0000,0.1936,0.3307) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3542,-2.2343,-0.4081) mvmt=(-0.0000,0.1936,0.3307) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4300,-2.8533,2.4463) mvmt=(-0.1781,0.0760,0.3307) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4458,4.3650,-0.5583) mvmt=(0.0000,0.1936,0.3307) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.946,7.135,93.442) lpos=(-10.446,4.365,-0.578) lprev=(-10.446,4.171,-0.909) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3417,4.3762,-0.5670) mvmt=(0.1040,0.2048,0.3419) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3417,4.3762,-0.5670) mvmt=(0.1040,0.2048,0.3419) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.842,7.124,93.453) lpos=(-10.342,4.376,-0.567) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3417,4.3762,-0.5670) mvmt=(0.1040,0.2048,0.3419) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5167,0.2282,1.0582) mvmt=(0.1040,0.2048,0.3419) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4583,-0.0118,0.9532) mvmt=(0.1040,0.2048,0.3419) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4583,-2.2231,-0.3968) mvmt=(0.1040,0.2048,0.3419) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4605,-2.7532,2.4575) mvmt=(-0.1476,0.1761,0.3419) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3417,4.3762,-0.5470) mvmt=(0.1040,0.2048,0.3419) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.842,7.124,93.453) lpos=(-10.342,4.376,-0.567) lprev=(-10.446,4.171,-0.909) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3417,4.1714,-0.9089) mvmt=(0.1040,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.842,7.329,93.111) lpos=(-10.342,4.171,-0.909) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5167,0.0233,0.7163) mvmt=(0.1040,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3417,4.1714,-0.9089) mvmt=(0.1040,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.842,7.329,93.111) lpos=(-10.342,4.171,-0.909) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5167,0.0233,0.7163) mvmt=(0.1040,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5167,0.0233,0.7163) out=(-0.5167,0.0233,1.0521) delta=(0.0000,0.0000,0.3358) deltaMag=0.3358 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4403 dpPos=0.2425 dpMove=-0.4243 iDist=0.5597 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3417,4.1714,-0.5731) mvmt=(0.1040,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.842,7.329,93.447) lpos=(-10.342,4.171,-0.573) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3417,4.1714,-0.5731) mvmt=(0.1040,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5167,0.0233,1.0521) mvmt=(0.1040,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[push-back-disp] site=dispatch center=(0.4583,-0.2167,0.9472) mvmt=(0.1040,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[push-back-disp] site=dispatch center=(0.4583,-2.4279,-0.4029) mvmt=(0.1040,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[push-back-disp] site=dispatch center=(0.6490,-2.8335,2.4514) mvmt=(0.0408,0.0957,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[push-back-disp] site=dispatch center=(-10.3417,4.1714,-0.5531) mvmt=(0.1040,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[push-back-disp] site=dispatch center=(-10.3417,4.1714,-0.5731) mvmt=(0.1040,0.0000,0.3358) collide=False insertType=1 objState=0x303 winterp=0.4403 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.842,7.329,93.447) lpos=(-10.342,4.171,-0.573) lprev=(-10.446,4.171,-0.909) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4458,4.3678,-0.5754) mvmt=(0.0000,0.1965,0.3335) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4458,4.3678,-0.5754) mvmt=(0.0000,0.1965,0.3335) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.946,7.132,93.445) lpos=(-10.446,4.368,-0.575) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4458,4.3678,-0.5754) mvmt=(0.0000,0.1965,0.3335) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6208,0.2198,1.0498) mvmt=(0.0000,0.1965,0.3335) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3542,-0.0202,0.9448) mvmt=(0.0000,0.1965,0.3335) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3542,-2.2315,-0.4052) mvmt=(-0.0000,0.1965,0.3335) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4274,-2.8522,2.4491) mvmt=(-0.1807,0.0771,0.3335) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4458,4.3678,-0.5554) mvmt=(0.0000,0.1965,0.3335) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.946,7.132,93.445) lpos=(-10.446,4.368,-0.575) lprev=(-10.446,4.171,-0.909) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3436,4.3725,-0.5707) mvmt=(0.1022,0.2011,0.3382) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3436,4.3725,-0.5707) mvmt=(0.1022,0.2011,0.3382) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.844,7.127,93.449) lpos=(-10.344,4.373,-0.571) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3436,4.3725,-0.5707) mvmt=(0.1022,0.2011,0.3382) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5186,0.2245,1.0545) mvmt=(0.1022,0.2011,0.3382) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4564,-0.0155,0.9495) mvmt=(0.1022,0.2011,0.3382) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4564,-2.2268,-0.4005) mvmt=(0.1022,0.2011,0.3382) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4632,-2.7563,2.4538) mvmt=(-0.1449,0.1729,0.3382) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3436,4.3725,-0.5507) mvmt=(0.1022,0.2011,0.3382) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.844,7.127,93.449) lpos=(-10.344,4.373,-0.571) lprev=(-10.446,4.171,-0.909) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3436,4.1714,-0.9089) mvmt=(0.1022,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.844,7.329,93.111) lpos=(-10.344,4.171,-0.909) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5186,0.0233,0.7163) mvmt=(0.1022,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3436,4.1714,-0.9089) mvmt=(0.1022,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.844,7.329,93.111) lpos=(-10.344,4.171,-0.909) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5186,0.0233,0.7163) mvmt=(0.1022,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5186,0.0233,0.7163) out=(-0.5186,0.0233,1.0521) delta=(0.0000,0.0000,0.3358) deltaMag=0.3358 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4403 dpPos=0.2425 dpMove=-0.4243 iDist=0.5597 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3436,4.1714,-0.5731) mvmt=(0.1022,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.844,7.329,93.447) lpos=(-10.344,4.171,-0.573) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3436,4.1714,-0.5731) mvmt=(0.1022,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5186,0.0233,1.0521) mvmt=(0.1022,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[push-back-disp] site=dispatch center=(0.4564,-0.2167,0.9472) mvmt=(0.1022,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[push-back-disp] site=dispatch center=(0.4564,-2.4279,-0.4029) mvmt=(0.1022,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[push-back-disp] site=dispatch center=(0.6482,-2.8353,2.4514) mvmt=(0.0401,0.0940,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[push-back-disp] site=dispatch center=(-10.3436,4.1714,-0.5531) mvmt=(0.1022,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[push-back-disp] site=dispatch center=(-10.3436,4.1714,-0.5731) mvmt=(0.1022,0.0000,0.3358) collide=False insertType=1 objState=0x303 winterp=0.4403 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.844,7.329,93.447) lpos=(-10.344,4.171,-0.573) lprev=(-10.446,4.171,-0.909) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4458,4.3655,-0.5777) mvmt=(0.0000,0.1941,0.3312) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4458,4.3655,-0.5777) mvmt=(0.0000,0.1941,0.3312) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.946,7.134,93.442) lpos=(-10.446,4.366,-0.578) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4458,4.3655,-0.5777) mvmt=(0.0000,0.1941,0.3312) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6208,0.2175,1.0475) mvmt=(0.0000,0.1941,0.3312) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3542,-0.0225,0.9425) mvmt=(0.0000,0.1941,0.3312) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3542,-2.2338,-0.4075) mvmt=(-0.0000,0.1941,0.3312) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4296,-2.8531,2.4468) mvmt=(-0.1786,0.0762,0.3312) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4458,4.3655,-0.5577) mvmt=(0.0000,0.1941,0.3312) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.946,7.134,93.442) lpos=(-10.446,4.366,-0.578) lprev=(-10.446,4.171,-0.909) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollDown Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5435,4.3903,-0.5530) mvmt=(-0.0977,0.2189,0.3559) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.043,7.110,93.467) lpos=(-10.543,4.390,-0.553) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5435,4.3903,-0.5530) mvmt=(-0.0977,0.2189,0.3559) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7185,0.2422,1.0722) mvmt=(-0.0977,0.2189,0.3559) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2565,0.0022,0.9672) mvmt=(-0.0977,0.2189,0.3559) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2565,-2.2090,-0.3828) mvmt=(-0.0977,0.2189,0.3559) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3685,-2.9332,2.4715) mvmt=(-0.2397,-0.0040,0.3559) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5435,4.3903,-0.5330) mvmt=(-0.0977,0.2189,0.3559) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5435,4.3903,-0.5530) mvmt=(-0.0977,0.2189,0.3559) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.043,7.110,93.467) lpos=(-10.543,4.390,-0.553) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5435,4.3903,-0.5530) mvmt=(-0.0977,0.2189,0.3559) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7185,0.2422,1.0722) mvmt=(-0.0977,0.2189,0.3559) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2565,0.0022,0.9672) mvmt=(-0.0977,0.2189,0.3559) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2565,-2.2090,-0.3828) mvmt=(-0.0977,0.2189,0.3559) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3685,-2.9332,2.4715) mvmt=(-0.2397,-0.0040,0.3559) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5435,4.3903,-0.5330) mvmt=(-0.0977,0.2189,0.3559) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5435,4.1714,-0.9089) mvmt=(-0.0977,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.043,7.329,93.111) lpos=(-10.543,4.171,-0.909) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7185,0.0233,0.7163) mvmt=(-0.0977,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2565,-0.2167,0.6113) mvmt=(-0.0977,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2565,-2.4279,-0.7387) mvmt=(-0.0977,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5435,4.1714,-0.8889) mvmt=(-0.0977,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5435,4.1714,-1.6589) mvmt=(-0.0977,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.043,7.329,92.361) lpos=(-10.543,4.171,-1.659) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7185,0.0233,-0.0337) mvmt=(-0.0977,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2565,-0.2167,-0.1387) mvmt=(-0.0977,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2565,-0.2167,-0.1387) out=(0.2565,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.5435,4.1714,-0.9089) mvmt=(-0.0977,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.043,7.329,93.111) lpos=(-10.543,4.171,-0.909) lprev=(-10.446,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7185,0.0233,0.7163) mvmt=(-0.0977,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2565,-0.2167,0.6113) mvmt=(-0.0977,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2565,-2.4279,-0.7387) mvmt=(-0.0977,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5435,4.1714,-0.8889) mvmt=(-0.0977,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6401,4.3806,-0.6924) mvmt=(-0.0966,0.2092,0.2165) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.140,7.119,93.328) lpos=(-10.640,4.381,-0.692) lprev=(-10.543,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6401,4.3806,-0.6924) mvmt=(-0.0966,0.2092,0.2165) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8151,0.2326,0.9328) mvmt=(-0.0966,0.2092,0.2165) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1599,-0.0074,0.8278) mvmt=(-0.0966,0.2092,0.2165) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1599,-2.2187,-0.5222) mvmt=(-0.0966,0.2092,0.2165) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3394,-3.0259,2.3321) mvmt=(-0.2304,-0.0068,0.2165) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6401,4.3806,-0.6724) mvmt=(-0.0966,0.2092,0.2165) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6401,4.3806,-0.6924) mvmt=(-0.0966,0.2092,0.2165) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.140,7.119,93.328) lpos=(-10.640,4.381,-0.692) lprev=(-10.543,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6401,4.3806,-0.6924) mvmt=(-0.0966,0.2092,0.2165) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8151,0.2326,0.9328) mvmt=(-0.0966,0.2092,0.2165) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1599,-0.0074,0.8278) mvmt=(-0.0966,0.2092,0.2165) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1599,-2.2187,-0.5222) mvmt=(-0.0966,0.2092,0.2165) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3394,-3.0259,2.3321) mvmt=(-0.2304,-0.0068,0.2165) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6401,4.3806,-0.6724) mvmt=(-0.0966,0.2092,0.2165) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6401,4.1714,-0.9089) mvmt=(-0.0966,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.140,7.329,93.111) lpos=(-10.640,4.171,-0.909) lprev=(-10.543,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8151,0.0233,0.7163) mvmt=(-0.0966,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1599,-0.2167,0.6113) mvmt=(-0.0966,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1599,-2.4279,-0.7387) mvmt=(-0.0966,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6401,4.1714,-0.8889) mvmt=(-0.0966,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6401,4.1714,-1.6589) mvmt=(-0.0966,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.140,7.329,92.361) lpos=(-10.640,4.171,-1.659) lprev=(-10.543,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8151,0.0233,-0.0337) mvmt=(-0.0966,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1599,-0.2167,-0.1387) mvmt=(-0.0966,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1599,-0.2167,-0.1387) out=(0.1599,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6401,4.1714,-0.9089) mvmt=(-0.0966,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.140,7.329,93.111) lpos=(-10.640,4.171,-0.909) lprev=(-10.543,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8151,0.0233,0.7163) mvmt=(-0.0966,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1599,-0.2167,0.6113) mvmt=(-0.0966,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1599,-2.4279,-0.7387) mvmt=(-0.0966,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6401,4.1714,-0.8889) mvmt=(-0.0966,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7364,4.3800,-0.6931) mvmt=(-0.0963,0.2086,0.2158) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.236,7.120,93.327) lpos=(-10.736,4.380,-0.693) lprev=(-10.640,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7364,4.3800,-0.6931) mvmt=(-0.0963,0.2086,0.2158) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9114,0.2319,0.9321) mvmt=(-0.0963,0.2086,0.2158) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0636,-0.0081,0.8271) mvmt=(-0.0963,0.2086,0.2158) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0636,-2.2193,-0.5229) mvmt=(-0.0963,0.2086,0.2158) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3022,-3.1147,2.3314) mvmt=(-0.2297,-0.0068,0.2158) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7364,4.3800,-0.6731) mvmt=(-0.0963,0.2086,0.2158) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7364,4.3800,-0.6931) mvmt=(-0.0963,0.2086,0.2158) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.236,7.120,93.327) lpos=(-10.736,4.380,-0.693) lprev=(-10.640,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7364,4.3800,-0.6931) mvmt=(-0.0963,0.2086,0.2158) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9114,0.2319,0.9321) mvmt=(-0.0963,0.2086,0.2158) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0636,-0.0081,0.8271) mvmt=(-0.0963,0.2086,0.2158) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0636,-2.2193,-0.5229) mvmt=(-0.0963,0.2086,0.2158) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3022,-3.1147,2.3314) mvmt=(-0.2297,-0.0068,0.2158) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7364,4.3800,-0.6731) mvmt=(-0.0963,0.2086,0.2158) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7364,4.1714,-0.9089) mvmt=(-0.0963,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.236,7.329,93.111) lpos=(-10.736,4.171,-0.909) lprev=(-10.640,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9114,0.0233,0.7163) mvmt=(-0.0963,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0636,-0.2167,0.6113) mvmt=(-0.0963,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0636,-2.4279,-0.7387) mvmt=(-0.0963,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7364,4.1714,-0.8889) mvmt=(-0.0963,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7364,4.1714,-1.6589) mvmt=(-0.0963,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.236,7.329,92.361) lpos=(-10.736,4.171,-1.659) lprev=(-10.640,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9114,0.0233,-0.0337) mvmt=(-0.0963,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0636,-0.2167,-0.1387) mvmt=(-0.0963,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0636,-0.2167,-0.1387) out=(0.0636,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.7364,4.1714,-0.9089) mvmt=(-0.0963,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.236,7.329,93.111) lpos=(-10.736,4.171,-0.909) lprev=(-10.640,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9114,0.0233,0.7163) mvmt=(-0.0963,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0636,-0.2167,0.6113) mvmt=(-0.0963,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0636,-2.4279,-0.7387) mvmt=(-0.0963,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7364,4.1714,-0.8889) mvmt=(-0.0963,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8231,4.3591,-0.7147) mvmt=(-0.0867,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.323,7.141,93.305) lpos=(-10.823,4.359,-0.715) lprev=(-10.736,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9981,0.2110,0.9105) mvmt=(-0.0867,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0231,-0.0290,0.8055) mvmt=(-0.0867,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0231,-2.2402,-0.5445) mvmt=(-0.0867,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8231,4.3591,-0.6947) mvmt=(-0.0867,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8231,4.3591,-0.7147) mvmt=(-0.0867,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.323,7.141,93.305) lpos=(-10.823,4.359,-0.715) lprev=(-10.736,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9981,0.2110,0.9105) mvmt=(-0.0867,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0231,-0.0290,0.8055) mvmt=(-0.0867,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0231,-2.2402,-0.5445) mvmt=(-0.0867,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8231,4.3591,-0.6947) mvmt=(-0.0867,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8231,4.1714,-0.9089) mvmt=(-0.0867,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.323,7.329,93.111) lpos=(-10.823,4.171,-0.909) lprev=(-10.736,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9981,0.0233,0.7163) mvmt=(-0.0867,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0231,-0.2167,0.6113) mvmt=(-0.0867,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0231,-2.4279,-0.7387) mvmt=(-0.0867,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8231,4.1714,-0.8889) mvmt=(-0.0867,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8231,4.1714,-1.6589) mvmt=(-0.0867,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.323,7.329,92.361) lpos=(-10.823,4.171,-1.659) lprev=(-10.736,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9981,0.0233,-0.0337) mvmt=(-0.0867,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0231,-0.2167,-0.1387) mvmt=(-0.0867,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0231,-0.2167,-0.1387) out=(-0.0231,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.8231,4.1714,-0.9089) mvmt=(-0.0867,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.323,7.329,93.111) lpos=(-10.823,4.171,-0.909) lprev=(-10.736,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9981,0.0233,0.7163) mvmt=(-0.0867,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0231,-0.2167,0.6113) mvmt=(-0.0867,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0231,-2.4279,-0.7387) mvmt=(-0.0867,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8231,4.1714,-0.8889) mvmt=(-0.0867,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9241,4.3900,-0.6827) mvmt=(-0.1010,0.2186,0.2262) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.424,7.110,93.337) lpos=(-10.924,4.390,-0.683) lprev=(-10.823,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9241,4.3900,-0.6827) mvmt=(-0.1010,0.2186,0.2262) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0991,0.2420,0.9425) mvmt=(-0.1010,0.2186,0.2262) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1241,0.0020,0.8375) mvmt=(-0.1010,0.2186,0.2262) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1241,-2.2093,-0.5125) mvmt=(-0.1010,0.2186,0.2262) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9241,4.3900,-0.6627) mvmt=(-0.1010,0.2186,0.2262) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9241,4.3900,-0.6827) mvmt=(-0.1010,0.2186,0.2262) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.424,7.110,93.337) lpos=(-10.924,4.390,-0.683) lprev=(-10.823,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9241,4.3900,-0.6827) mvmt=(-0.1010,0.2186,0.2262) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0991,0.2420,0.9425) mvmt=(-0.1010,0.2186,0.2262) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1241,0.0020,0.8375) mvmt=(-0.1010,0.2186,0.2262) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1241,-2.2093,-0.5125) mvmt=(-0.1010,0.2186,0.2262) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9241,4.3900,-0.6627) mvmt=(-0.1010,0.2186,0.2262) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9241,4.1714,-0.9089) mvmt=(-0.1010,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.424,7.329,93.111) lpos=(-10.924,4.171,-0.909) lprev=(-10.823,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0991,0.0233,0.7163) mvmt=(-0.1010,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1241,-0.2167,0.6113) mvmt=(-0.1010,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1241,-2.4279,-0.7387) mvmt=(-0.1010,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9241,4.1714,-0.8889) mvmt=(-0.1010,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9241,4.1714,-1.6589) mvmt=(-0.1010,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.424,7.329,92.361) lpos=(-10.924,4.171,-1.659) lprev=(-10.823,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0991,0.0233,-0.0337) mvmt=(-0.1010,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1241,-0.2167,-0.1387) mvmt=(-0.1010,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1241,-0.2167,-0.1387) out=(-0.1241,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.9241,4.1714,-0.9089) mvmt=(-0.1010,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.424,7.329,93.111) lpos=(-10.924,4.171,-0.909) lprev=(-10.823,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0991,0.0233,0.7163) mvmt=(-0.1010,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1241,-0.2167,0.6113) mvmt=(-0.1010,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1241,-2.4279,-0.7387) mvmt=(-0.1010,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9241,4.1714,-0.8889) mvmt=(-0.1010,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0202,4.3794,-0.6937) mvmt=(-0.0961,0.2080,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.520,7.121,93.326) lpos=(-11.020,4.379,-0.694) lprev=(-10.924,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0202,4.3794,-0.6937) mvmt=(-0.0961,0.2080,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1952,0.2314,0.9315) mvmt=(-0.0961,0.2080,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2202,-0.0086,0.8265) mvmt=(-0.0961,0.2080,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2202,-2.2199,-0.5235) mvmt=(-0.0961,0.2080,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0202,4.3794,-0.6737) mvmt=(-0.0961,0.2080,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0202,4.3794,-0.6937) mvmt=(-0.0961,0.2080,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.520,7.121,93.326) lpos=(-11.020,4.379,-0.694) lprev=(-10.924,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0202,4.3794,-0.6937) mvmt=(-0.0961,0.2080,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1952,0.2314,0.9315) mvmt=(-0.0961,0.2080,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2202,-0.0086,0.8265) mvmt=(-0.0961,0.2080,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2202,-2.2199,-0.5235) mvmt=(-0.0961,0.2080,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0202,4.3794,-0.6737) mvmt=(-0.0961,0.2080,0.2152) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0202,4.1714,-0.9089) mvmt=(-0.0961,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.520,7.329,93.111) lpos=(-11.020,4.171,-0.909) lprev=(-10.924,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1952,0.0233,0.7163) mvmt=(-0.0961,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2202,-0.2167,0.6113) mvmt=(-0.0961,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2202,-2.4279,-0.7387) mvmt=(-0.0961,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0202,4.1714,-0.8889) mvmt=(-0.0961,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0202,4.1714,-1.6589) mvmt=(-0.0961,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.520,7.329,92.361) lpos=(-11.020,4.171,-1.659) lprev=(-10.924,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1952,0.0233,-0.0337) mvmt=(-0.0961,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2202,-0.2167,-0.1387) mvmt=(-0.0961,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2202,-0.2167,-0.1387) out=(-0.2202,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0202,4.1714,-0.9089) mvmt=(-0.0961,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.520,7.329,93.111) lpos=(-11.020,4.171,-0.909) lprev=(-10.924,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1952,0.0233,0.7163) mvmt=(-0.0961,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2202,-0.2167,0.6113) mvmt=(-0.0961,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2202,-2.4279,-0.7387) mvmt=(-0.0961,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0202,4.1714,-0.8889) mvmt=(-0.0961,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1155,4.3778,-0.6954) mvmt=(-0.0953,0.2064,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.122,93.325) lpos=(-11.116,4.378,-0.695) lprev=(-11.020,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1155,4.3778,-0.6954) mvmt=(-0.0953,0.2064,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2905,0.2297,0.9298) mvmt=(-0.0953,0.2064,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-0.0103,0.8249) mvmt=(-0.0953,0.2064,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-2.2215,-0.5252) mvmt=(-0.0953,0.2064,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3778,-0.6754) mvmt=(-0.0953,0.2064,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3778,-0.6954) mvmt=(-0.0953,0.2064,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.122,93.325) lpos=(-11.116,4.378,-0.695) lprev=(-11.020,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1155,4.3778,-0.6954) mvmt=(-0.0953,0.2064,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2905,0.2297,0.9298) mvmt=(-0.0953,0.2064,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-0.0103,0.8249) mvmt=(-0.0953,0.2064,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-2.2215,-0.5252) mvmt=(-0.0953,0.2064,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3778,-0.6754) mvmt=(-0.0953,0.2064,0.2135) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.1714,-0.9089) mvmt=(-0.0953,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.329,93.111) lpos=(-11.116,4.171,-0.909) lprev=(-11.020,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2905,0.0233,0.7163) mvmt=(-0.0953,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-0.2167,0.6113) mvmt=(-0.0953,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-2.4279,-0.7387) mvmt=(-0.0953,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.1714,-0.8889) mvmt=(-0.0953,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.1714,-1.6589) mvmt=(-0.0953,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.329,92.361) lpos=(-11.116,4.171,-1.659) lprev=(-11.020,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2905,0.0233,-0.0337) mvmt=(-0.0953,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-0.2167,-0.1387) mvmt=(-0.0953,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3155,-0.2167,-0.1387) out=(-0.3155,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.1155,4.1714,-0.9089) mvmt=(-0.0953,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.329,93.111) lpos=(-11.116,4.171,-0.909) lprev=(-11.020,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2905,0.0233,0.7163) mvmt=(-0.0953,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-0.2167,0.6113) mvmt=(-0.0953,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-2.4279,-0.7387) mvmt=(-0.0953,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.1714,-0.8889) mvmt=(-0.0953,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] ScrollUp Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2131,4.3826,-0.6904) mvmt=(-0.0976,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2131,4.3826,-0.6904) mvmt=(-0.0976,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.713,7.117,93.330) lpos=(-11.213,4.383,-0.690) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2131,4.3826,-0.6904) mvmt=(-0.0976,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3881,0.2346,0.9348) mvmt=(-0.0976,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4131,-0.0054,0.8298) mvmt=(-0.0976,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4131,-2.2167,-0.5202) mvmt=(-0.0976,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2131,4.3826,-0.6704) mvmt=(-0.0976,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.713,7.117,93.330) lpos=(-11.213,4.383,-0.690) lprev=(-11.116,4.171,-0.909) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1155,4.3826,-0.6904) mvmt=(0.0000,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.117,93.330) lpos=(-11.116,4.383,-0.690) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1155,4.3826,-0.6904) mvmt=(0.0000,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2905,0.2346,0.9348) mvmt=(0.0000,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-0.0054,0.8298) mvmt=(0.0000,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-2.2167,-0.5202) mvmt=(-0.0000,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3826,-0.6704) mvmt=(0.0000,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3826,-0.6904) mvmt=(0.0000,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.117,93.330) lpos=(-11.116,4.383,-0.690) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1155,4.3826,-0.6904) mvmt=(0.0000,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2905,0.2346,0.9348) mvmt=(0.0000,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-0.0054,0.8298) mvmt=(0.0000,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-2.2167,-0.5202) mvmt=(-0.0000,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3826,-0.6704) mvmt=(0.0000,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2114,4.3789,-0.6942) mvmt=(-0.0958,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2114,4.3789,-0.6942) mvmt=(-0.0958,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.711,7.121,93.326) lpos=(-11.211,4.379,-0.694) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2114,4.3789,-0.6942) mvmt=(-0.0958,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3864,0.2308,0.9310) mvmt=(-0.0958,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4114,-0.0092,0.8260) mvmt=(-0.0958,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4114,-2.2204,-0.5240) mvmt=(-0.0958,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2114,4.3789,-0.6742) mvmt=(-0.0958,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.711,7.121,93.326) lpos=(-11.211,4.379,-0.694) lprev=(-11.116,4.171,-0.909) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1155,4.3789,-0.6942) mvmt=(0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.121,93.326) lpos=(-11.116,4.379,-0.694) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1155,4.3789,-0.6942) mvmt=(0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2905,0.2308,0.9310) mvmt=(0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-0.0092,0.8260) mvmt=(0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-2.2204,-0.5240) mvmt=(-0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3789,-0.6742) mvmt=(0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3789,-0.6942) mvmt=(0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.121,93.326) lpos=(-11.116,4.379,-0.694) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1155,4.3789,-0.6942) mvmt=(0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2905,0.2308,0.9310) mvmt=(0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-0.0092,0.8260) mvmt=(0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-2.2204,-0.5240) mvmt=(-0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3789,-0.6742) mvmt=(0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2116,4.3793,-0.6938) mvmt=(-0.0960,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2116,4.3793,-0.6938) mvmt=(-0.0960,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.712,7.121,93.326) lpos=(-11.212,4.379,-0.694) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2116,4.3793,-0.6938) mvmt=(-0.0960,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3866,0.2313,0.9314) mvmt=(-0.0960,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4116,-0.0087,0.8264) mvmt=(-0.0960,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4116,-2.2200,-0.5236) mvmt=(-0.0960,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2116,4.3793,-0.6738) mvmt=(-0.0960,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.712,7.121,93.326) lpos=(-11.212,4.379,-0.694) lprev=(-11.116,4.171,-0.909) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1155,4.3793,-0.6938) mvmt=(0.0000,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.121,93.326) lpos=(-11.116,4.379,-0.694) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1155,4.3793,-0.6938) mvmt=(0.0000,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2905,0.2313,0.9314) mvmt=(0.0000,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-0.0087,0.8264) mvmt=(0.0000,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-2.2200,-0.5236) mvmt=(-0.0000,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3793,-0.6738) mvmt=(0.0000,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3793,-0.6938) mvmt=(0.0000,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.121,93.326) lpos=(-11.116,4.379,-0.694) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1155,4.3793,-0.6938) mvmt=(0.0000,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2905,0.2313,0.9314) mvmt=(0.0000,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-0.0087,0.8264) mvmt=(0.0000,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-2.2200,-0.5236) mvmt=(-0.0000,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3793,-0.6738) mvmt=(0.0000,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2023,4.3592,-0.7146) mvmt=(-0.0867,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2023,4.3592,-0.7146) mvmt=(-0.0867,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.702,7.141,93.305) lpos=(-11.202,4.359,-0.715) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3773,0.2112,0.9106) mvmt=(-0.0867,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4023,-0.0288,0.8056) mvmt=(-0.0867,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4023,-2.2401,-0.5444) mvmt=(-0.0867,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2023,4.3592,-0.6946) mvmt=(-0.0867,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.702,7.141,93.305) lpos=(-11.202,4.359,-0.715) lprev=(-11.116,4.171,-0.909) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1155,4.3592,-0.7146) mvmt=(0.0000,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.141,93.305) lpos=(-11.116,4.359,-0.715) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2905,0.2112,0.9106) mvmt=(0.0000,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-0.0288,0.8056) mvmt=(0.0000,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-2.2401,-0.5444) mvmt=(-0.0000,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3592,-0.6946) mvmt=(0.0000,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3592,-0.7146) mvmt=(0.0000,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.141,93.305) lpos=(-11.116,4.359,-0.715) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2905,0.2112,0.9106) mvmt=(0.0000,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-0.0288,0.8056) mvmt=(0.0000,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-2.2401,-0.5444) mvmt=(-0.0000,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3592,-0.6946) mvmt=(0.0000,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2075,4.3704,-0.7030) mvmt=(-0.0919,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2075,4.3704,-0.7030) mvmt=(-0.0919,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.707,7.130,93.317) lpos=(-11.207,4.370,-0.703) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3825,0.2224,0.9222) mvmt=(-0.0919,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4075,-0.0176,0.8172) mvmt=(-0.0919,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4075,-2.2289,-0.5328) mvmt=(-0.0919,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2075,4.3704,-0.6830) mvmt=(-0.0919,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.707,7.130,93.317) lpos=(-11.207,4.370,-0.703) lprev=(-11.116,4.171,-0.909) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1155,4.3704,-0.7030) mvmt=(0.0000,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.130,93.317) lpos=(-11.116,4.370,-0.703) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2905,0.2224,0.9222) mvmt=(0.0000,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-0.0176,0.8172) mvmt=(0.0000,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-2.2289,-0.5328) mvmt=(-0.0000,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3704,-0.6830) mvmt=(0.0000,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3704,-0.7030) mvmt=(0.0000,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.130,93.317) lpos=(-11.116,4.370,-0.703) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2905,0.2224,0.9222) mvmt=(0.0000,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-0.0176,0.8172) mvmt=(0.0000,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-2.2289,-0.5328) mvmt=(-0.0000,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3704,-0.6830) mvmt=(0.0000,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2038,4.3624,-0.7113) mvmt=(-0.0882,0.1910,0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2038,4.3624,-0.7113) mvmt=(-0.0882,0.1910,0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.704,7.138,93.309) lpos=(-11.204,4.362,-0.711) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3788,0.2143,0.9139) mvmt=(-0.0882,0.1910,0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4038,-0.0257,0.8089) mvmt=(-0.0882,0.1910,0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4038,-2.2369,-0.5411) mvmt=(-0.0882,0.1910,0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2038,4.3624,-0.6913) mvmt=(-0.0882,0.1910,0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.704,7.138,93.309) lpos=(-11.204,4.362,-0.711) lprev=(-11.116,4.171,-0.909) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1155,4.3624,-0.7113) mvmt=(0.0000,0.1910,0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.138,93.309) lpos=(-11.116,4.362,-0.711) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2905,0.2143,0.9139) mvmt=(0.0000,0.1910,0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-0.0257,0.8089) mvmt=(0.0000,0.1910,0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-2.2369,-0.5411) mvmt=(-0.0000,0.1910,0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3624,-0.6913) mvmt=(0.0000,0.1910,0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3624,-0.7113) mvmt=(0.0000,0.1910,0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.138,93.309) lpos=(-11.116,4.362,-0.711) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2905,0.2143,0.9139) mvmt=(0.0000,0.1910,0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-0.0257,0.8089) mvmt=(0.0000,0.1910,0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-2.2369,-0.5411) mvmt=(-0.0000,0.1910,0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3624,-0.6913) mvmt=(0.0000,0.1910,0.1976) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1759,4.3635,-0.7102) mvmt=(-0.0604,0.1921,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1759,4.3635,-0.7102) mvmt=(-0.0604,0.1921,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.676,7.137,93.310) lpos=(-11.176,4.363,-0.710) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3509,0.2154,0.9150) mvmt=(-0.0604,0.1921,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3759,-0.0246,0.8100) mvmt=(-0.0604,0.1921,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3759,-2.2359,-0.5400) mvmt=(-0.0604,0.1921,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1759,4.3635,-0.6902) mvmt=(-0.0604,0.1921,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.676,7.137,93.310) lpos=(-11.176,4.363,-0.710) lprev=(-11.116,4.171,-0.909) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1155,4.3635,-0.7102) mvmt=(0.0000,0.1921,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.137,93.310) lpos=(-11.116,4.363,-0.710) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2905,0.2154,0.9150) mvmt=(0.0000,0.1921,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-0.0246,0.8100) mvmt=(0.0000,0.1921,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-2.2359,-0.5400) mvmt=(-0.0000,0.1921,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3635,-0.6902) mvmt=(0.0000,0.1921,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3635,-0.7102) mvmt=(0.0000,0.1921,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.137,93.310) lpos=(-11.116,4.363,-0.710) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2905,0.2154,0.9150) mvmt=(0.0000,0.1921,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-0.0246,0.8100) mvmt=(0.0000,0.1921,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-2.2359,-0.5400) mvmt=(-0.0000,0.1921,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3635,-0.6902) mvmt=(0.0000,0.1921,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1439,4.3678,-0.7057) mvmt=(-0.0283,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1439,4.3678,-0.7057) mvmt=(-0.0283,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.644,7.132,93.314) lpos=(-11.144,4.368,-0.706) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3189,0.2198,0.9195) mvmt=(-0.0283,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3439,-0.0202,0.8145) mvmt=(-0.0283,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3439,-2.2315,-0.5355) mvmt=(-0.0283,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1439,4.3678,-0.6857) mvmt=(-0.0283,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.644,7.132,93.314) lpos=(-11.144,4.368,-0.706) lprev=(-11.116,4.171,-0.909) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1155,4.3678,-0.7057) mvmt=(0.0000,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.132,93.314) lpos=(-11.116,4.368,-0.706) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2905,0.2198,0.9195) mvmt=(0.0000,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-0.0202,0.8145) mvmt=(0.0000,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-2.2315,-0.5355) mvmt=(-0.0000,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3678,-0.6857) mvmt=(0.0000,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3678,-0.7057) mvmt=(0.0000,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.132,93.314) lpos=(-11.116,4.368,-0.706) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2905,0.2198,0.9195) mvmt=(0.0000,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-0.0202,0.8145) mvmt=(0.0000,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3155,-2.2315,-0.5355) mvmt=(-0.0000,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1155,4.3678,-0.6857) mvmt=(0.0000,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1071,4.3865,-0.6864) mvmt=(0.0085,0.2151,0.2225) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.114,93.334) lpos=(-11.107,4.386,-0.686) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1071,4.3865,-0.6864) mvmt=(0.0085,0.2151,0.2225) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2821,0.2384,0.9388) mvmt=(0.0085,0.2151,0.2225) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3071,-0.0016,0.8338) mvmt=(0.0085,0.2151,0.2225) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3071,-2.2128,-0.5162) mvmt=(0.0085,0.2151,0.2225) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1071,4.3865,-0.6664) mvmt=(0.0085,0.2151,0.2225) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1071,4.3865,-0.6864) mvmt=(0.0085,0.2151,0.2225) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.114,93.334) lpos=(-11.107,4.386,-0.686) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1071,4.3865,-0.6864) mvmt=(0.0085,0.2151,0.2225) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2821,0.2384,0.9388) mvmt=(0.0085,0.2151,0.2225) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3071,-0.0016,0.8338) mvmt=(0.0085,0.2151,0.2225) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3071,-2.2128,-0.5162) mvmt=(0.0085,0.2151,0.2225) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1071,4.3865,-0.6664) mvmt=(0.0085,0.2151,0.2225) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1071,4.1714,-0.9089) mvmt=(0.0085,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.329,93.111) lpos=(-11.107,4.171,-0.909) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2821,0.0233,0.7163) mvmt=(0.0085,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3071,-0.2167,0.6113) mvmt=(0.0085,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3071,-2.4279,-0.7387) mvmt=(0.0085,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1071,4.1714,-0.8889) mvmt=(0.0085,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1071,4.1714,-1.6589) mvmt=(0.0085,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.329,92.361) lpos=(-11.107,4.171,-1.659) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2821,0.0233,-0.0337) mvmt=(0.0085,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3071,-0.2167,-0.1387) mvmt=(0.0085,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3071,-0.2167,-0.1387) out=(-0.3071,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.1071,4.1714,-0.9089) mvmt=(0.0085,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.329,93.111) lpos=(-11.107,4.171,-0.909) lprev=(-11.116,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2821,0.0233,0.7163) mvmt=(0.0085,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3071,-0.2167,0.6113) mvmt=(0.0085,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3071,-2.4279,-0.7387) mvmt=(0.0085,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1071,4.1714,-0.8889) mvmt=(0.0085,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0603,4.3826,-0.6904) mvmt=(0.0467,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.560,7.117,93.330) lpos=(-11.060,4.383,-0.690) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0603,4.3826,-0.6904) mvmt=(0.0467,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2354,0.2345,0.9348) mvmt=(0.0467,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2603,-0.0055,0.8298) mvmt=(0.0467,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2603,-2.2167,-0.5202) mvmt=(0.0467,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0603,4.3826,-0.6704) mvmt=(0.0467,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0603,4.3826,-0.6904) mvmt=(0.0467,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.560,7.117,93.330) lpos=(-11.060,4.383,-0.690) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0603,4.3826,-0.6904) mvmt=(0.0467,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2354,0.2345,0.9348) mvmt=(0.0467,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2603,-0.0055,0.8298) mvmt=(0.0467,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2603,-2.2167,-0.5202) mvmt=(0.0467,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0603,4.3826,-0.6704) mvmt=(0.0467,0.2112,0.2185) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0603,4.1714,-0.9089) mvmt=(0.0467,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.560,7.329,93.111) lpos=(-11.060,4.171,-0.909) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2354,0.0233,0.7163) mvmt=(0.0467,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2603,-0.2167,0.6113) mvmt=(0.0467,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2603,-2.4279,-0.7387) mvmt=(0.0467,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0603,4.1714,-0.8889) mvmt=(0.0467,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0603,4.1714,-1.6589) mvmt=(0.0467,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.560,7.329,92.361) lpos=(-11.060,4.171,-1.659) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2354,0.0233,-0.0337) mvmt=(0.0467,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2603,-0.2167,-0.1387) mvmt=(0.0467,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2603,-0.2167,-0.1387) out=(-0.2603,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0603,4.1714,-0.9089) mvmt=(0.0467,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.560,7.329,93.111) lpos=(-11.060,4.171,-0.909) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2354,0.0233,0.7163) mvmt=(0.0467,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2603,-0.2167,0.6113) mvmt=(0.0467,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2603,-2.4279,-0.7387) mvmt=(0.0467,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0603,4.1714,-0.8889) mvmt=(0.0467,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9771,4.3774,-0.6958) mvmt=(0.0833,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.477,7.123,93.324) lpos=(-10.977,4.377,-0.696) lprev=(-11.060,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9771,4.3774,-0.6958) mvmt=(0.0833,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1521,0.2294,0.9294) mvmt=(0.0833,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1770,-0.0106,0.8244) mvmt=(0.0833,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1770,-2.2219,-0.5256) mvmt=(0.0833,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9771,4.3774,-0.6758) mvmt=(0.0833,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9771,4.3774,-0.6958) mvmt=(0.0833,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.477,7.123,93.324) lpos=(-10.977,4.377,-0.696) lprev=(-11.060,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9771,4.3774,-0.6958) mvmt=(0.0833,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1521,0.2294,0.9294) mvmt=(0.0833,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1770,-0.0106,0.8244) mvmt=(0.0833,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1770,-2.2219,-0.5256) mvmt=(0.0833,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9771,4.3774,-0.6758) mvmt=(0.0833,0.2060,0.2131) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9771,4.1714,-0.9089) mvmt=(0.0833,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.477,7.329,93.111) lpos=(-10.977,4.171,-0.909) lprev=(-11.060,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1521,0.0233,0.7163) mvmt=(0.0833,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1770,-0.2167,0.6113) mvmt=(0.0833,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1770,-2.4279,-0.7387) mvmt=(0.0833,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9771,4.1714,-0.8889) mvmt=(0.0833,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9771,4.1714,-1.6589) mvmt=(0.0833,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.477,7.329,92.361) lpos=(-10.977,4.171,-1.659) lprev=(-11.060,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1521,0.0233,-0.0337) mvmt=(0.0833,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1770,-0.2167,-0.1387) mvmt=(0.0833,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1770,-0.2167,-0.1387) out=(-0.1770,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.9771,4.1714,-0.9089) mvmt=(0.0833,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.477,7.329,93.111) lpos=(-10.977,4.171,-0.909) lprev=(-11.060,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1521,0.0233,0.7163) mvmt=(0.0833,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1770,-0.2167,0.6113) mvmt=(0.0833,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1770,-2.4279,-0.7387) mvmt=(0.0833,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9771,4.1714,-0.8889) mvmt=(0.0833,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8600,4.3696,-0.7038) mvmt=(0.1170,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.360,7.130,93.316) lpos=(-10.860,4.370,-0.704) lprev=(-10.977,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0350,0.2216,0.9214) mvmt=(0.1170,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0600,-0.0184,0.8164) mvmt=(0.1170,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0600,-2.2297,-0.5336) mvmt=(0.1170,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8600,4.3696,-0.6838) mvmt=(0.1170,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8600,4.3696,-0.7038) mvmt=(0.1170,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.360,7.130,93.316) lpos=(-10.860,4.370,-0.704) lprev=(-10.977,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0350,0.2216,0.9214) mvmt=(0.1170,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0600,-0.0184,0.8164) mvmt=(0.1170,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0600,-2.2297,-0.5336) mvmt=(0.1170,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8600,4.3696,-0.6838) mvmt=(0.1170,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8600,4.1714,-0.9089) mvmt=(0.1170,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.360,7.329,93.111) lpos=(-10.860,4.171,-0.909) lprev=(-10.977,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0350,0.0233,0.7163) mvmt=(0.1170,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0600,-0.2167,0.6113) mvmt=(0.1170,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0600,-2.4279,-0.7387) mvmt=(0.1170,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8600,4.1714,-0.8889) mvmt=(0.1170,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8600,4.1714,-1.6589) mvmt=(0.1170,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.360,7.329,92.361) lpos=(-10.860,4.171,-1.659) lprev=(-10.977,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0350,0.0233,-0.0337) mvmt=(0.1170,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0600,-0.2167,-0.1387) mvmt=(0.1170,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0600,-0.2167,-0.1387) out=(-0.0600,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.8600,4.1714,-0.9089) mvmt=(0.1170,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.360,7.329,93.111) lpos=(-10.860,4.171,-0.909) lprev=(-10.977,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0350,0.0233,0.7163) mvmt=(0.1170,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0600,-0.2167,0.6113) mvmt=(0.1170,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0600,-2.4279,-0.7387) mvmt=(0.1170,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8600,4.1714,-0.8889) mvmt=(0.1170,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7076,4.3652,-0.7084) mvmt=(0.1525,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.208,7.135,93.312) lpos=(-10.708,4.365,-0.708) lprev=(-10.860,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8826,0.2171,0.9168) mvmt=(0.1525,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0924,-0.0229,0.8118) mvmt=(0.1525,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0924,-2.2341,-0.5382) mvmt=(0.1525,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7076,4.3652,-0.6884) mvmt=(0.1525,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7076,4.3652,-0.7084) mvmt=(0.1525,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.208,7.135,93.312) lpos=(-10.708,4.365,-0.708) lprev=(-10.860,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8826,0.2171,0.9168) mvmt=(0.1525,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0924,-0.0229,0.8118) mvmt=(0.1525,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0924,-2.2341,-0.5382) mvmt=(0.1525,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7076,4.3652,-0.6884) mvmt=(0.1525,0.1938,0.2005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7076,4.1714,-0.9089) mvmt=(0.1525,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.208,7.329,93.111) lpos=(-10.708,4.171,-0.909) lprev=(-10.860,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8826,0.0233,0.7163) mvmt=(0.1525,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0924,-0.2167,0.6113) mvmt=(0.1525,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0924,-2.4279,-0.7387) mvmt=(0.1525,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7076,4.1714,-0.8889) mvmt=(0.1525,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7076,4.1714,-1.6589) mvmt=(0.1525,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.208,7.329,92.361) lpos=(-10.708,4.171,-1.659) lprev=(-10.860,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8826,0.0233,-0.0337) mvmt=(0.1525,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0924,-0.2167,-0.1387) mvmt=(0.1525,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0924,-0.2167,-0.1387) out=(0.0924,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.7076,4.1714,-0.9089) mvmt=(0.1525,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.208,7.329,93.111) lpos=(-10.708,4.171,-0.909) lprev=(-10.860,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8826,0.0233,0.7163) mvmt=(0.1525,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0924,-0.2167,0.6113) mvmt=(0.1525,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0924,-2.4279,-0.7387) mvmt=(0.1525,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7076,4.1714,-0.8889) mvmt=(0.1525,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5530,4.3618,-0.7119) mvmt=(0.1546,0.1904,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.138,93.308) lpos=(-10.553,4.362,-0.712) lprev=(-10.708,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2137,0.9133) mvmt=(0.1546,0.1904,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0263,0.8083) mvmt=(0.1546,0.1904,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2375,-0.5417) mvmt=(0.1546,0.1904,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3909,-2.9532,2.3126) mvmt=(-0.1145,0.2169,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3618,-0.6919) mvmt=(0.1546,0.1904,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3618,-0.7119) mvmt=(0.1546,0.1904,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.138,93.308) lpos=(-10.553,4.362,-0.712) lprev=(-10.708,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2137,0.9133) mvmt=(0.1546,0.1904,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0263,0.8083) mvmt=(0.1546,0.1904,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2375,-0.5417) mvmt=(0.1546,0.1904,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3909,-2.9532,2.3126) mvmt=(-0.1145,0.2169,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3618,-0.6919) mvmt=(0.1546,0.1904,0.1970) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.1714,-0.9089) mvmt=(0.1546,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.329,93.111) lpos=(-10.553,4.171,-0.909) lprev=(-10.708,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.0233,0.7163) mvmt=(0.1546,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.2167,0.6113) mvmt=(0.1546,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.4279,-0.7387) mvmt=(0.1546,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.1714,-0.8889) mvmt=(0.1546,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.1714,-1.6589) mvmt=(0.1546,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.329,92.361) lpos=(-10.553,4.171,-1.659) lprev=(-10.708,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.0233,-0.0337) mvmt=(0.1546,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.2167,-0.1387) mvmt=(0.1546,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2470,-0.2167,-0.1387) out=(0.2470,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.5530,4.1714,-0.9089) mvmt=(0.1546,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.329,93.111) lpos=(-10.553,4.171,-0.909) lprev=(-10.708,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.0233,0.7163) mvmt=(0.1546,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.2167,0.6113) mvmt=(0.1546,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.4279,-0.7387) mvmt=(0.1546,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.1714,-0.8889) mvmt=(0.1546,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4018,4.3576,-0.7162) mvmt=(0.1512,0.1863,0.1927) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.902,7.142,93.304) lpos=(-10.402,4.358,-0.716) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5768,0.2096,0.9090) mvmt=(0.1512,0.1863,0.1927) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4018,4.3576,-0.7162) mvmt=(0.1512,0.1863,0.1927) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.902,7.142,93.304) lpos=(-10.402,4.358,-0.716) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5768,0.2096,0.9090) mvmt=(0.1512,0.1863,0.1927) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5768,0.2096,0.9090) out=(-0.5768,0.2096,1.2384) delta=(0.0000,0.0000,0.3294) deltaMag=0.3294 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4510 dpPos=0.2471 dpMove=-0.4243 iDist=0.5490 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4018,4.3576,-0.3868) mvmt=(0.1512,0.1863,0.5221) collide=False insertType=0 objState=0x303 winterp=0.4510 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.902,7.142,93.633) lpos=(-10.402,4.358,-0.387) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4018,4.3576,-0.3868) mvmt=(0.1512,0.1863,0.5221) collide=False insertType=0 objState=0x303 winterp=0.4510 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4018,4.3576,-0.3868) mvmt=(0.1512,0.1863,0.5221) collide=False insertType=0 objState=0x303 winterp=0.4510 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5768,0.2096,1.2384) mvmt=(0.1512,0.1863,0.5221) collide=False insertType=0 objState=0x303 winterp=0.4510 return=-1 +[push-back-disp] site=dispatch center=(0.3982,-0.0304,1.1334) mvmt=(0.1512,0.1863,0.5221) collide=False insertType=0 objState=0x303 winterp=0.4510 return=-1 +[push-back-disp] site=dispatch center=(0.3982,-2.2417,-0.2166) mvmt=(0.1512,0.1863,0.5221) collide=False insertType=0 objState=0x303 winterp=0.4510 return=-1 +[push-back-disp] site=dispatch center=(0.4541,-2.8157,2.6377) mvmt=(-0.1120,0.2122,0.5221) collide=False insertType=0 objState=0x303 winterp=0.4510 return=-1 +[push-back-disp] site=dispatch center=(-10.4018,4.3576,-0.3668) mvmt=(0.1512,0.1863,0.5221) collide=False insertType=0 objState=0x303 winterp=0.4510 return=-1 +[push-back-disp] site=dispatch center=(-10.4018,4.3576,-0.3868) mvmt=(0.1512,0.1863,0.5221) collide=False insertType=1 objState=0x303 winterp=0.4510 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.902,7.142,93.633) lpos=(-10.402,4.358,-0.387) lprev=(-10.553,4.171,-0.909) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(-10.5530,4.3608,-0.7194) mvmt=(0.0000,0.1895,0.1895) collide=False insertType=0 objState=0x303 winterp=0.4510 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.139,93.301) lpos=(-10.553,4.361,-0.719) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2128,0.9058) mvmt=(0.0000,0.1895,0.1895) collide=False insertType=0 objState=0x303 winterp=0.4510 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0272,0.8008) mvmt=(-0.0000,0.1895,0.1895) collide=False insertType=0 objState=0x303 winterp=0.4510 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3608,-0.7194) mvmt=(0.0000,0.1895,0.1895) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.139,93.301) lpos=(-10.553,4.361,-0.719) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2128,0.9058) mvmt=(0.0000,0.1895,0.1895) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0272,0.8008) mvmt=(-0.0000,0.1895,0.1895) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2470,-0.0272,0.8008) out=(0.2470,-0.0272,0.8073) delta=(0.0000,0.0000,0.0065) deltaMag=0.0065 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.9891 dpPos=0.4755 dpMove=-0.4170 iDist=0.0109 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.5530,4.3608,-0.7129) mvmt=(0.0000,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=0.9891 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.139,93.307) lpos=(-10.553,4.361,-0.713) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2128,0.9123) mvmt=(0.0000,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=0.9891 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0272,0.8073) mvmt=(-0.0000,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=0.9891 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2385,-0.5427) mvmt=(0.0000,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=0.9891 return=-1 +[push-back-disp] site=dispatch center=(0.3918,-2.9535,2.3116) mvmt=(-0.1743,0.0743,0.1960) collide=False insertType=0 objState=0x303 winterp=0.9891 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3608,-0.6929) mvmt=(0.0000,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=0.9891 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3608,-0.7129) mvmt=(0.0000,0.1895,0.1960) collide=False insertType=1 objState=0x303 winterp=0.9891 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.139,93.307) lpos=(-10.553,4.361,-0.713) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2128,0.9123) mvmt=(0.0000,0.1895,0.1960) collide=False insertType=1 objState=0x303 winterp=0.9891 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0272,0.8073) mvmt=(-0.0000,0.1895,0.1960) collide=False insertType=1 objState=0x303 winterp=0.9891 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2385,-0.5427) mvmt=(0.0000,0.1895,0.1960) collide=False insertType=1 objState=0x303 winterp=0.9891 return=-1 +[push-back-disp] site=dispatch center=(0.3918,-2.9535,2.3116) mvmt=(-0.1743,0.0743,0.1960) collide=False insertType=1 objState=0x303 winterp=0.9891 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3608,-0.6929) mvmt=(0.0000,0.1895,0.1960) collide=False insertType=1 objState=0x303 winterp=0.9891 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(-10.5530,4.3576,-0.7163) mvmt=(0.0000,0.1862,0.1926) collide=False insertType=0 objState=0x303 winterp=0.9891 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.142,93.304) lpos=(-10.553,4.358,-0.716) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2095,0.9089) mvmt=(0.0000,0.1862,0.1926) collide=False insertType=0 objState=0x303 winterp=0.9891 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0305,0.8039) mvmt=(-0.0000,0.1862,0.1926) collide=False insertType=0 objState=0x303 winterp=0.9891 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2417,-0.5461) mvmt=(0.0000,0.1862,0.1926) collide=False insertType=0 objState=0x303 winterp=0.9891 return=-1 +[push-back-disp] site=dispatch center=(0.3948,-2.9548,2.3082) mvmt=(-0.1713,0.0731,0.1926) collide=False insertType=0 objState=0x303 winterp=0.9891 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3576,-0.6963) mvmt=(0.0000,0.1862,0.1926) collide=False insertType=0 objState=0x303 winterp=0.9891 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3576,-0.7163) mvmt=(0.0000,0.1862,0.1926) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.142,93.304) lpos=(-10.553,4.358,-0.716) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2095,0.9089) mvmt=(0.0000,0.1862,0.1926) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0305,0.8039) mvmt=(-0.0000,0.1862,0.1926) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2417,-0.5461) mvmt=(0.0000,0.1862,0.1926) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3948,-2.9548,2.3082) mvmt=(-0.1713,0.0731,0.1926) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3576,-0.6963) mvmt=(0.0000,0.1862,0.1926) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4078,4.3502,-0.7239) mvmt=(0.1452,0.1788,0.1850) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.908,7.150,93.296) lpos=(-10.408,4.350,-0.724) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5828,0.2022,0.9013) mvmt=(0.1452,0.1788,0.1850) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4078,4.3502,-0.7239) mvmt=(0.1452,0.1788,0.1850) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.908,7.150,93.296) lpos=(-10.408,4.350,-0.724) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5828,0.2022,0.9013) mvmt=(0.1452,0.1788,0.1850) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5828,0.2022,0.9013) out=(-0.5828,0.2022,1.2310) delta=(0.0000,0.0000,0.3297) deltaMag=0.3297 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4505 dpPos=0.2469 dpMove=-0.4243 iDist=0.5495 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4078,4.3502,-0.3942) mvmt=(0.1452,0.1788,0.5147) collide=False insertType=0 objState=0x303 winterp=0.4505 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.908,7.150,93.626) lpos=(-10.408,4.350,-0.394) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4078,4.3502,-0.3942) mvmt=(0.1452,0.1788,0.5147) collide=False insertType=0 objState=0x303 winterp=0.4505 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4078,4.3502,-0.3942) mvmt=(0.1452,0.1788,0.5147) collide=False insertType=0 objState=0x303 winterp=0.4505 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5828,0.2022,1.2310) mvmt=(0.1452,0.1788,0.5147) collide=False insertType=0 objState=0x303 winterp=0.4505 return=-1 +[push-back-disp] site=dispatch center=(0.3922,-0.0378,1.1260) mvmt=(0.1452,0.1788,0.5147) collide=False insertType=0 objState=0x303 winterp=0.4505 return=-1 +[push-back-disp] site=dispatch center=(0.3922,-2.2491,-0.2240) mvmt=(0.1452,0.1788,0.5147) collide=False insertType=0 objState=0x303 winterp=0.4505 return=-1 +[push-back-disp] site=dispatch center=(0.4585,-2.8241,2.6303) mvmt=(-0.1075,0.2037,0.5147) collide=False insertType=0 objState=0x303 winterp=0.4505 return=-1 +[push-back-disp] site=dispatch center=(-10.4078,4.3502,-0.3742) mvmt=(0.1452,0.1788,0.5147) collide=False insertType=0 objState=0x303 winterp=0.4505 return=-1 +[push-back-disp] site=dispatch center=(-10.4078,4.3502,-0.3942) mvmt=(0.1452,0.1788,0.5147) collide=False insertType=1 objState=0x303 winterp=0.4505 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.908,7.150,93.626) lpos=(-10.408,4.350,-0.394) lprev=(-10.553,4.171,-0.909) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(-10.5530,4.3533,-0.7270) mvmt=(0.0000,0.1819,0.1819) collide=False insertType=0 objState=0x303 winterp=0.4505 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.147,93.293) lpos=(-10.553,4.353,-0.727) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2053,0.8982) mvmt=(0.0000,0.1819,0.1819) collide=False insertType=0 objState=0x303 winterp=0.4505 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0347,0.7932) mvmt=(-0.0000,0.1819,0.1819) collide=False insertType=0 objState=0x303 winterp=0.4505 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3533,-0.7270) mvmt=(0.0000,0.1819,0.1819) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.147,93.293) lpos=(-10.553,4.353,-0.727) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2053,0.8982) mvmt=(0.0000,0.1819,0.1819) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0347,0.7932) mvmt=(-0.0000,0.1819,0.1819) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2470,-0.0347,0.7932) out=(0.2470,-0.0347,0.7995) delta=(0.0000,0.0000,0.0063) deltaMag=0.0063 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.9895 dpPos=0.4756 dpMove=-0.4170 iDist=0.0105 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.5530,4.3533,-0.7207) mvmt=(0.0000,0.1819,0.1882) collide=False insertType=0 objState=0x303 winterp=0.9895 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.147,93.299) lpos=(-10.553,4.353,-0.721) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2053,0.9045) mvmt=(0.0000,0.1819,0.1882) collide=False insertType=0 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0347,0.7995) mvmt=(-0.0000,0.1819,0.1882) collide=False insertType=0 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2460,-0.5505) mvmt=(0.0000,0.1819,0.1882) collide=False insertType=0 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(0.3987,-2.9565,2.3038) mvmt=(-0.1673,0.0714,0.1882) collide=False insertType=0 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3533,-0.7007) mvmt=(0.0000,0.1819,0.1882) collide=False insertType=0 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3533,-0.7207) mvmt=(0.0000,0.1819,0.1882) collide=False insertType=1 objState=0x303 winterp=0.9895 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.147,93.299) lpos=(-10.553,4.353,-0.721) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2053,0.9045) mvmt=(0.0000,0.1819,0.1882) collide=False insertType=1 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0347,0.7995) mvmt=(-0.0000,0.1819,0.1882) collide=False insertType=1 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2460,-0.5505) mvmt=(0.0000,0.1819,0.1882) collide=False insertType=1 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(0.3987,-2.9565,2.3038) mvmt=(-0.1673,0.0714,0.1882) collide=False insertType=1 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3533,-0.7007) mvmt=(0.0000,0.1819,0.1882) collide=False insertType=1 objState=0x303 winterp=0.9895 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(-10.5530,4.3502,-0.7239) mvmt=(0.0000,0.1788,0.1850) collide=False insertType=0 objState=0x303 winterp=0.9895 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.150,93.296) lpos=(-10.553,4.350,-0.724) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2021,0.9013) mvmt=(0.0000,0.1788,0.1850) collide=False insertType=0 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0379,0.7963) mvmt=(-0.0000,0.1788,0.1850) collide=False insertType=0 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2491,-0.5537) mvmt=(0.0000,0.1788,0.1850) collide=False insertType=0 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(0.4016,-2.9577,2.3006) mvmt=(-0.1645,0.0701,0.1850) collide=False insertType=0 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3502,-0.7039) mvmt=(0.0000,0.1788,0.1850) collide=False insertType=0 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3502,-0.7239) mvmt=(0.0000,0.1788,0.1850) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.150,93.296) lpos=(-10.553,4.350,-0.724) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2021,0.9013) mvmt=(0.0000,0.1788,0.1850) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0379,0.7963) mvmt=(-0.0000,0.1788,0.1850) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2491,-0.5537) mvmt=(0.0000,0.1788,0.1850) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4016,-2.9577,2.3006) mvmt=(-0.1645,0.0701,0.1850) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3502,-0.7039) mvmt=(0.0000,0.1788,0.1850) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4066,4.3517,-0.7224) mvmt=(0.1464,0.1803,0.1865) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.907,7.148,93.298) lpos=(-10.407,4.352,-0.722) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5816,0.2036,0.9028) mvmt=(0.1464,0.1803,0.1865) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4066,4.3517,-0.7224) mvmt=(0.1464,0.1803,0.1865) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.907,7.148,93.298) lpos=(-10.407,4.352,-0.722) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5816,0.2036,0.9028) mvmt=(0.1464,0.1803,0.1865) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5816,0.2036,0.9028) out=(-0.5816,0.2036,1.2324) delta=(0.0000,0.0000,0.3296) deltaMag=0.3296 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4506 dpPos=0.2469 dpMove=-0.4243 iDist=0.5494 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4066,4.3517,-0.3928) mvmt=(0.1464,0.1803,0.5161) collide=False insertType=0 objState=0x303 winterp=0.4506 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.907,7.148,93.627) lpos=(-10.407,4.352,-0.393) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4066,4.3517,-0.3928) mvmt=(0.1464,0.1803,0.5161) collide=False insertType=0 objState=0x303 winterp=0.4506 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4066,4.3517,-0.3928) mvmt=(0.1464,0.1803,0.5161) collide=False insertType=0 objState=0x303 winterp=0.4506 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5816,0.2036,1.2324) mvmt=(0.1464,0.1803,0.5161) collide=False insertType=0 objState=0x303 winterp=0.4506 return=-1 +[push-back-disp] site=dispatch center=(0.3934,-0.0364,1.1274) mvmt=(0.1464,0.1803,0.5161) collide=False insertType=0 objState=0x303 winterp=0.4506 return=-1 +[push-back-disp] site=dispatch center=(0.3934,-2.2477,-0.2226) mvmt=(0.1464,0.1803,0.5161) collide=False insertType=0 objState=0x303 winterp=0.4506 return=-1 +[push-back-disp] site=dispatch center=(0.4577,-2.8225,2.6317) mvmt=(-0.1084,0.2054,0.5161) collide=False insertType=0 objState=0x303 winterp=0.4506 return=-1 +[push-back-disp] site=dispatch center=(-10.4066,4.3517,-0.3728) mvmt=(0.1464,0.1803,0.5161) collide=False insertType=0 objState=0x303 winterp=0.4506 return=-1 +[push-back-disp] site=dispatch center=(-10.4066,4.3517,-0.3928) mvmt=(0.1464,0.1803,0.5161) collide=False insertType=1 objState=0x303 winterp=0.4506 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.907,7.148,93.627) lpos=(-10.407,4.352,-0.393) lprev=(-10.553,4.171,-0.909) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(-10.5530,4.3548,-0.7255) mvmt=(0.0000,0.1834,0.1834) collide=False insertType=0 objState=0x303 winterp=0.4506 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.145,93.294) lpos=(-10.553,4.355,-0.726) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2067,0.8997) mvmt=(0.0000,0.1834,0.1834) collide=False insertType=0 objState=0x303 winterp=0.4506 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0333,0.7947) mvmt=(-0.0000,0.1834,0.1834) collide=False insertType=0 objState=0x303 winterp=0.4506 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3548,-0.7255) mvmt=(0.0000,0.1834,0.1834) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.145,93.294) lpos=(-10.553,4.355,-0.726) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2067,0.8997) mvmt=(0.0000,0.1834,0.1834) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0333,0.7947) mvmt=(-0.0000,0.1834,0.1834) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2470,-0.0333,0.7947) out=(0.2470,-0.0333,0.8010) delta=(0.0000,0.0000,0.0063) deltaMag=0.0063 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.9895 dpPos=0.4756 dpMove=-0.4170 iDist=0.0105 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.5530,4.3548,-0.7192) mvmt=(0.0000,0.1834,0.1897) collide=False insertType=0 objState=0x303 winterp=0.9895 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.145,93.301) lpos=(-10.553,4.355,-0.719) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2067,0.9060) mvmt=(0.0000,0.1834,0.1897) collide=False insertType=0 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0333,0.8010) mvmt=(-0.0000,0.1834,0.1897) collide=False insertType=0 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2445,-0.5490) mvmt=(0.0000,0.1834,0.1897) collide=False insertType=0 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(0.3974,-2.9559,2.3053) mvmt=(-0.1687,0.0720,0.1897) collide=False insertType=0 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3548,-0.6992) mvmt=(0.0000,0.1834,0.1897) collide=False insertType=0 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3548,-0.7192) mvmt=(0.0000,0.1834,0.1897) collide=False insertType=1 objState=0x303 winterp=0.9895 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.145,93.301) lpos=(-10.553,4.355,-0.719) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2067,0.9060) mvmt=(0.0000,0.1834,0.1897) collide=False insertType=1 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0333,0.8010) mvmt=(-0.0000,0.1834,0.1897) collide=False insertType=1 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2445,-0.5490) mvmt=(0.0000,0.1834,0.1897) collide=False insertType=1 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(0.3974,-2.9559,2.3053) mvmt=(-0.1687,0.0720,0.1897) collide=False insertType=1 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3548,-0.6992) mvmt=(0.0000,0.1834,0.1897) collide=False insertType=1 objState=0x303 winterp=0.9895 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(-10.5530,4.3516,-0.7225) mvmt=(0.0000,0.1802,0.1864) collide=False insertType=0 objState=0x303 winterp=0.9895 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.148,93.298) lpos=(-10.553,4.352,-0.722) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2036,0.9027) mvmt=(0.0000,0.1802,0.1864) collide=False insertType=0 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0364,0.7978) mvmt=(-0.0000,0.1802,0.1864) collide=False insertType=0 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2477,-0.5523) mvmt=(0.0000,0.1802,0.1864) collide=False insertType=0 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(0.4003,-2.9571,2.3020) mvmt=(-0.1658,0.0707,0.1864) collide=False insertType=0 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3516,-0.7025) mvmt=(0.0000,0.1802,0.1864) collide=False insertType=0 objState=0x303 winterp=0.9895 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3516,-0.7225) mvmt=(0.0000,0.1802,0.1864) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.148,93.298) lpos=(-10.553,4.352,-0.722) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2036,0.9027) mvmt=(0.0000,0.1802,0.1864) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0364,0.7978) mvmt=(-0.0000,0.1802,0.1864) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2477,-0.5523) mvmt=(0.0000,0.1802,0.1864) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4003,-2.9571,2.3020) mvmt=(-0.1658,0.0707,0.1864) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3516,-0.7025) mvmt=(0.0000,0.1802,0.1864) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3985,4.3616,-0.7121) mvmt=(0.1544,0.1902,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.899,7.138,93.308) lpos=(-10.399,4.362,-0.712) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5735,0.2136,0.9131) mvmt=(0.1544,0.1902,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3985,4.3616,-0.7121) mvmt=(0.1544,0.1902,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.899,7.138,93.308) lpos=(-10.399,4.362,-0.712) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5735,0.2136,0.9131) mvmt=(0.1544,0.1902,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5735,0.2136,0.9131) out=(-0.5735,0.2136,1.2424) delta=(0.0000,0.0000,0.3293) deltaMag=0.3293 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4512 dpPos=0.2472 dpMove=-0.4243 iDist=0.5488 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3985,4.3616,-0.3828) mvmt=(0.1544,0.1902,0.5261) collide=False insertType=0 objState=0x303 winterp=0.4512 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.899,7.138,93.637) lpos=(-10.399,4.362,-0.383) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3985,4.3616,-0.3828) mvmt=(0.1544,0.1902,0.5261) collide=False insertType=0 objState=0x303 winterp=0.4512 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.3985,4.3616,-0.3828) mvmt=(0.1544,0.1902,0.5261) collide=False insertType=0 objState=0x303 winterp=0.4512 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5735,0.2136,1.2424) mvmt=(0.1544,0.1902,0.5261) collide=False insertType=0 objState=0x303 winterp=0.4512 return=-1 +[push-back-disp] site=dispatch center=(0.4015,-0.0264,1.1374) mvmt=(0.1544,0.1902,0.5261) collide=False insertType=0 objState=0x303 winterp=0.4512 return=-1 +[push-back-disp] site=dispatch center=(0.4015,-2.2377,-0.2126) mvmt=(0.1544,0.1902,0.5261) collide=False insertType=0 objState=0x303 winterp=0.4512 return=-1 +[push-back-disp] site=dispatch center=(0.4517,-2.8111,2.6417) mvmt=(-0.1144,0.2167,0.5261) collide=False insertType=0 objState=0x303 winterp=0.4512 return=-1 +[push-back-disp] site=dispatch center=(-10.3985,4.3616,-0.3628) mvmt=(0.1544,0.1902,0.5261) collide=False insertType=0 objState=0x303 winterp=0.4512 return=-1 +[push-back-disp] site=dispatch center=(-10.3985,4.3616,-0.3828) mvmt=(0.1544,0.1902,0.5261) collide=False insertType=1 objState=0x303 winterp=0.4512 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.899,7.138,93.637) lpos=(-10.399,4.362,-0.383) lprev=(-10.553,4.171,-0.909) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(-10.5530,4.3649,-0.7154) mvmt=(0.0000,0.1935,0.1935) collide=False insertType=0 objState=0x303 winterp=0.4512 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.135,93.305) lpos=(-10.553,4.365,-0.715) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2168,0.9098) mvmt=(0.0000,0.1935,0.1935) collide=False insertType=0 objState=0x303 winterp=0.4512 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0232,0.8048) mvmt=(-0.0000,0.1935,0.1935) collide=False insertType=0 objState=0x303 winterp=0.4512 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3649,-0.7154) mvmt=(0.0000,0.1935,0.1935) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.135,93.305) lpos=(-10.553,4.365,-0.715) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2168,0.9098) mvmt=(0.0000,0.1935,0.1935) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0232,0.8048) mvmt=(-0.0000,0.1935,0.1935) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2470,-0.0232,0.8048) out=(0.2470,-0.0232,0.8115) delta=(0.0000,0.0000,0.0067) deltaMag=0.0067 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.9889 dpPos=0.4754 dpMove=-0.4170 iDist=0.0111 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.5530,4.3649,-0.7087) mvmt=(0.0000,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=0.9889 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.135,93.311) lpos=(-10.553,4.365,-0.709) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2168,0.9165) mvmt=(0.0000,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=0.9889 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0232,0.8115) mvmt=(-0.0000,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=0.9889 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2344,-0.5385) mvmt=(0.0000,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=0.9889 return=-1 +[push-back-disp] site=dispatch center=(0.3881,-2.9519,2.3158) mvmt=(-0.1780,0.0759,0.2002) collide=False insertType=0 objState=0x303 winterp=0.9889 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3649,-0.6887) mvmt=(0.0000,0.1935,0.2002) collide=False insertType=0 objState=0x303 winterp=0.9889 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3649,-0.7087) mvmt=(0.0000,0.1935,0.2002) collide=False insertType=1 objState=0x303 winterp=0.9889 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.135,93.311) lpos=(-10.553,4.365,-0.709) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2168,0.9165) mvmt=(0.0000,0.1935,0.2002) collide=False insertType=1 objState=0x303 winterp=0.9889 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0232,0.8115) mvmt=(-0.0000,0.1935,0.2002) collide=False insertType=1 objState=0x303 winterp=0.9889 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2344,-0.5385) mvmt=(0.0000,0.1935,0.2002) collide=False insertType=1 objState=0x303 winterp=0.9889 return=-1 +[push-back-disp] site=dispatch center=(0.3881,-2.9519,2.3158) mvmt=(-0.1780,0.0759,0.2002) collide=False insertType=1 objState=0x303 winterp=0.9889 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3649,-0.6887) mvmt=(0.0000,0.1935,0.2002) collide=False insertType=1 objState=0x303 winterp=0.9889 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(-10.5530,4.3615,-0.7122) mvmt=(0.0000,0.1902,0.1967) collide=False insertType=0 objState=0x303 winterp=0.9889 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.138,93.308) lpos=(-10.553,4.362,-0.712) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2135,0.9130) mvmt=(0.0000,0.1902,0.1967) collide=False insertType=0 objState=0x303 winterp=0.9889 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0265,0.8080) mvmt=(-0.0000,0.1902,0.1967) collide=False insertType=0 objState=0x303 winterp=0.9889 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2378,-0.5420) mvmt=(0.0000,0.1902,0.1967) collide=False insertType=0 objState=0x303 winterp=0.9889 return=-1 +[push-back-disp] site=dispatch center=(0.3912,-2.9532,2.3123) mvmt=(-0.1749,0.0746,0.1967) collide=False insertType=0 objState=0x303 winterp=0.9889 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3615,-0.6922) mvmt=(0.0000,0.1902,0.1967) collide=False insertType=0 objState=0x303 winterp=0.9889 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3615,-0.7122) mvmt=(0.0000,0.1902,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.138,93.308) lpos=(-10.553,4.362,-0.712) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2135,0.9130) mvmt=(0.0000,0.1902,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0265,0.8080) mvmt=(-0.0000,0.1902,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2378,-0.5420) mvmt=(0.0000,0.1902,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3912,-2.9532,2.3123) mvmt=(-0.1749,0.0746,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3615,-0.6922) mvmt=(0.0000,0.1902,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4060,4.3524,-0.7216) mvmt=(0.1470,0.1811,0.1873) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.906,7.148,93.298) lpos=(-10.406,4.352,-0.722) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5810,0.2044,0.9036) mvmt=(0.1470,0.1811,0.1873) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4060,4.3524,-0.7216) mvmt=(0.1470,0.1811,0.1873) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.906,7.148,93.298) lpos=(-10.406,4.352,-0.722) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5810,0.2044,0.9036) mvmt=(0.1470,0.1811,0.1873) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5810,0.2044,0.9036) out=(-0.5810,0.2044,1.2332) delta=(0.0000,0.0000,0.3296) deltaMag=0.3296 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4507 dpPos=0.2469 dpMove=-0.4243 iDist=0.5493 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4060,4.3524,-0.3920) mvmt=(0.1470,0.1811,0.5169) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.906,7.148,93.628) lpos=(-10.406,4.352,-0.392) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4060,4.3524,-0.3920) mvmt=(0.1470,0.1811,0.5169) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4060,4.3524,-0.3920) mvmt=(0.1470,0.1811,0.5169) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5810,0.2044,1.2332) mvmt=(0.1470,0.1811,0.5169) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[push-back-disp] site=dispatch center=(0.3940,-0.0356,1.1282) mvmt=(0.1470,0.1811,0.5169) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[push-back-disp] site=dispatch center=(0.3940,-2.2469,-0.2218) mvmt=(0.1470,0.1811,0.5169) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[push-back-disp] site=dispatch center=(0.4572,-2.8216,2.6325) mvmt=(-0.1089,0.2063,0.5169) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[push-back-disp] site=dispatch center=(-10.4060,4.3524,-0.3720) mvmt=(0.1470,0.1811,0.5169) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[push-back-disp] site=dispatch center=(-10.4060,4.3524,-0.3920) mvmt=(0.1470,0.1811,0.5169) collide=False insertType=1 objState=0x303 winterp=0.4507 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.906,7.148,93.628) lpos=(-10.406,4.352,-0.392) lprev=(-10.553,4.171,-0.909) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(-10.5530,4.3556,-0.7247) mvmt=(0.0000,0.1842,0.1842) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.144,93.295) lpos=(-10.553,4.356,-0.725) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2075,0.9005) mvmt=(0.0000,0.1842,0.1842) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0325,0.7955) mvmt=(-0.0000,0.1842,0.1842) collide=False insertType=0 objState=0x303 winterp=0.4507 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3556,-0.7247) mvmt=(0.0000,0.1842,0.1842) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.144,93.295) lpos=(-10.553,4.356,-0.725) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2075,0.9005) mvmt=(0.0000,0.1842,0.1842) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0325,0.7955) mvmt=(-0.0000,0.1842,0.1842) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2470,-0.0325,0.7955) out=(0.2470,-0.0325,0.8018) delta=(0.0000,0.0000,0.0063) deltaMag=0.0063 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.9894 dpPos=0.4756 dpMove=-0.4170 iDist=0.0106 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.5530,4.3556,-0.7184) mvmt=(0.0000,0.1842,0.1905) collide=False insertType=0 objState=0x303 winterp=0.9894 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.144,93.302) lpos=(-10.553,4.356,-0.718) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2075,0.9068) mvmt=(0.0000,0.1842,0.1905) collide=False insertType=0 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0325,0.8018) mvmt=(-0.0000,0.1842,0.1905) collide=False insertType=0 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2437,-0.5482) mvmt=(0.0000,0.1842,0.1905) collide=False insertType=0 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(0.3967,-2.9556,2.3061) mvmt=(-0.1694,0.0723,0.1905) collide=False insertType=0 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3556,-0.6984) mvmt=(0.0000,0.1842,0.1905) collide=False insertType=0 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3556,-0.7184) mvmt=(0.0000,0.1842,0.1905) collide=False insertType=1 objState=0x303 winterp=0.9894 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.144,93.302) lpos=(-10.553,4.356,-0.718) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2075,0.9068) mvmt=(0.0000,0.1842,0.1905) collide=False insertType=1 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0325,0.8018) mvmt=(-0.0000,0.1842,0.1905) collide=False insertType=1 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2437,-0.5482) mvmt=(0.0000,0.1842,0.1905) collide=False insertType=1 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(0.3967,-2.9556,2.3061) mvmt=(-0.1694,0.0723,0.1905) collide=False insertType=1 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3556,-0.6984) mvmt=(0.0000,0.1842,0.1905) collide=False insertType=1 objState=0x303 winterp=0.9894 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(-10.5530,4.3524,-0.7216) mvmt=(0.0000,0.1810,0.1873) collide=False insertType=0 objState=0x303 winterp=0.9894 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.148,93.298) lpos=(-10.553,4.352,-0.722) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2043,0.9036) mvmt=(0.0000,0.1810,0.1873) collide=False insertType=0 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0357,0.7986) mvmt=(-0.0000,0.1810,0.1873) collide=False insertType=0 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2469,-0.5514) mvmt=(0.0000,0.1810,0.1873) collide=False insertType=0 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(0.3996,-2.9568,2.3029) mvmt=(-0.1665,0.0710,0.1873) collide=False insertType=0 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3524,-0.7016) mvmt=(0.0000,0.1810,0.1873) collide=False insertType=0 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3524,-0.7216) mvmt=(0.0000,0.1810,0.1873) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.148,93.298) lpos=(-10.553,4.352,-0.722) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2043,0.9036) mvmt=(0.0000,0.1810,0.1873) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0357,0.7986) mvmt=(-0.0000,0.1810,0.1873) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2469,-0.5514) mvmt=(0.0000,0.1810,0.1873) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3996,-2.9568,2.3029) mvmt=(-0.1665,0.0710,0.1873) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3524,-0.7016) mvmt=(0.0000,0.1810,0.1873) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4063,4.3520,-0.7220) mvmt=(0.1467,0.1807,0.1869) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.906,7.148,93.298) lpos=(-10.406,4.352,-0.722) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5813,0.2040,0.9032) mvmt=(0.1467,0.1807,0.1869) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4063,4.3520,-0.7220) mvmt=(0.1467,0.1807,0.1869) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.906,7.148,93.298) lpos=(-10.406,4.352,-0.722) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5813,0.2040,0.9032) mvmt=(0.1467,0.1807,0.1869) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5813,0.2040,0.9032) out=(-0.5813,0.2040,1.2328) delta=(0.0000,0.0000,0.3296) deltaMag=0.3296 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4506 dpPos=0.2469 dpMove=-0.4243 iDist=0.5494 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4063,4.3520,-0.3924) mvmt=(0.1467,0.1807,0.5165) collide=False insertType=0 objState=0x303 winterp=0.4506 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.906,7.148,93.628) lpos=(-10.406,4.352,-0.392) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4063,4.3520,-0.3924) mvmt=(0.1467,0.1807,0.5165) collide=False insertType=0 objState=0x303 winterp=0.4506 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4063,4.3520,-0.3924) mvmt=(0.1467,0.1807,0.5165) collide=False insertType=0 objState=0x303 winterp=0.4506 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5813,0.2040,1.2328) mvmt=(0.1467,0.1807,0.5165) collide=False insertType=0 objState=0x303 winterp=0.4506 return=-1 +[push-back-disp] site=dispatch center=(0.3937,-0.0360,1.1278) mvmt=(0.1467,0.1807,0.5165) collide=False insertType=0 objState=0x303 winterp=0.4506 return=-1 +[push-back-disp] site=dispatch center=(0.3937,-2.2473,-0.2222) mvmt=(0.1467,0.1807,0.5165) collide=False insertType=0 objState=0x303 winterp=0.4506 return=-1 +[push-back-disp] site=dispatch center=(0.4575,-2.8221,2.6321) mvmt=(-0.1086,0.2058,0.5165) collide=False insertType=0 objState=0x303 winterp=0.4506 return=-1 +[push-back-disp] site=dispatch center=(-10.4063,4.3520,-0.3724) mvmt=(0.1467,0.1807,0.5165) collide=False insertType=0 objState=0x303 winterp=0.4506 return=-1 +[push-back-disp] site=dispatch center=(-10.4063,4.3520,-0.3924) mvmt=(0.1467,0.1807,0.5165) collide=False insertType=1 objState=0x303 winterp=0.4506 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.906,7.148,93.628) lpos=(-10.406,4.352,-0.392) lprev=(-10.553,4.171,-0.909) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(-10.5530,4.3551,-0.7251) mvmt=(0.0000,0.1838,0.1838) collide=False insertType=0 objState=0x303 winterp=0.4506 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.145,93.295) lpos=(-10.553,4.355,-0.725) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2071,0.9001) mvmt=(0.0000,0.1838,0.1838) collide=False insertType=0 objState=0x303 winterp=0.4506 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0329,0.7951) mvmt=(-0.0000,0.1838,0.1838) collide=False insertType=0 objState=0x303 winterp=0.4506 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3551,-0.7251) mvmt=(0.0000,0.1838,0.1838) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.145,93.295) lpos=(-10.553,4.355,-0.725) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2071,0.9001) mvmt=(0.0000,0.1838,0.1838) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0329,0.7951) mvmt=(-0.0000,0.1838,0.1838) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2470,-0.0329,0.7951) out=(0.2470,-0.0329,0.8014) delta=(0.0000,0.0000,0.0063) deltaMag=0.0063 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.9894 dpPos=0.4756 dpMove=-0.4170 iDist=0.0106 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.5530,4.3551,-0.7188) mvmt=(0.0000,0.1838,0.1901) collide=False insertType=0 objState=0x303 winterp=0.9894 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.145,93.301) lpos=(-10.553,4.355,-0.719) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2071,0.9064) mvmt=(0.0000,0.1838,0.1901) collide=False insertType=0 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0329,0.8014) mvmt=(-0.0000,0.1838,0.1901) collide=False insertType=0 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2442,-0.5486) mvmt=(0.0000,0.1838,0.1901) collide=False insertType=0 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(0.3970,-2.9558,2.3057) mvmt=(-0.1690,0.0721,0.1901) collide=False insertType=0 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3551,-0.6988) mvmt=(0.0000,0.1838,0.1901) collide=False insertType=0 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3551,-0.7188) mvmt=(0.0000,0.1838,0.1901) collide=False insertType=1 objState=0x303 winterp=0.9894 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.145,93.301) lpos=(-10.553,4.355,-0.719) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2071,0.9064) mvmt=(0.0000,0.1838,0.1901) collide=False insertType=1 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0329,0.8014) mvmt=(-0.0000,0.1838,0.1901) collide=False insertType=1 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2442,-0.5486) mvmt=(0.0000,0.1838,0.1901) collide=False insertType=1 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(0.3970,-2.9558,2.3057) mvmt=(-0.1690,0.0721,0.1901) collide=False insertType=1 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3551,-0.6988) mvmt=(0.0000,0.1838,0.1901) collide=False insertType=1 objState=0x303 winterp=0.9894 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[push-back-disp] site=dispatch center=(-10.5530,4.3520,-0.7221) mvmt=(0.0000,0.1806,0.1868) collide=False insertType=0 objState=0x303 winterp=0.9894 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.148,93.298) lpos=(-10.553,4.352,-0.722) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2039,0.9031) mvmt=(0.0000,0.1806,0.1868) collide=False insertType=0 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0361,0.7981) mvmt=(-0.0000,0.1806,0.1868) collide=False insertType=0 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2473,-0.5519) mvmt=(0.0000,0.1806,0.1868) collide=False insertType=0 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(0.4000,-2.9570,2.3024) mvmt=(-0.1661,0.0709,0.1868) collide=False insertType=0 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3520,-0.7021) mvmt=(0.0000,0.1806,0.1868) collide=False insertType=0 objState=0x303 winterp=0.9894 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3520,-0.7221) mvmt=(0.0000,0.1806,0.1868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.053,7.148,93.298) lpos=(-10.553,4.352,-0.722) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7280,0.2039,0.9031) mvmt=(0.0000,0.1806,0.1868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-0.0361,0.7981) mvmt=(-0.0000,0.1806,0.1868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2470,-2.2473,-0.5519) mvmt=(0.0000,0.1806,0.1868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4000,-2.9570,2.3024) mvmt=(-0.1661,0.0709,0.1868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5530,4.3520,-0.7021) mvmt=(0.0000,0.1806,0.1868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4349,4.3610,-0.7128) mvmt=(0.1181,0.1896,0.1961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.935,7.139,93.307) lpos=(-10.435,4.361,-0.713) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6099,0.2129,0.9124) mvmt=(0.1181,0.1896,0.1961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3651,-0.0271,0.8074) mvmt=(0.1181,0.1896,0.1961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3651,-2.2383,-0.5426) mvmt=(0.1181,0.1896,0.1961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4380,-2.8448,2.3117) mvmt=(-0.1281,0.1830,0.1961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4349,4.3610,-0.6928) mvmt=(0.1181,0.1896,0.1961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4349,4.3610,-0.7128) mvmt=(0.1181,0.1896,0.1961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.935,7.139,93.307) lpos=(-10.435,4.361,-0.713) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6099,0.2129,0.9124) mvmt=(0.1181,0.1896,0.1961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3651,-0.0271,0.8074) mvmt=(0.1181,0.1896,0.1961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3651,-2.2383,-0.5426) mvmt=(0.1181,0.1896,0.1961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4380,-2.8448,2.3117) mvmt=(-0.1281,0.1830,0.1961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4349,4.3610,-0.6928) mvmt=(0.1181,0.1896,0.1961) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4349,4.1714,-0.9089) mvmt=(0.1181,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.935,7.329,93.111) lpos=(-10.435,4.171,-0.909) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6099,0.0233,0.7163) mvmt=(0.1181,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3651,-0.2167,0.6113) mvmt=(0.1181,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3651,-2.4279,-0.7387) mvmt=(0.1181,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4349,4.1714,-0.8889) mvmt=(0.1181,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4349,4.1714,-1.6589) mvmt=(0.1181,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.935,7.329,92.361) lpos=(-10.435,4.171,-1.659) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6099,0.0233,-0.0337) mvmt=(0.1181,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3651,-0.2167,-0.1387) mvmt=(0.1181,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3651,-0.2167,-0.1387) out=(0.3651,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4349,4.1714,-0.9089) mvmt=(0.1181,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.935,7.329,93.111) lpos=(-10.435,4.171,-0.909) lprev=(-10.553,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6099,0.0233,0.7163) mvmt=(0.1181,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3651,-0.2167,0.6113) mvmt=(0.1181,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3651,-2.4279,-0.7387) mvmt=(0.1181,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4349,4.1714,-0.8889) mvmt=(0.1181,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3476,4.3711,-0.7023) mvmt=(0.0873,0.1997,0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3476,4.3711,-0.7023) mvmt=(0.0873,0.1997,0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.848,7.129,93.318) lpos=(-10.348,4.371,-0.702) lprev=(-10.435,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5226,0.2231,0.9229) mvmt=(0.0873,0.1997,0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5226,0.2231,0.9229) out=(-0.5226,0.2231,1.2519) delta=(0.0000,0.0000,0.3290) deltaMag=0.3290 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4517 dpPos=0.2474 dpMove=-0.4243 iDist=0.5483 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3476,4.3711,-0.3733) mvmt=(0.0873,0.1997,0.5356) collide=False insertType=0 objState=0x303 winterp=0.4517 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.848,7.129,93.647) lpos=(-10.348,4.371,-0.373) lprev=(-10.435,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3476,4.3711,-0.3733) mvmt=(0.0873,0.1997,0.5356) collide=False insertType=0 objState=0x303 winterp=0.4517 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.3476,4.3711,-0.3733) mvmt=(0.0873,0.1997,0.5356) collide=False insertType=0 objState=0x303 winterp=0.4517 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5226,0.2231,1.2519) mvmt=(0.0873,0.1997,0.5356) collide=False insertType=0 objState=0x303 winterp=0.4517 return=-1 +[push-back-disp] site=dispatch center=(0.4524,-0.0169,1.1469) mvmt=(0.0873,0.1997,0.5356) collide=False insertType=0 objState=0x303 winterp=0.4517 return=-1 +[push-back-disp] site=dispatch center=(0.4524,-2.2282,-0.2031) mvmt=(0.0873,0.1997,0.5356) collide=False insertType=0 objState=0x303 winterp=0.4517 return=-1 +[push-back-disp] site=dispatch center=(0.4630,-2.7605,2.6512) mvmt=(-0.1495,0.1587,0.5356) collide=False insertType=0 objState=0x303 winterp=0.4517 return=-1 +[push-back-disp] site=dispatch center=(-10.3476,4.3711,-0.3533) mvmt=(0.0873,0.1997,0.5356) collide=False insertType=0 objState=0x303 winterp=0.4517 return=-1 +[push-back-disp] site=dispatch center=(-10.3476,4.3711,-0.3733) mvmt=(0.0873,0.1997,0.5356) collide=False insertType=1 objState=0x303 winterp=0.4517 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.848,7.129,93.647) lpos=(-10.348,4.371,-0.373) lprev=(-10.435,4.171,-0.909) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.848,7.129,93.318) lpos=(-10.348,4.371,-0.702) lprev=(-10.435,4.171,-0.909) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3476,4.1714,-0.9089) mvmt=(0.0873,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4517 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.848,7.329,93.111) lpos=(-10.348,4.171,-0.909) lprev=(-10.435,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5226,0.0233,0.7163) mvmt=(0.0873,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4517 return=-1 +[push-back-disp] site=dispatch center=(-10.3476,4.1714,-0.9089) mvmt=(0.0873,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.848,7.329,93.111) lpos=(-10.348,4.171,-0.909) lprev=(-10.435,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5226,0.0233,0.7163) mvmt=(0.0873,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5226,0.0233,0.7163) out=(-0.5226,0.0233,1.0521) delta=(0.0000,0.0000,0.3358) deltaMag=0.3358 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4403 dpPos=0.2425 dpMove=-0.4243 iDist=0.5597 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3476,4.1714,-0.5731) mvmt=(0.0873,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.848,7.329,93.447) lpos=(-10.348,4.171,-0.573) lprev=(-10.435,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3476,4.1714,-0.5731) mvmt=(0.0873,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5226,0.0233,1.0521) mvmt=(0.0873,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[push-back-disp] site=dispatch center=(0.4524,-0.2167,0.9472) mvmt=(0.0873,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[push-back-disp] site=dispatch center=(0.4524,-2.4279,-0.4029) mvmt=(0.0873,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[push-back-disp] site=dispatch center=(0.6467,-2.8389,2.4514) mvmt=(0.0343,0.0803,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[push-back-disp] site=dispatch center=(-10.3476,4.1714,-0.5531) mvmt=(0.0873,0.0000,0.3358) collide=False insertType=0 objState=0x303 winterp=0.4403 return=-1 +[push-back-disp] site=dispatch center=(-10.3476,4.1714,-0.5731) mvmt=(0.0873,0.0000,0.3358) collide=False insertType=1 objState=0x303 winterp=0.4403 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.848,7.329,93.447) lpos=(-10.348,4.171,-0.573) lprev=(-10.435,4.171,-0.909) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4349,4.3673,-0.5760) mvmt=(0.0000,0.1959,0.3329) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4349,4.3673,-0.5760) mvmt=(0.0000,0.1959,0.3329) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.935,7.133,93.444) lpos=(-10.435,4.367,-0.576) lprev=(-10.435,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4349,4.3673,-0.5760) mvmt=(0.0000,0.1959,0.3329) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6099,0.2192,1.0492) mvmt=(0.0000,0.1959,0.3329) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3651,-0.0208,0.9442) mvmt=(0.0000,0.1959,0.3329) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3651,-2.2321,-0.4058) mvmt=(-0.0000,0.1959,0.3329) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4322,-2.8424,2.4485) mvmt=(-0.1802,0.0769,0.3329) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4349,4.3673,-0.5560) mvmt=(0.0000,0.1959,0.3329) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.935,7.133,93.444) lpos=(-10.435,4.367,-0.576) lprev=(-10.435,4.171,-0.909) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4151,4.3739,-0.5693) mvmt=(0.0199,0.2026,0.3396) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4151,4.3739,-0.5693) mvmt=(0.0199,0.2026,0.3396) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.915,7.126,93.451) lpos=(-10.415,4.374,-0.569) lprev=(-10.435,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4151,4.3739,-0.5693) mvmt=(0.0199,0.2026,0.3396) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5901,0.2259,1.0559) mvmt=(0.0199,0.2026,0.3396) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3849,-0.0141,0.9509) mvmt=(0.0199,0.2026,0.3396) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3849,-2.2254,-0.3991) mvmt=(0.0199,0.2026,0.3396) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4339,-2.8215,2.4552) mvmt=(-0.1785,0.0977,0.3396) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4151,4.3739,-0.5493) mvmt=(0.0199,0.2026,0.3396) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.915,7.126,93.451) lpos=(-10.415,4.374,-0.569) lprev=(-10.435,4.171,-0.909) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4151,4.1714,-0.9089) mvmt=(0.0199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.915,7.329,93.111) lpos=(-10.415,4.171,-0.909) lprev=(-10.435,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5901,0.0233,0.7163) mvmt=(0.0199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3849,-0.2167,0.6113) mvmt=(0.0199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3849,-2.4279,-0.7387) mvmt=(0.0199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4151,4.1714,-0.8889) mvmt=(0.0199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4151,4.1714,-1.6589) mvmt=(0.0199,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.915,7.329,92.361) lpos=(-10.415,4.171,-1.659) lprev=(-10.435,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5901,0.0233,-0.0337) mvmt=(0.0199,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3849,-0.2167,-0.1387) mvmt=(0.0199,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3849,-0.2167,-0.1387) out=(0.3849,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4151,4.1714,-0.9089) mvmt=(0.0199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.915,7.329,93.111) lpos=(-10.415,4.171,-0.909) lprev=(-10.435,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5901,0.0233,0.7163) mvmt=(0.0199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3849,-0.2167,0.6113) mvmt=(0.0199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3849,-2.4279,-0.7387) mvmt=(0.0199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4151,4.1714,-0.8889) mvmt=(0.0199,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4317,4.3825,-0.6905) mvmt=(-0.0166,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.932,7.118,93.329) lpos=(-10.432,4.382,-0.691) lprev=(-10.415,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4317,4.3825,-0.6905) mvmt=(-0.0166,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6067,0.2344,0.9347) mvmt=(-0.0166,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3683,-0.0056,0.8297) mvmt=(-0.0166,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3683,-2.2168,-0.5203) mvmt=(-0.0166,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4195,-2.8334,2.3340) mvmt=(-0.2007,0.0675,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4317,4.3825,-0.6705) mvmt=(-0.0166,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4317,4.3825,-0.6905) mvmt=(-0.0166,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.932,7.118,93.329) lpos=(-10.432,4.382,-0.691) lprev=(-10.415,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4317,4.3825,-0.6905) mvmt=(-0.0166,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6067,0.2344,0.9347) mvmt=(-0.0166,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3683,-0.0056,0.8297) mvmt=(-0.0166,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3683,-2.2168,-0.5203) mvmt=(-0.0166,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4195,-2.8334,2.3340) mvmt=(-0.2007,0.0675,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4317,4.3825,-0.6705) mvmt=(-0.0166,0.2111,0.2184) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4317,4.1714,-0.9089) mvmt=(-0.0166,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.932,7.329,93.111) lpos=(-10.432,4.171,-0.909) lprev=(-10.415,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6067,0.0233,0.7163) mvmt=(-0.0166,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3683,-0.2167,0.6113) mvmt=(-0.0166,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3683,-2.4279,-0.7387) mvmt=(-0.0166,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4317,4.1714,-0.8889) mvmt=(-0.0166,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4317,4.1714,-1.6589) mvmt=(-0.0166,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.932,7.329,92.361) lpos=(-10.432,4.171,-1.659) lprev=(-10.415,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6067,0.0233,-0.0337) mvmt=(-0.0166,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3683,-0.2167,-0.1387) mvmt=(-0.0166,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3683,-0.2167,-0.1387) out=(0.3683,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4317,4.1714,-0.9089) mvmt=(-0.0166,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.932,7.329,93.111) lpos=(-10.432,4.171,-0.909) lprev=(-10.415,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6067,0.0233,0.7163) mvmt=(-0.0166,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3683,-0.2167,0.6113) mvmt=(-0.0166,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3683,-2.4279,-0.7387) mvmt=(-0.0166,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4317,4.1714,-0.8889) mvmt=(-0.0166,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4776,4.3609,-0.7129) mvmt=(-0.0459,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.978,7.139,93.307) lpos=(-10.478,4.361,-0.713) lprev=(-10.432,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6526,0.2128,0.9123) mvmt=(-0.0459,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3224,-0.0272,0.8073) mvmt=(-0.0459,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3224,-2.2385,-0.5427) mvmt=(-0.0459,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4214,-2.8842,2.3116) mvmt=(-0.1923,0.0321,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4776,4.3609,-0.6929) mvmt=(-0.0459,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4776,4.3609,-0.7129) mvmt=(-0.0459,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.978,7.139,93.307) lpos=(-10.478,4.361,-0.713) lprev=(-10.432,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6526,0.2128,0.9123) mvmt=(-0.0459,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3224,-0.0272,0.8073) mvmt=(-0.0459,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3224,-2.2385,-0.5427) mvmt=(-0.0459,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4214,-2.8842,2.3116) mvmt=(-0.1923,0.0321,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4776,4.3609,-0.6929) mvmt=(-0.0459,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4776,4.1714,-0.9089) mvmt=(-0.0459,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.978,7.329,93.111) lpos=(-10.478,4.171,-0.909) lprev=(-10.432,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6526,0.0233,0.7163) mvmt=(-0.0459,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3224,-0.2167,0.6113) mvmt=(-0.0459,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3224,-2.4279,-0.7387) mvmt=(-0.0459,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4776,4.1714,-0.8889) mvmt=(-0.0459,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4776,4.1714,-1.6589) mvmt=(-0.0459,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.978,7.329,92.361) lpos=(-10.478,4.171,-1.659) lprev=(-10.432,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6526,0.0233,-0.0337) mvmt=(-0.0459,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3224,-0.2167,-0.1387) mvmt=(-0.0459,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3224,-0.2167,-0.1387) out=(0.3224,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4776,4.1714,-0.9089) mvmt=(-0.0459,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.978,7.329,93.111) lpos=(-10.478,4.171,-0.909) lprev=(-10.432,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6526,0.0233,0.7163) mvmt=(-0.0459,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3224,-0.2167,0.6113) mvmt=(-0.0459,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3224,-2.4279,-0.7387) mvmt=(-0.0459,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4776,4.1714,-0.8889) mvmt=(-0.0459,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5620,4.3717,-0.7017) mvmt=(-0.0844,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.062,7.128,93.318) lpos=(-10.562,4.372,-0.702) lprev=(-10.478,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7370,0.2236,0.9235) mvmt=(-0.0844,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2381,-0.0164,0.8185) mvmt=(-0.0844,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2381,-2.2276,-0.5315) mvmt=(-0.0844,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3783,-2.9575,2.3228) mvmt=(-0.2173,0.0010,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5620,4.3717,-0.6817) mvmt=(-0.0844,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5620,4.3717,-0.7017) mvmt=(-0.0844,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.062,7.128,93.318) lpos=(-10.562,4.372,-0.702) lprev=(-10.478,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7370,0.2236,0.9235) mvmt=(-0.0844,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2381,-0.0164,0.8185) mvmt=(-0.0844,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2381,-2.2276,-0.5315) mvmt=(-0.0844,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3783,-2.9575,2.3228) mvmt=(-0.2173,0.0010,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5620,4.3717,-0.6817) mvmt=(-0.0844,0.2003,0.2072) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5620,4.1714,-0.9089) mvmt=(-0.0844,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.062,7.329,93.111) lpos=(-10.562,4.171,-0.909) lprev=(-10.478,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7370,0.0233,0.7163) mvmt=(-0.0844,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2381,-0.2167,0.6113) mvmt=(-0.0844,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2381,-2.4279,-0.7387) mvmt=(-0.0844,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5620,4.1714,-0.8889) mvmt=(-0.0844,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5620,4.1714,-1.6589) mvmt=(-0.0844,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.062,7.329,92.361) lpos=(-10.562,4.171,-1.659) lprev=(-10.478,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7370,0.0233,-0.0337) mvmt=(-0.0844,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2381,-0.2167,-0.1387) mvmt=(-0.0844,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2381,-0.2167,-0.1387) out=(0.2381,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.5620,4.1714,-0.9089) mvmt=(-0.0844,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.062,7.329,93.111) lpos=(-10.562,4.171,-0.909) lprev=(-10.478,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7370,0.0233,0.7163) mvmt=(-0.0844,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2381,-0.2167,0.6113) mvmt=(-0.0844,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2381,-2.4279,-0.7387) mvmt=(-0.0844,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5620,4.1714,-0.8889) mvmt=(-0.0844,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6716,4.3725,-0.7009) mvmt=(-0.1096,0.2011,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.172,7.128,93.319) lpos=(-10.672,4.372,-0.701) lprev=(-10.562,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8466,0.2244,0.9243) mvmt=(-0.1096,0.2011,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1284,-0.0156,0.8193) mvmt=(-0.1096,0.2011,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1284,-2.2268,-0.5307) mvmt=(-0.1096,0.2011,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3346,-3.0581,2.3236) mvmt=(-0.2280,-0.0220,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6716,4.3725,-0.6809) mvmt=(-0.1096,0.2011,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6716,4.3725,-0.7009) mvmt=(-0.1096,0.2011,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.172,7.128,93.319) lpos=(-10.672,4.372,-0.701) lprev=(-10.562,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8466,0.2244,0.9243) mvmt=(-0.1096,0.2011,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1284,-0.0156,0.8193) mvmt=(-0.1096,0.2011,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1284,-2.2268,-0.5307) mvmt=(-0.1096,0.2011,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3346,-3.0581,2.3236) mvmt=(-0.2280,-0.0220,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6716,4.3725,-0.6809) mvmt=(-0.1096,0.2011,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6716,4.1714,-0.9089) mvmt=(-0.1096,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.172,7.329,93.111) lpos=(-10.672,4.171,-0.909) lprev=(-10.562,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8466,0.0233,0.7163) mvmt=(-0.1096,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1284,-0.2167,0.6113) mvmt=(-0.1096,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1284,-2.4279,-0.7387) mvmt=(-0.1096,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6716,4.1714,-0.8889) mvmt=(-0.1096,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6716,4.1714,-1.6589) mvmt=(-0.1096,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.172,7.329,92.361) lpos=(-10.672,4.171,-1.659) lprev=(-10.562,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8466,0.0233,-0.0337) mvmt=(-0.1096,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1284,-0.2167,-0.1387) mvmt=(-0.1096,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1284,-0.2167,-0.1387) out=(0.1284,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6716,4.1714,-0.9089) mvmt=(-0.1096,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.172,7.329,93.111) lpos=(-10.672,4.171,-0.909) lprev=(-10.562,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8466,0.0233,0.7163) mvmt=(-0.1096,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1284,-0.2167,0.6113) mvmt=(-0.1096,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1284,-2.4279,-0.7387) mvmt=(-0.1096,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6716,4.1714,-0.8889) mvmt=(-0.1096,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7790,4.3684,-0.7051) mvmt=(-0.1074,0.1970,0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.279,7.132,93.315) lpos=(-10.779,4.368,-0.705) lprev=(-10.672,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9540,0.2204,0.9201) mvmt=(-0.1074,0.1970,0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0210,-0.0196,0.8151) mvmt=(-0.1074,0.1970,0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0210,-2.2309,-0.5349) mvmt=(-0.1074,0.1970,0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2962,-3.1585,2.3194) mvmt=(-0.2234,-0.0215,0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7790,4.3684,-0.6851) mvmt=(-0.1074,0.1970,0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7790,4.3684,-0.7051) mvmt=(-0.1074,0.1970,0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.279,7.132,93.315) lpos=(-10.779,4.368,-0.705) lprev=(-10.672,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9540,0.2204,0.9201) mvmt=(-0.1074,0.1970,0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0210,-0.0196,0.8151) mvmt=(-0.1074,0.1970,0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0210,-2.2309,-0.5349) mvmt=(-0.1074,0.1970,0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2962,-3.1585,2.3194) mvmt=(-0.2234,-0.0215,0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7790,4.3684,-0.6851) mvmt=(-0.1074,0.1970,0.2038) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7790,4.1714,-0.9089) mvmt=(-0.1074,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.279,7.329,93.111) lpos=(-10.779,4.171,-0.909) lprev=(-10.672,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9540,0.0233,0.7163) mvmt=(-0.1074,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0210,-0.2167,0.6113) mvmt=(-0.1074,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0210,-2.4279,-0.7387) mvmt=(-0.1074,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7790,4.1714,-0.8889) mvmt=(-0.1074,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7790,4.1714,-1.6589) mvmt=(-0.1074,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.279,7.329,92.361) lpos=(-10.779,4.171,-1.659) lprev=(-10.672,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9540,0.0233,-0.0337) mvmt=(-0.1074,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0210,-0.2167,-0.1387) mvmt=(-0.1074,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0210,-0.2167,-0.1387) out=(0.0210,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.7790,4.1714,-0.9089) mvmt=(-0.1074,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.279,7.329,93.111) lpos=(-10.779,4.171,-0.909) lprev=(-10.672,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9540,0.0233,0.7163) mvmt=(-0.1074,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0210,-0.2167,0.6113) mvmt=(-0.1074,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0210,-2.4279,-0.7387) mvmt=(-0.1074,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7790,4.1714,-0.8889) mvmt=(-0.1074,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8914,4.3775,-0.6957) mvmt=(-0.1124,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.391,7.123,93.324) lpos=(-10.891,4.377,-0.696) lprev=(-10.779,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8914,4.3775,-0.6957) mvmt=(-0.1124,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0664,0.2294,0.9295) mvmt=(-0.1124,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0914,-0.0106,0.8245) mvmt=(-0.1124,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0914,-2.2218,-0.5255) mvmt=(-0.1124,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8914,4.3775,-0.6757) mvmt=(-0.1124,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8914,4.3775,-0.6957) mvmt=(-0.1124,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.391,7.123,93.324) lpos=(-10.891,4.377,-0.696) lprev=(-10.779,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8914,4.3775,-0.6957) mvmt=(-0.1124,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0664,0.2294,0.9295) mvmt=(-0.1124,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0914,-0.0106,0.8245) mvmt=(-0.1124,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0914,-2.2218,-0.5255) mvmt=(-0.1124,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8914,4.3775,-0.6757) mvmt=(-0.1124,0.2061,0.2132) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8914,4.1714,-0.9089) mvmt=(-0.1124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.391,7.329,93.111) lpos=(-10.891,4.171,-0.909) lprev=(-10.779,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0664,0.0233,0.7163) mvmt=(-0.1124,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0914,-0.2167,0.6113) mvmt=(-0.1124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0914,-2.4279,-0.7387) mvmt=(-0.1124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8914,4.1714,-0.8889) mvmt=(-0.1124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8914,4.1714,-1.6589) mvmt=(-0.1124,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.391,7.329,92.361) lpos=(-10.891,4.171,-1.659) lprev=(-10.779,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0664,0.0233,-0.0337) mvmt=(-0.1124,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0914,-0.2167,-0.1387) mvmt=(-0.1124,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0914,-0.2167,-0.1387) out=(-0.0914,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.8914,4.1714,-0.9089) mvmt=(-0.1124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.391,7.329,93.111) lpos=(-10.891,4.171,-0.909) lprev=(-10.779,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0664,0.0233,0.7163) mvmt=(-0.1124,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0914,-0.2167,0.6113) mvmt=(-0.1124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0914,-2.4279,-0.7387) mvmt=(-0.1124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8914,4.1714,-0.8889) mvmt=(-0.1124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9957,4.3625,-0.7112) mvmt=(-0.1042,0.1912,0.1977) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.496,7.137,93.309) lpos=(-10.996,4.363,-0.711) lprev=(-10.891,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1707,0.2145,0.9140) mvmt=(-0.1042,0.1912,0.1977) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1956,-0.0255,0.8091) mvmt=(-0.1042,0.1912,0.1977) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1956,-2.2368,-0.5410) mvmt=(-0.1042,0.1912,0.1977) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9957,4.3625,-0.6912) mvmt=(-0.1042,0.1912,0.1977) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9957,4.3625,-0.7112) mvmt=(-0.1042,0.1912,0.1977) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.496,7.137,93.309) lpos=(-10.996,4.363,-0.711) lprev=(-10.891,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1707,0.2145,0.9140) mvmt=(-0.1042,0.1912,0.1977) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1956,-0.0255,0.8091) mvmt=(-0.1042,0.1912,0.1977) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1956,-2.2368,-0.5410) mvmt=(-0.1042,0.1912,0.1977) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9957,4.3625,-0.6912) mvmt=(-0.1042,0.1912,0.1977) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9957,4.1714,-0.9089) mvmt=(-0.1042,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.496,7.329,93.111) lpos=(-10.996,4.171,-0.909) lprev=(-10.891,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1707,0.0233,0.7163) mvmt=(-0.1042,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1956,-0.2167,0.6113) mvmt=(-0.1042,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1956,-2.4279,-0.7387) mvmt=(-0.1042,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9957,4.1714,-0.8889) mvmt=(-0.1042,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9957,4.1714,-1.6589) mvmt=(-0.1042,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.496,7.329,92.361) lpos=(-10.996,4.171,-1.659) lprev=(-10.891,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1707,0.0233,-0.0337) mvmt=(-0.1042,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1956,-0.2167,-0.1387) mvmt=(-0.1042,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1956,-0.2167,-0.1387) out=(-0.1956,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.9957,4.1714,-0.9089) mvmt=(-0.1042,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.496,7.329,93.111) lpos=(-10.996,4.171,-0.909) lprev=(-10.891,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1707,0.0233,0.7163) mvmt=(-0.1042,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1956,-0.2167,0.6113) mvmt=(-0.1042,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1956,-2.4279,-0.7387) mvmt=(-0.1042,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9957,4.1714,-0.8889) mvmt=(-0.1042,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1070,4.3756,-0.6977) mvmt=(-0.1113,0.2042,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.124,93.322) lpos=(-11.107,4.376,-0.698) lprev=(-10.996,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1070,4.3756,-0.6977) mvmt=(-0.1113,0.2042,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2820,0.2275,0.9275) mvmt=(-0.1113,0.2042,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.0125,0.8225) mvmt=(-0.1113,0.2042,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.2238,-0.5275) mvmt=(-0.1113,0.2042,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3756,-0.6777) mvmt=(-0.1113,0.2042,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3756,-0.6977) mvmt=(-0.1113,0.2042,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.124,93.322) lpos=(-11.107,4.376,-0.698) lprev=(-10.996,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1070,4.3756,-0.6977) mvmt=(-0.1113,0.2042,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2820,0.2275,0.9275) mvmt=(-0.1113,0.2042,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.0125,0.8225) mvmt=(-0.1113,0.2042,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.2238,-0.5275) mvmt=(-0.1113,0.2042,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3756,-0.6777) mvmt=(-0.1113,0.2042,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.1714,-0.9089) mvmt=(-0.1113,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.329,93.111) lpos=(-11.107,4.171,-0.909) lprev=(-10.996,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2820,0.0233,0.7163) mvmt=(-0.1113,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.2167,0.6113) mvmt=(-0.1113,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.4279,-0.7387) mvmt=(-0.1113,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.1714,-0.8889) mvmt=(-0.1113,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.1714,-1.6589) mvmt=(-0.1113,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.329,92.361) lpos=(-11.107,4.171,-1.659) lprev=(-10.996,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2820,0.0233,-0.0337) mvmt=(-0.1113,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.2167,-0.1387) mvmt=(-0.1113,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3070,-0.2167,-0.1387) out=(-0.3070,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.1070,4.1714,-0.9089) mvmt=(-0.1113,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.329,93.111) lpos=(-11.107,4.171,-0.909) lprev=(-10.996,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2820,0.0233,0.7163) mvmt=(-0.1113,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.2167,0.6113) mvmt=(-0.1113,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.4279,-0.7387) mvmt=(-0.1113,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.1714,-0.8889) mvmt=(-0.1113,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2081,4.3568,-0.7171) mvmt=(-0.1011,0.1854,0.1918) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2081,4.3568,-0.7171) mvmt=(-0.1011,0.1854,0.1918) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.708,7.143,93.303) lpos=(-11.208,4.357,-0.717) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3831,0.2087,0.9081) mvmt=(-0.1011,0.1854,0.1918) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4081,-0.0313,0.8031) mvmt=(-0.1011,0.1854,0.1918) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4081,-2.2425,-0.5469) mvmt=(-0.1011,0.1854,0.1918) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2081,4.3568,-0.6971) mvmt=(-0.1011,0.1854,0.1918) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.708,7.143,93.303) lpos=(-11.208,4.357,-0.717) lprev=(-11.107,4.171,-0.909) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1070,4.3568,-0.7171) mvmt=(0.0000,0.1854,0.1918) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.143,93.303) lpos=(-11.107,4.357,-0.717) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2820,0.2087,0.9081) mvmt=(0.0000,0.1854,0.1918) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.0313,0.8031) mvmt=(0.0000,0.1854,0.1918) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.2425,-0.5469) mvmt=(-0.0000,0.1854,0.1918) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3568,-0.6971) mvmt=(0.0000,0.1854,0.1918) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3568,-0.7171) mvmt=(0.0000,0.1854,0.1918) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.143,93.303) lpos=(-11.107,4.357,-0.717) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2820,0.2087,0.9081) mvmt=(0.0000,0.1854,0.1918) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.0313,0.8031) mvmt=(0.0000,0.1854,0.1918) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.2425,-0.5469) mvmt=(-0.0000,0.1854,0.1918) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3568,-0.6971) mvmt=(0.0000,0.1854,0.1918) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2135,4.3667,-0.7068) mvmt=(-0.1065,0.1953,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2135,4.3667,-0.7068) mvmt=(-0.1065,0.1953,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.714,7.133,93.313) lpos=(-11.214,4.367,-0.707) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3885,0.2187,0.9184) mvmt=(-0.1065,0.1953,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4135,-0.0213,0.8134) mvmt=(-0.1065,0.1953,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4135,-2.2326,-0.5366) mvmt=(-0.1065,0.1953,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2135,4.3667,-0.6868) mvmt=(-0.1065,0.1953,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.714,7.133,93.313) lpos=(-11.214,4.367,-0.707) lprev=(-11.107,4.171,-0.909) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1070,4.3667,-0.7068) mvmt=(0.0000,0.1953,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.133,93.313) lpos=(-11.107,4.367,-0.707) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2820,0.2187,0.9184) mvmt=(0.0000,0.1953,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.0213,0.8134) mvmt=(0.0000,0.1953,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.2326,-0.5366) mvmt=(-0.0000,0.1953,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3667,-0.6868) mvmt=(0.0000,0.1953,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3667,-0.7068) mvmt=(0.0000,0.1953,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.133,93.313) lpos=(-11.107,4.367,-0.707) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2820,0.2187,0.9184) mvmt=(0.0000,0.1953,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.0213,0.8134) mvmt=(0.0000,0.1953,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.2326,-0.5366) mvmt=(-0.0000,0.1953,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3667,-0.6868) mvmt=(0.0000,0.1953,0.2021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2094,4.3591,-0.7147) mvmt=(-0.1024,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2094,4.3591,-0.7147) mvmt=(-0.1024,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.709,7.141,93.305) lpos=(-11.209,4.359,-0.715) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3844,0.2110,0.9105) mvmt=(-0.1024,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4093,-0.0290,0.8055) mvmt=(-0.1024,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4093,-2.2402,-0.5445) mvmt=(-0.1024,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2094,4.3591,-0.6947) mvmt=(-0.1024,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.709,7.141,93.305) lpos=(-11.209,4.359,-0.715) lprev=(-11.107,4.171,-0.909) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1070,4.3591,-0.7147) mvmt=(0.0000,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.141,93.305) lpos=(-11.107,4.359,-0.715) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2820,0.2110,0.9105) mvmt=(0.0000,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.0290,0.8055) mvmt=(0.0000,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.2402,-0.5445) mvmt=(-0.0000,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3591,-0.6947) mvmt=(0.0000,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3591,-0.7147) mvmt=(0.0000,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.141,93.305) lpos=(-11.107,4.359,-0.715) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2820,0.2110,0.9105) mvmt=(0.0000,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.0290,0.8055) mvmt=(0.0000,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.2402,-0.5445) mvmt=(-0.0000,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3591,-0.6947) mvmt=(0.0000,0.1877,0.1942) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2096,4.3595,-0.7142) mvmt=(-0.1026,0.1882,0.1947) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2096,4.3595,-0.7142) mvmt=(-0.1026,0.1882,0.1947) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.710,7.140,93.306) lpos=(-11.210,4.360,-0.714) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3846,0.2115,0.9110) mvmt=(-0.1026,0.1882,0.1947) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4096,-0.0285,0.8060) mvmt=(-0.1026,0.1882,0.1947) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4096,-2.2398,-0.5440) mvmt=(-0.1026,0.1882,0.1947) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2096,4.3595,-0.6942) mvmt=(-0.1026,0.1882,0.1947) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.710,7.140,93.306) lpos=(-11.210,4.360,-0.714) lprev=(-11.107,4.171,-0.909) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1070,4.3595,-0.7142) mvmt=(0.0000,0.1882,0.1947) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.140,93.306) lpos=(-11.107,4.360,-0.714) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2820,0.2115,0.9110) mvmt=(0.0000,0.1882,0.1947) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.0285,0.8060) mvmt=(0.0000,0.1882,0.1947) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.2398,-0.5440) mvmt=(-0.0000,0.1882,0.1947) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3595,-0.6942) mvmt=(0.0000,0.1882,0.1947) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3595,-0.7142) mvmt=(0.0000,0.1882,0.1947) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.140,93.306) lpos=(-11.107,4.360,-0.714) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2820,0.2115,0.9110) mvmt=(0.0000,0.1882,0.1947) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.0285,0.8060) mvmt=(0.0000,0.1882,0.1947) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.2398,-0.5440) mvmt=(-0.0000,0.1882,0.1947) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3595,-0.6942) mvmt=(0.0000,0.1882,0.1947) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2101,4.3605,-0.7133) mvmt=(-0.1031,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2101,4.3605,-0.7133) mvmt=(-0.1031,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.710,7.140,93.307) lpos=(-11.210,4.360,-0.713) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3851,0.2124,0.9119) mvmt=(-0.1031,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4101,-0.0276,0.8069) mvmt=(-0.1031,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4101,-2.2388,-0.5431) mvmt=(-0.1031,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2101,4.3605,-0.6933) mvmt=(-0.1031,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.710,7.140,93.307) lpos=(-11.210,4.360,-0.713) lprev=(-11.107,4.171,-0.909) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1070,4.3605,-0.7133) mvmt=(0.0000,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.140,93.307) lpos=(-11.107,4.360,-0.713) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2820,0.2124,0.9119) mvmt=(0.0000,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.0276,0.8069) mvmt=(0.0000,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.2388,-0.5431) mvmt=(-0.0000,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3605,-0.6933) mvmt=(0.0000,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3605,-0.7133) mvmt=(0.0000,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.140,93.307) lpos=(-11.107,4.360,-0.713) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2820,0.2124,0.9119) mvmt=(0.0000,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.0276,0.8069) mvmt=(0.0000,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.2388,-0.5431) mvmt=(-0.0000,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3605,-0.6933) mvmt=(0.0000,0.1891,0.1956) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2104,4.3610,-0.7127) mvmt=(-0.1034,0.1896,0.1962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2104,4.3610,-0.7127) mvmt=(-0.1034,0.1896,0.1962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.710,7.139,93.307) lpos=(-11.210,4.361,-0.713) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3854,0.2130,0.9125) mvmt=(-0.1034,0.1896,0.1962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4104,-0.0270,0.8075) mvmt=(-0.1034,0.1896,0.1962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4104,-2.2383,-0.5425) mvmt=(-0.1034,0.1896,0.1962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2104,4.3610,-0.6927) mvmt=(-0.1034,0.1896,0.1962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.710,7.139,93.307) lpos=(-11.210,4.361,-0.713) lprev=(-11.107,4.171,-0.909) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1070,4.3610,-0.7127) mvmt=(0.0000,0.1896,0.1962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.139,93.307) lpos=(-11.107,4.361,-0.713) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2820,0.2130,0.9125) mvmt=(0.0000,0.1896,0.1962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.0270,0.8075) mvmt=(0.0000,0.1896,0.1962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.2383,-0.5425) mvmt=(-0.0000,0.1896,0.1962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3610,-0.6927) mvmt=(0.0000,0.1896,0.1962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3610,-0.7127) mvmt=(0.0000,0.1896,0.1962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.139,93.307) lpos=(-11.107,4.361,-0.713) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2820,0.2130,0.9125) mvmt=(0.0000,0.1896,0.1962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.0270,0.8075) mvmt=(0.0000,0.1896,0.1962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.2383,-0.5425) mvmt=(-0.0000,0.1896,0.1962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3610,-0.6927) mvmt=(0.0000,0.1896,0.1962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2156,4.3705,-0.7029) mvmt=(-0.1086,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2156,4.3705,-0.7029) mvmt=(-0.1086,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.716,7.130,93.317) lpos=(-11.216,4.370,-0.703) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3906,0.2224,0.9223) mvmt=(-0.1086,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4156,-0.0176,0.8173) mvmt=(-0.1086,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4156,-2.2288,-0.5327) mvmt=(-0.1086,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2156,4.3705,-0.6829) mvmt=(-0.1086,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.716,7.130,93.317) lpos=(-11.216,4.370,-0.703) lprev=(-11.107,4.171,-0.909) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1070,4.3705,-0.7029) mvmt=(0.0000,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.130,93.317) lpos=(-11.107,4.370,-0.703) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2820,0.2224,0.9223) mvmt=(0.0000,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.0176,0.8173) mvmt=(0.0000,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.2288,-0.5327) mvmt=(-0.0000,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3705,-0.6829) mvmt=(0.0000,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3705,-0.7029) mvmt=(0.0000,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.130,93.317) lpos=(-11.107,4.370,-0.703) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2820,0.2224,0.9223) mvmt=(0.0000,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.0176,0.8173) mvmt=(0.0000,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.2288,-0.5327) mvmt=(-0.0000,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3705,-0.6829) mvmt=(0.0000,0.1991,0.2060) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2119,4.3638,-0.7099) mvmt=(-0.1049,0.1924,0.1990) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2119,4.3638,-0.7099) mvmt=(-0.1049,0.1924,0.1990) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.712,7.136,93.310) lpos=(-11.212,4.364,-0.710) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3869,0.2157,0.9153) mvmt=(-0.1049,0.1924,0.1990) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4119,-0.0243,0.8103) mvmt=(-0.1049,0.1924,0.1990) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4119,-2.2355,-0.5397) mvmt=(-0.1049,0.1924,0.1990) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2119,4.3638,-0.6899) mvmt=(-0.1049,0.1924,0.1990) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.712,7.136,93.310) lpos=(-11.212,4.364,-0.710) lprev=(-11.107,4.171,-0.909) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1070,4.3638,-0.7099) mvmt=(0.0000,0.1924,0.1990) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.136,93.310) lpos=(-11.107,4.364,-0.710) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2820,0.2157,0.9153) mvmt=(0.0000,0.1924,0.1990) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.0243,0.8103) mvmt=(0.0000,0.1924,0.1990) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.2355,-0.5397) mvmt=(-0.0000,0.1924,0.1990) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3638,-0.6899) mvmt=(0.0000,0.1924,0.1990) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3638,-0.7099) mvmt=(0.0000,0.1924,0.1990) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.136,93.310) lpos=(-11.107,4.364,-0.710) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2820,0.2157,0.9153) mvmt=(0.0000,0.1924,0.1990) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.0243,0.8103) mvmt=(0.0000,0.1924,0.1990) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.2355,-0.5397) mvmt=(-0.0000,0.1924,0.1990) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3638,-0.6899) mvmt=(0.0000,0.1924,0.1990) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1918,4.3678,-0.7057) mvmt=(-0.0848,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1918,4.3678,-0.7057) mvmt=(-0.0848,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.692,7.132,93.314) lpos=(-11.192,4.368,-0.706) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3668,0.2198,0.9195) mvmt=(-0.0848,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3918,-0.0202,0.8145) mvmt=(-0.0848,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3918,-2.2315,-0.5355) mvmt=(-0.0848,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1918,4.3678,-0.6857) mvmt=(-0.0848,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.692,7.132,93.314) lpos=(-11.192,4.368,-0.706) lprev=(-11.107,4.171,-0.909) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1070,4.3678,-0.7057) mvmt=(0.0000,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.132,93.314) lpos=(-11.107,4.368,-0.706) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2820,0.2198,0.9195) mvmt=(0.0000,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.0202,0.8145) mvmt=(0.0000,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.2315,-0.5355) mvmt=(-0.0000,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3678,-0.6857) mvmt=(0.0000,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3678,-0.7057) mvmt=(0.0000,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.132,93.314) lpos=(-11.107,4.368,-0.706) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2820,0.2198,0.9195) mvmt=(0.0000,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.0202,0.8145) mvmt=(0.0000,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.2315,-0.5355) mvmt=(-0.0000,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3678,-0.6857) mvmt=(0.0000,0.1965,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1576,4.3665,-0.7070) mvmt=(-0.0506,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1576,4.3665,-0.7070) mvmt=(-0.0506,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.658,7.133,93.313) lpos=(-11.158,4.367,-0.707) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3326,0.2185,0.9182) mvmt=(-0.0506,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3576,-0.0215,0.8132) mvmt=(-0.0506,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3576,-2.2328,-0.5368) mvmt=(-0.0506,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1576,4.3665,-0.6870) mvmt=(-0.0506,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.658,7.133,93.313) lpos=(-11.158,4.367,-0.707) lprev=(-11.107,4.171,-0.909) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1070,4.3665,-0.7070) mvmt=(0.0000,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.133,93.313) lpos=(-11.107,4.367,-0.707) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2820,0.2185,0.9182) mvmt=(0.0000,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.0215,0.8132) mvmt=(0.0000,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.2328,-0.5368) mvmt=(-0.0000,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3665,-0.6870) mvmt=(0.0000,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3665,-0.7070) mvmt=(0.0000,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.133,93.313) lpos=(-11.107,4.367,-0.707) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2820,0.2185,0.9182) mvmt=(0.0000,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.0215,0.8132) mvmt=(0.0000,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.2328,-0.5368) mvmt=(-0.0000,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3665,-0.6870) mvmt=(0.0000,0.1952,0.2019) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1244,4.3731,-0.7003) mvmt=(-0.0174,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1244,4.3731,-0.7003) mvmt=(-0.0174,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.624,7.127,93.320) lpos=(-11.124,4.373,-0.700) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2994,0.2250,0.9249) mvmt=(-0.0174,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3244,-0.0150,0.8199) mvmt=(-0.0174,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3244,-2.2263,-0.5301) mvmt=(-0.0174,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1244,4.3731,-0.6803) mvmt=(-0.0174,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.624,7.127,93.320) lpos=(-11.124,4.373,-0.700) lprev=(-11.107,4.171,-0.909) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1070,4.3731,-0.7003) mvmt=(0.0000,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.127,93.320) lpos=(-11.107,4.373,-0.700) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2820,0.2250,0.9249) mvmt=(0.0000,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.0150,0.8199) mvmt=(0.0000,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.2263,-0.5301) mvmt=(-0.0000,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3731,-0.6803) mvmt=(0.0000,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3731,-0.7003) mvmt=(0.0000,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.607,7.127,93.320) lpos=(-11.107,4.373,-0.700) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2820,0.2250,0.9249) mvmt=(0.0000,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-0.0150,0.8199) mvmt=(0.0000,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3070,-2.2263,-0.5301) mvmt=(-0.0000,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1070,4.3731,-0.6803) mvmt=(0.0000,0.2017,0.2086) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0918,4.3646,-0.7090) mvmt=(0.0152,0.1933,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.592,7.135,93.311) lpos=(-11.092,4.365,-0.709) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2668,0.2166,0.9162) mvmt=(0.0152,0.1933,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2917,-0.0234,0.8112) mvmt=(0.0152,0.1933,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2917,-2.2347,-0.5388) mvmt=(0.0152,0.1933,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0918,4.3646,-0.6890) mvmt=(0.0152,0.1933,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0918,4.3646,-0.7090) mvmt=(0.0152,0.1933,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.592,7.135,93.311) lpos=(-11.092,4.365,-0.709) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2668,0.2166,0.9162) mvmt=(0.0152,0.1933,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2917,-0.0234,0.8112) mvmt=(0.0152,0.1933,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2917,-2.2347,-0.5388) mvmt=(0.0152,0.1933,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0918,4.3646,-0.6890) mvmt=(0.0152,0.1933,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0918,4.1714,-0.9089) mvmt=(0.0152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.592,7.329,93.111) lpos=(-11.092,4.171,-0.909) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2668,0.0233,0.7163) mvmt=(0.0152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2917,-0.2167,0.6113) mvmt=(0.0152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2917,-2.4279,-0.7387) mvmt=(0.0152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0918,4.1714,-0.8889) mvmt=(0.0152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0918,4.1714,-1.6589) mvmt=(0.0152,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.592,7.329,92.361) lpos=(-11.092,4.171,-1.659) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2668,0.0233,-0.0337) mvmt=(0.0152,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2917,-0.2167,-0.1387) mvmt=(0.0152,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2917,-0.2167,-0.1387) out=(-0.2917,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0918,4.1714,-0.9089) mvmt=(0.0152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.592,7.329,93.111) lpos=(-11.092,4.171,-0.909) lprev=(-11.107,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2668,0.0233,0.7163) mvmt=(0.0152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2917,-0.2167,0.6113) mvmt=(0.0152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2917,-2.4279,-0.7387) mvmt=(0.0152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0918,4.1714,-0.8889) mvmt=(0.0152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0450,4.3628,-0.7109) mvmt=(0.0467,0.1914,0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.545,7.137,93.309) lpos=(-11.045,4.363,-0.711) lprev=(-11.092,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2200,0.2147,0.9143) mvmt=(0.0467,0.1914,0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2450,-0.0253,0.8093) mvmt=(0.0467,0.1914,0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2450,-2.2365,-0.5407) mvmt=(0.0467,0.1914,0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0450,4.3628,-0.6909) mvmt=(0.0467,0.1914,0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0450,4.3628,-0.7109) mvmt=(0.0467,0.1914,0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.545,7.137,93.309) lpos=(-11.045,4.363,-0.711) lprev=(-11.092,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2200,0.2147,0.9143) mvmt=(0.0467,0.1914,0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2450,-0.0253,0.8093) mvmt=(0.0467,0.1914,0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2450,-2.2365,-0.5407) mvmt=(0.0467,0.1914,0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0450,4.3628,-0.6909) mvmt=(0.0467,0.1914,0.1980) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0450,4.1714,-0.9089) mvmt=(0.0467,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.545,7.329,93.111) lpos=(-11.045,4.171,-0.909) lprev=(-11.092,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2200,0.0233,0.7163) mvmt=(0.0467,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2450,-0.2167,0.6113) mvmt=(0.0467,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2450,-2.4279,-0.7387) mvmt=(0.0467,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0450,4.1714,-0.8889) mvmt=(0.0467,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0450,4.1714,-1.6589) mvmt=(0.0467,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.545,7.329,92.361) lpos=(-11.045,4.171,-1.659) lprev=(-11.092,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2200,0.0233,-0.0337) mvmt=(0.0467,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2450,-0.2167,-0.1387) mvmt=(0.0467,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2450,-0.2167,-0.1387) out=(-0.2450,-0.2167,0.6113) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0450,4.1714,-0.9089) mvmt=(0.0467,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.545,7.329,93.111) lpos=(-11.045,4.171,-0.909) lprev=(-11.092,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2200,0.0233,0.7163) mvmt=(0.0467,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2450,-0.2167,0.6113) mvmt=(0.0467,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2450,-2.4279,-0.7387) mvmt=(0.0467,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0450,4.1714,-0.8889) mvmt=(0.0467,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementBackup Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0904,4.0697,-1.0141) mvmt=(-0.0453,-0.1017,-0.1052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.430,93.006) lpos=(-11.090,4.070,-1.014) lprev=(-11.045,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.0783,0.6111) mvmt=(-0.0453,-0.1017,-0.1052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-0.3183,0.5061) mvmt=(-0.0453,-0.1017,-0.1052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-2.5296,-0.8439) mvmt=(-0.0453,-0.1017,-0.1052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,4.0697,-0.9941) mvmt=(-0.0453,-0.1017,-0.1052) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,4.0697,-1.7641) mvmt=(-0.0453,-0.1017,-0.8552) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.430,92.256) lpos=(-11.090,4.070,-1.764) lprev=(-11.045,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.0783,-0.1389) mvmt=(-0.0453,-0.1017,-0.8552) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-0.3183,-0.2439) mvmt=(-0.0453,-0.1017,-0.8552) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2904,-0.3183,-0.2439) out=(-0.2904,-0.3183,0.5061) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0904,4.0697,-1.0141) mvmt=(-0.0453,-0.1017,-0.1052) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.430,93.006) lpos=(-11.090,4.070,-1.014) lprev=(-11.045,4.171,-0.909) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.0783,0.6111) mvmt=(-0.0453,-0.1017,-0.1052) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-0.3183,0.5061) mvmt=(-0.0453,-0.1017,-0.1052) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-2.5296,-0.8439) mvmt=(-0.0453,-0.1017,-0.1052) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,4.0697,-0.9941) mvmt=(-0.0453,-0.1017,-0.1052) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1351,3.9695,-1.1177) mvmt=(-0.0447,-0.1002,-0.1036) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1351,3.9695,-1.1177) mvmt=(-0.0447,-0.1002,-0.1036) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.635,7.530,92.902) lpos=(-11.135,3.970,-1.118) lprev=(-11.090,4.070,-1.014) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3101,-0.1785,0.5075) mvmt=(-0.0447,-0.1002,-0.1036) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3351,-0.4185,0.4025) mvmt=(-0.0447,-0.1002,-0.1036) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3351,-2.6298,-0.9475) mvmt=(-0.0447,-0.1002,-0.1036) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1351,3.9695,-1.0977) mvmt=(-0.0447,-0.1002,-0.1036) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.635,7.530,92.902) lpos=(-11.135,3.970,-1.118) lprev=(-11.090,4.070,-1.014) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0904,3.9695,-1.1177) mvmt=(0.0000,-0.1002,-0.1036) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.530,92.902) lpos=(-11.090,3.970,-1.118) lprev=(-11.090,4.070,-1.014) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.1785,0.5075) mvmt=(0.0000,-0.1002,-0.1036) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-0.4185,0.4025) mvmt=(0.0000,-0.1002,-0.1036) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-2.6298,-0.9475) mvmt=(0.0000,-0.1002,-0.1036) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.9695,-1.0977) mvmt=(0.0000,-0.1002,-0.1036) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.9695,-1.8677) mvmt=(0.0000,-0.1002,-0.8536) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.530,92.152) lpos=(-11.090,3.970,-1.868) lprev=(-11.090,4.070,-1.014) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.1785,-0.2425) mvmt=(0.0000,-0.1002,-0.8536) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-0.4185,-0.3475) mvmt=(0.0000,-0.1002,-0.8536) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2904,-0.4185,-0.3475) out=(-0.2904,-0.4185,0.4025) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0904,3.9695,-1.1177) mvmt=(0.0000,-0.1002,-0.1036) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.530,92.902) lpos=(-11.090,3.970,-1.118) lprev=(-11.090,4.070,-1.014) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.1785,0.5075) mvmt=(0.0000,-0.1002,-0.1036) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-0.4185,0.4025) mvmt=(0.0000,-0.1002,-0.1036) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-2.6298,-0.9475) mvmt=(0.0000,-0.1002,-0.1036) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.9695,-1.0977) mvmt=(0.0000,-0.1002,-0.1036) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0904,3.8668,-1.2240) mvmt=(0.0000,-0.1027,-0.1063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.633,92.796) lpos=(-11.090,3.867,-1.224) lprev=(-11.090,3.970,-1.118) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.2812,0.4012) mvmt=(0.0000,-0.1027,-0.1063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-0.5212,0.2962) mvmt=(0.0000,-0.1027,-0.1063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-2.7325,-1.0538) mvmt=(0.0000,-0.1027,-0.1063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.8668,-1.2040) mvmt=(0.0000,-0.1027,-0.1063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.8668,-1.9740) mvmt=(0.0000,-0.1027,-0.8563) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.633,92.046) lpos=(-11.090,3.867,-1.974) lprev=(-11.090,3.970,-1.118) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.2812,-0.3488) mvmt=(0.0000,-0.1027,-0.8563) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-0.5212,-0.4538) mvmt=(0.0000,-0.1027,-0.8563) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2904,-0.5212,-0.4538) out=(-0.2904,-0.5212,0.2962) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0904,3.8668,-1.2240) mvmt=(0.0000,-0.1027,-0.1063) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.633,92.796) lpos=(-11.090,3.867,-1.224) lprev=(-11.090,3.970,-1.118) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.2812,0.4012) mvmt=(0.0000,-0.1027,-0.1063) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-0.5212,0.2962) mvmt=(0.0000,-0.1027,-0.1063) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-2.7325,-1.0538) mvmt=(0.0000,-0.1027,-0.1063) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.8668,-1.2040) mvmt=(0.0000,-0.1027,-0.1063) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1364,3.7635,-1.3308) mvmt=(-0.0461,-0.1033,-0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1364,3.7635,-1.3308) mvmt=(-0.0461,-0.1033,-0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.636,7.736,92.689) lpos=(-11.136,3.764,-1.331) lprev=(-11.090,3.867,-1.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3114,-0.3845,0.2944) mvmt=(-0.0461,-0.1033,-0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3364,-0.6245,0.1894) mvmt=(-0.0461,-0.1033,-0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3364,-2.8358,-1.1606) mvmt=(-0.0461,-0.1033,-0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1364,3.7635,-1.3108) mvmt=(-0.0461,-0.1033,-0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.636,7.736,92.689) lpos=(-11.136,3.764,-1.331) lprev=(-11.090,3.867,-1.224) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0904,3.7635,-1.3308) mvmt=(0.0000,-0.1033,-0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.736,92.689) lpos=(-11.090,3.764,-1.331) lprev=(-11.090,3.867,-1.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.3845,0.2944) mvmt=(0.0000,-0.1033,-0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-0.6245,0.1894) mvmt=(0.0000,-0.1033,-0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-2.8358,-1.1606) mvmt=(0.0000,-0.1033,-0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.7635,-1.3108) mvmt=(0.0000,-0.1033,-0.1068) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.7635,-2.0808) mvmt=(0.0000,-0.1033,-0.8568) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.736,91.939) lpos=(-11.090,3.764,-2.081) lprev=(-11.090,3.867,-1.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.3845,-0.4556) mvmt=(0.0000,-0.1033,-0.8568) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-0.6245,-0.5606) mvmt=(0.0000,-0.1033,-0.8568) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2904,-0.6245,-0.5606) out=(-0.2904,-0.6245,0.1894) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0904,3.7635,-1.3308) mvmt=(0.0000,-0.1033,-0.1068) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.736,92.689) lpos=(-11.090,3.764,-1.331) lprev=(-11.090,3.867,-1.224) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.3845,0.2944) mvmt=(0.0000,-0.1033,-0.1068) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-0.6245,0.1894) mvmt=(0.0000,-0.1033,-0.1068) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-2.8358,-1.1606) mvmt=(0.0000,-0.1033,-0.1068) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.7635,-1.3108) mvmt=(0.0000,-0.1033,-0.1068) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0904,3.6592,-1.4387) mvmt=(0.0000,-0.1043,-0.1079) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.841,92.581) lpos=(-11.090,3.659,-1.439) lprev=(-11.090,3.764,-1.331) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.4888,0.1865) mvmt=(0.0000,-0.1043,-0.1079) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-0.7288,0.0815) mvmt=(0.0000,-0.1043,-0.1079) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-2.9401,-1.2685) mvmt=(0.0000,-0.1043,-0.1079) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.6592,-1.4187) mvmt=(0.0000,-0.1043,-0.1079) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.6592,-2.1887) mvmt=(0.0000,-0.1043,-0.8579) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.841,91.831) lpos=(-11.090,3.659,-2.189) lprev=(-11.090,3.764,-1.331) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.4888,-0.5635) mvmt=(0.0000,-0.1043,-0.8579) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-0.7288,-0.6685) mvmt=(0.0000,-0.1043,-0.8579) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2904,-0.7288,-0.6685) out=(-0.2904,-0.7288,0.0815) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0904,3.6592,-1.4387) mvmt=(0.0000,-0.1043,-0.1079) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.841,92.581) lpos=(-11.090,3.659,-1.439) lprev=(-11.090,3.764,-1.331) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.4888,0.1865) mvmt=(0.0000,-0.1043,-0.1079) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-0.7288,0.0815) mvmt=(0.0000,-0.1043,-0.1079) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-2.9401,-1.2685) mvmt=(0.0000,-0.1043,-0.1079) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.6592,-1.4187) mvmt=(0.0000,-0.1043,-0.1079) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1339,3.5617,-1.5396) mvmt=(-0.0435,-0.0975,-0.1009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1339,3.5617,-1.5396) mvmt=(-0.0435,-0.0975,-0.1009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.634,7.938,92.480) lpos=(-11.134,3.562,-1.540) lprev=(-11.090,3.659,-1.439) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3089,-0.5864,0.0856) mvmt=(-0.0435,-0.0975,-0.1009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3339,-0.8264,-0.0194) mvmt=(-0.0435,-0.0975,-0.1009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3339,-3.0376,-1.3694) mvmt=(-0.0435,-0.0975,-0.1009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1339,3.5617,-1.5196) mvmt=(-0.0435,-0.0975,-0.1009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.634,7.938,92.480) lpos=(-11.134,3.562,-1.540) lprev=(-11.090,3.659,-1.439) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0904,3.5617,-1.5396) mvmt=(0.0000,-0.0975,-0.1009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.938,92.480) lpos=(-11.090,3.562,-1.540) lprev=(-11.090,3.659,-1.439) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.5864,0.0856) mvmt=(0.0000,-0.0975,-0.1009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-0.8264,-0.0194) mvmt=(0.0000,-0.0975,-0.1009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-3.0376,-1.3694) mvmt=(0.0000,-0.0975,-0.1009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.5617,-1.5196) mvmt=(0.0000,-0.0975,-0.1009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.5617,-2.2896) mvmt=(0.0000,-0.0975,-0.8509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.938,91.730) lpos=(-11.090,3.562,-2.290) lprev=(-11.090,3.659,-1.439) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.5864,-0.6644) mvmt=(0.0000,-0.0975,-0.8509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-0.8264,-0.7694) mvmt=(0.0000,-0.0975,-0.8509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2904,-0.8264,-0.7694) out=(-0.2904,-0.8264,-0.0194) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0904,3.5617,-1.5396) mvmt=(0.0000,-0.0975,-0.1009) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,7.938,92.480) lpos=(-11.090,3.562,-1.540) lprev=(-11.090,3.659,-1.439) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.5864,0.0856) mvmt=(0.0000,-0.0975,-0.1009) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-0.8264,-0.0194) mvmt=(0.0000,-0.0975,-0.1009) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-3.0376,-1.3694) mvmt=(0.0000,-0.0975,-0.1009) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.5617,-1.5196) mvmt=(0.0000,-0.0975,-0.1009) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0904,3.4554,-1.6495) mvmt=(0.0000,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.045,92.370) lpos=(-11.090,3.455,-1.650) lprev=(-11.090,3.562,-1.540) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.6926,-0.0243) mvmt=(0.0000,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-0.9326,-0.1293) mvmt=(0.0000,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-3.1439,-1.4793) mvmt=(0.0000,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.4554,-1.6295) mvmt=(0.0000,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.4554,-2.3995) mvmt=(0.0000,-0.1062,-0.8599) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.045,91.620) lpos=(-11.090,3.455,-2.400) lprev=(-11.090,3.562,-1.540) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.6926,-0.7743) mvmt=(0.0000,-0.1062,-0.8599) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-0.9326,-0.8793) mvmt=(0.0000,-0.1062,-0.8599) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2904,-0.9326,-0.8793) out=(-0.2904,-0.9326,-0.1293) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0904,3.4554,-1.6495) mvmt=(0.0000,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.045,92.370) lpos=(-11.090,3.455,-1.650) lprev=(-11.090,3.562,-1.540) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.6926,-0.0243) mvmt=(0.0000,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-0.9326,-0.1293) mvmt=(0.0000,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-3.1439,-1.4793) mvmt=(0.0000,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.4554,-1.6295) mvmt=(0.0000,-0.1062,-0.1099) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1337,3.3584,-1.7499) mvmt=(-0.0433,-0.0970,-0.1004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1337,3.3584,-1.7499) mvmt=(-0.0433,-0.0970,-0.1004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.634,8.142,92.270) lpos=(-11.134,3.358,-1.750) lprev=(-11.090,3.455,-1.650) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3087,-0.7896,-0.1247) mvmt=(-0.0433,-0.0970,-0.1004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3336,-1.0296,-0.2297) mvmt=(-0.0433,-0.0970,-0.1004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3336,-3.2409,-1.5797) mvmt=(-0.0433,-0.0970,-0.1004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1337,3.3584,-1.7299) mvmt=(-0.0433,-0.0970,-0.1004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.634,8.142,92.270) lpos=(-11.134,3.358,-1.750) lprev=(-11.090,3.455,-1.650) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0904,3.3584,-1.7499) mvmt=(0.0000,-0.0970,-0.1004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.142,92.270) lpos=(-11.090,3.358,-1.750) lprev=(-11.090,3.455,-1.650) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.7896,-0.1247) mvmt=(0.0000,-0.0970,-0.1004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-1.0296,-0.2297) mvmt=(0.0000,-0.0970,-0.1004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-3.2409,-1.5797) mvmt=(0.0000,-0.0970,-0.1004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.3584,-1.7299) mvmt=(0.0000,-0.0970,-0.1004) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.3584,-2.4999) mvmt=(0.0000,-0.0970,-0.8504) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.142,91.520) lpos=(-11.090,3.358,-2.500) lprev=(-11.090,3.455,-1.650) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.7896,-0.8747) mvmt=(0.0000,-0.0970,-0.8504) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-1.0296,-0.9797) mvmt=(0.0000,-0.0970,-0.8504) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2904,-1.0296,-0.9797) out=(-0.2904,-1.0296,-0.2297) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0904,3.3584,-1.7499) mvmt=(0.0000,-0.0970,-0.1004) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.142,92.270) lpos=(-11.090,3.358,-1.750) lprev=(-11.090,3.455,-1.650) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.7896,-0.1247) mvmt=(0.0000,-0.0970,-0.1004) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-1.0296,-0.2297) mvmt=(0.0000,-0.0970,-0.1004) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-3.2409,-1.5797) mvmt=(0.0000,-0.0970,-0.1004) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.3584,-1.7299) mvmt=(0.0000,-0.0970,-0.1004) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0904,3.2575,-1.8542) mvmt=(0.0000,-0.1009,-0.1043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.242,92.166) lpos=(-11.090,3.258,-1.854) lprev=(-11.090,3.358,-1.750) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.8905,-0.2290) mvmt=(0.0000,-0.1009,-0.1043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-1.1305,-0.3340) mvmt=(0.0000,-0.1009,-0.1043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-3.3418,-1.6840) mvmt=(0.0000,-0.1009,-0.1043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.2575,-1.8342) mvmt=(0.0000,-0.1009,-0.1043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.2575,-2.6042) mvmt=(0.0000,-0.1009,-0.8543) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0904,3.2575,-2.6042) out=(-11.0904,3.2575,-2.5700) delta=(0.0000,0.0000,0.0342) deltaMag=0.0342 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.9544 dpPos=0.4458 dpMove=-0.7500 iDist=0.0456 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.242,91.416) lpos=(-11.090,3.258,-2.604) lprev=(-11.090,3.358,-1.750) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0904,3.2575,-2.5700) mvmt=(0.0000,-0.1009,-0.8201) collide=False insertType=0 objState=0x303 winterp=0.9544 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.242,91.450) lpos=(-11.090,3.258,-2.570) lprev=(-11.090,3.358,-1.750) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.8905,-0.9448) mvmt=(0.0000,-0.1009,-0.8201) collide=False insertType=0 objState=0x303 winterp=0.9544 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-1.1305,-1.0498) mvmt=(0.0000,-0.1009,-0.8201) collide=False insertType=0 objState=0x303 winterp=0.9544 return=-1 +[push-back] site=adjust_sphere in=(-0.2904,-1.1305,-1.0498) out=(-0.2904,-1.1305,-0.3340) delta=(0.0000,0.0000,0.7158) deltaMag=0.7158 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.9544->0.0000 dpPos=-0.0175 dpMove=-0.4975 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0904,3.2575,-1.8542) mvmt=(0.0000,-0.1009,-0.1043) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.242,92.166) lpos=(-11.090,3.258,-1.854) lprev=(-11.090,3.358,-1.750) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.8905,-0.2290) mvmt=(0.0000,-0.1009,-0.1043) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-1.1305,-0.3340) mvmt=(0.0000,-0.1009,-0.1043) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-3.3418,-1.6840) mvmt=(0.0000,-0.1009,-0.1043) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.2575,-1.8342) mvmt=(0.0000,-0.1009,-0.1043) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1336,3.1606,-1.9546) mvmt=(-0.0433,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1336,3.1606,-1.9546) mvmt=(-0.0433,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.634,8.339,92.065) lpos=(-11.134,3.161,-1.955) lprev=(-11.090,3.258,-1.854) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3086,-0.9875,-0.3294) mvmt=(-0.0433,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3336,-1.2275,-0.4344) mvmt=(-0.0433,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3336,-3.4387,-1.7844) mvmt=(-0.0433,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1336,3.1606,-1.9346) mvmt=(-0.0433,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.634,8.339,92.065) lpos=(-11.134,3.161,-1.955) lprev=(-11.090,3.258,-1.854) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0904,3.1606,-1.9546) mvmt=(0.0000,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.339,92.065) lpos=(-11.090,3.161,-1.955) lprev=(-11.090,3.258,-1.854) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.9875,-0.3294) mvmt=(0.0000,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-1.2275,-0.4344) mvmt=(0.0000,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-3.4388,-1.7844) mvmt=(0.0000,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.1606,-1.9346) mvmt=(0.0000,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.1606,-2.7046) mvmt=(0.0000,-0.0970,-0.8503) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0904,3.1606,-2.7046) out=(-11.0904,3.1606,-2.5700) delta=(0.0000,0.0000,0.1346) deltaMag=0.1346 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.8206 dpPos=0.3454 dpMove=-0.7500 iDist=0.1794 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.339,91.315) lpos=(-11.090,3.161,-2.705) lprev=(-11.090,3.258,-1.854) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0904,3.1606,-2.5700) mvmt=(0.0000,-0.0970,-0.7158) collide=False insertType=0 objState=0x303 winterp=0.8206 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.339,91.450) lpos=(-11.090,3.161,-2.570) lprev=(-11.090,3.258,-1.854) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.9875,-0.9448) mvmt=(0.0000,-0.0970,-0.7158) collide=False insertType=0 objState=0x303 winterp=0.8206 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-1.2275,-1.0498) mvmt=(0.0000,-0.0970,-0.7158) collide=False insertType=0 objState=0x303 winterp=0.8206 return=-1 +[push-back] site=adjust_sphere in=(-0.2904,-1.2275,-1.0498) out=(-0.2904,-1.2275,-0.4344) delta=(0.0000,0.0000,0.6154) deltaMag=0.6154 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.8206->0.0000 dpPos=0.0523 dpMove=-0.4277 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0904,3.1606,-1.9546) mvmt=(0.0000,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.339,92.065) lpos=(-11.090,3.161,-1.955) lprev=(-11.090,3.258,-1.854) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-0.9875,-0.3294) mvmt=(0.0000,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-1.2275,-0.4344) mvmt=(0.0000,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-3.4388,-1.7844) mvmt=(0.0000,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.1606,-1.9346) mvmt=(0.0000,-0.0970,-0.1003) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0904,3.0619,-2.0567) mvmt=(0.0000,-0.0987,-0.1021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.438,91.963) lpos=(-11.090,3.062,-2.057) lprev=(-11.090,3.161,-1.955) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-1.0862,-0.4315) mvmt=(0.0000,-0.0987,-0.1021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-1.3262,-0.5365) mvmt=(0.0000,-0.0987,-0.1021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-3.5374,-1.8865) mvmt=(0.0000,-0.0987,-0.1021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.0619,-2.0367) mvmt=(0.0000,-0.0987,-0.1021) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.0619,-2.8067) mvmt=(0.0000,-0.0987,-0.8521) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0904,3.0619,-2.8067) out=(-11.0904,3.0619,-2.5700) delta=(0.0000,0.0000,0.2367) deltaMag=0.2367 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.6844 dpPos=0.2433 dpMove=-0.7500 iDist=0.3156 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.438,91.213) lpos=(-11.090,3.062,-2.807) lprev=(-11.090,3.161,-1.955) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0904,3.0619,-2.5700) mvmt=(0.0000,-0.0987,-0.6154) collide=False insertType=0 objState=0x303 winterp=0.6844 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.438,91.450) lpos=(-11.090,3.062,-2.570) lprev=(-11.090,3.161,-1.955) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-1.0862,-0.9448) mvmt=(0.0000,-0.0987,-0.6154) collide=False insertType=0 objState=0x303 winterp=0.6844 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-1.3262,-1.0498) mvmt=(0.0000,-0.0987,-0.6154) collide=False insertType=0 objState=0x303 winterp=0.6844 return=-1 +[push-back] site=adjust_sphere in=(-0.2904,-1.3262,-1.0498) out=(-0.2904,-1.3262,-0.5365) delta=(0.0000,0.0000,0.5133) deltaMag=0.5133 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.6844->0.0000 dpPos=0.1232 dpMove=-0.3568 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0904,3.0619,-2.0567) mvmt=(0.0000,-0.0987,-0.1021) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.438,91.963) lpos=(-11.090,3.062,-2.057) lprev=(-11.090,3.161,-1.955) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-1.0862,-0.4315) mvmt=(0.0000,-0.0987,-0.1021) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-1.3262,-0.5365) mvmt=(0.0000,-0.0987,-0.1021) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-3.5374,-1.8865) mvmt=(0.0000,-0.0987,-0.1021) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,3.0619,-2.0367) mvmt=(0.0000,-0.0987,-0.1021) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1341,2.9638,-2.1581) mvmt=(-0.0438,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1341,2.9638,-2.1581) mvmt=(-0.0438,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.634,8.536,91.862) lpos=(-11.134,2.964,-2.158) lprev=(-11.090,3.062,-2.057) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3091,-1.1843,-0.5330) mvmt=(-0.0438,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3341,-1.4243,-0.6379) mvmt=(-0.0438,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3341,-3.6355,-1.9880) mvmt=(-0.0438,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1341,2.9638,-2.1382) mvmt=(-0.0438,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.634,8.536,91.862) lpos=(-11.134,2.964,-2.158) lprev=(-11.090,3.062,-2.057) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0904,2.9638,-2.1581) mvmt=(0.0000,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.536,91.862) lpos=(-11.090,2.964,-2.158) lprev=(-11.090,3.062,-2.057) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-1.1843,-0.5330) mvmt=(0.0000,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-1.4243,-0.6379) mvmt=(0.0000,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-3.6355,-1.9880) mvmt=(0.0000,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,2.9638,-2.1382) mvmt=(0.0000,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,2.9638,-2.9081) mvmt=(0.0000,-0.0981,-0.8515) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0904,2.9638,-2.9081) out=(-11.0904,2.9638,-2.5700) delta=(0.0000,0.0000,0.3381) deltaMag=0.3381 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.5491 dpPos=0.1419 dpMove=-0.7500 iDist=0.4509 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.536,91.112) lpos=(-11.090,2.964,-2.908) lprev=(-11.090,3.062,-2.057) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0904,2.9638,-2.5700) mvmt=(0.0000,-0.0981,-0.5133) collide=False insertType=0 objState=0x303 winterp=0.5491 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.536,91.450) lpos=(-11.090,2.964,-2.570) lprev=(-11.090,3.062,-2.057) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-1.1843,-0.9448) mvmt=(0.0000,-0.0981,-0.5133) collide=False insertType=0 objState=0x303 winterp=0.5491 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-1.4243,-1.0498) mvmt=(0.0000,-0.0981,-0.5133) collide=False insertType=0 objState=0x303 winterp=0.5491 return=-1 +[push-back] site=adjust_sphere in=(-0.2904,-1.4243,-1.0498) out=(-0.2904,-1.4243,-0.6379) delta=(0.0000,0.0000,0.4118) deltaMag=0.4118 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.5491->0.0000 dpPos=0.1938 dpMove=-0.2862 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0904,2.9638,-2.1581) mvmt=(0.0000,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.536,91.862) lpos=(-11.090,2.964,-2.158) lprev=(-11.090,3.062,-2.057) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-1.1843,-0.5330) mvmt=(0.0000,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-1.4243,-0.6379) mvmt=(0.0000,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-3.6355,-1.9880) mvmt=(0.0000,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,2.9638,-2.1382) mvmt=(0.0000,-0.0981,-0.1015) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0904,2.8692,-2.2560) mvmt=(0.0000,-0.0946,-0.0979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.631,91.764) lpos=(-11.090,2.869,-2.256) lprev=(-11.090,2.964,-2.158) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-1.2789,-0.6308) mvmt=(0.0000,-0.0946,-0.0979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-1.5189,-0.7358) mvmt=(0.0000,-0.0946,-0.0979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,2.8692,-2.2360) mvmt=(0.0000,-0.0946,-0.0979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,2.8692,-3.0060) mvmt=(0.0000,-0.0946,-0.8479) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0904,2.8692,-3.0060) out=(-11.0904,2.8692,-2.5700) delta=(0.0000,0.0000,0.4360) deltaMag=0.4360 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.4186 dpPos=0.0440 dpMove=-0.7500 iDist=0.5814 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.631,91.014) lpos=(-11.090,2.869,-3.006) lprev=(-11.090,2.964,-2.158) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0904,2.8692,-2.5700) mvmt=(0.0000,-0.0946,-0.4118) collide=False insertType=0 objState=0x303 winterp=0.4186 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.631,91.450) lpos=(-11.090,2.869,-2.570) lprev=(-11.090,2.964,-2.158) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-1.2789,-0.9448) mvmt=(0.0000,-0.0946,-0.4118) collide=False insertType=0 objState=0x303 winterp=0.4186 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-1.5189,-1.0498) mvmt=(0.0000,-0.0946,-0.4118) collide=False insertType=0 objState=0x303 winterp=0.4186 return=-1 +[push-back] site=adjust_sphere in=(-0.2904,-1.5189,-1.0498) out=(-0.2904,-1.5189,-0.7358) delta=(0.0000,0.0000,0.3140) deltaMag=0.3140 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.4186->0.0000 dpPos=0.2618 dpMove=-0.2182 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0904,2.8692,-2.2560) mvmt=(0.0000,-0.0946,-0.0979) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.631,91.764) lpos=(-11.090,2.869,-2.256) lprev=(-11.090,2.964,-2.158) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-1.2789,-0.6308) mvmt=(0.0000,-0.0946,-0.0979) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-1.5189,-0.7358) mvmt=(0.0000,-0.0946,-0.0979) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,2.8692,-2.2360) mvmt=(0.0000,-0.0946,-0.0979) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1339,2.7716,-2.3570) mvmt=(-0.0435,-0.0976,-0.1010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1339,2.7716,-2.3570) mvmt=(-0.0435,-0.0976,-0.1010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.634,8.728,91.663) lpos=(-11.134,2.772,-2.357) lprev=(-11.090,2.869,-2.256) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3089,-1.3765,-0.7318) mvmt=(-0.0435,-0.0976,-0.1010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3339,-1.6165,-0.8368) mvmt=(-0.0435,-0.0976,-0.1010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1339,2.7716,-2.3370) mvmt=(-0.0435,-0.0976,-0.1010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.634,8.728,91.663) lpos=(-11.134,2.772,-2.357) lprev=(-11.090,2.869,-2.256) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0904,2.7716,-2.3570) mvmt=(0.0000,-0.0976,-0.1010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.728,91.663) lpos=(-11.090,2.772,-2.357) lprev=(-11.090,2.869,-2.256) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-1.3765,-0.7318) mvmt=(0.0000,-0.0976,-0.1010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-1.6165,-0.8368) mvmt=(0.0000,-0.0976,-0.1010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,2.7716,-2.3370) mvmt=(0.0000,-0.0976,-0.1010) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,2.7716,-3.1070) mvmt=(0.0000,-0.0976,-0.8510) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0904,2.7716,-3.1070) out=(-11.0904,2.7716,-2.5700) delta=(0.0000,0.0000,0.5370) deltaMag=0.5370 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.2840 dpPos=-0.0570 dpMove=-0.7500 iDist=0.7160 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.728,90.913) lpos=(-11.090,2.772,-3.107) lprev=(-11.090,2.869,-2.256) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0904,2.7716,-2.5700) mvmt=(0.0000,-0.0976,-0.3140) collide=False insertType=0 objState=0x303 winterp=0.2840 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.728,91.450) lpos=(-11.090,2.772,-2.570) lprev=(-11.090,2.869,-2.256) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-1.3765,-0.9448) mvmt=(0.0000,-0.0976,-0.3140) collide=False insertType=0 objState=0x303 winterp=0.2840 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-1.6165,-1.0498) mvmt=(0.0000,-0.0976,-0.3140) collide=False insertType=0 objState=0x303 winterp=0.2840 return=-1 +[push-back] site=adjust_sphere in=(-0.2904,-1.6165,-1.0498) out=(-0.2904,-1.6165,-0.8368) delta=(0.0000,0.0000,0.2130) deltaMag=0.2130 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.2840->0.0000 dpPos=0.3319 dpMove=-0.1481 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0904,2.7716,-2.3570) mvmt=(0.0000,-0.0976,-0.1010) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.728,91.663) lpos=(-11.090,2.772,-2.357) lprev=(-11.090,2.869,-2.256) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-1.3765,-0.7318) mvmt=(0.0000,-0.0976,-0.1010) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-1.6165,-0.8368) mvmt=(0.0000,-0.0976,-0.1010) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,2.7716,-2.3370) mvmt=(0.0000,-0.0976,-0.1010) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0904,2.6633,-2.4690) mvmt=(0.0000,-0.1083,-0.1120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.837,91.551) lpos=(-11.090,2.663,-2.469) lprev=(-11.090,2.772,-2.357) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-1.4848,-0.8438) mvmt=(0.0000,-0.1083,-0.1120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-1.7248,-0.9488) mvmt=(0.0000,-0.1083,-0.1120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,2.6633,-2.4490) mvmt=(0.0000,-0.1083,-0.1120) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,2.6633,-3.2190) mvmt=(0.0000,-0.1083,-0.8620) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0904,2.6633,-3.2190) out=(-11.0904,2.6633,-2.5700) delta=(0.0000,0.0000,0.6490) deltaMag=0.6490 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.1347 dpPos=-0.1690 dpMove=-0.7500 iDist=0.8653 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.837,90.801) lpos=(-11.090,2.663,-3.219) lprev=(-11.090,2.772,-2.357) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0904,2.6633,-2.5700) mvmt=(0.0000,-0.1083,-0.2130) collide=False insertType=0 objState=0x303 winterp=0.1347 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.837,91.450) lpos=(-11.090,2.663,-2.570) lprev=(-11.090,2.772,-2.357) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-1.4848,-0.9448) mvmt=(0.0000,-0.1083,-0.2130) collide=False insertType=0 objState=0x303 winterp=0.1347 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-1.7248,-1.0498) mvmt=(0.0000,-0.1083,-0.2130) collide=False insertType=0 objState=0x303 winterp=0.1347 return=-1 +[push-back] site=adjust_sphere in=(-0.2904,-1.7248,-1.0498) out=(-0.2904,-1.7248,-0.9488) delta=(0.0000,0.0000,0.1010) deltaMag=0.1010 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.1347->0.0000 dpPos=0.4098 dpMove=-0.0702 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0904,2.6633,-2.4690) mvmt=(0.0000,-0.1083,-0.1120) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,8.837,91.551) lpos=(-11.090,2.663,-2.469) lprev=(-11.090,2.772,-2.357) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2654,-1.4848,-0.8438) mvmt=(0.0000,-0.1083,-0.1120) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2904,-1.7248,-0.9488) mvmt=(0.0000,-0.1083,-0.1120) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0904,2.6633,-2.4490) mvmt=(0.0000,-0.1083,-0.1120) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementStrafeRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9514,2.6628,-2.4695) mvmt=(0.1390,-0.0005,-0.0005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.451,8.837,91.550) lpos=(-10.951,2.663,-2.470) lprev=(-11.090,2.663,-2.469) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1264,-1.4853,-0.8443) mvmt=(0.1390,-0.0005,-0.0005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1514,-1.7253,-0.9493) mvmt=(0.1390,-0.0005,-0.0005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9514,2.6628,-2.4495) mvmt=(0.1390,-0.0005,-0.0005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9514,2.6628,-3.2195) mvmt=(0.1390,-0.0005,-0.7505) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.9514,2.6628,-3.2195) out=(-10.9514,2.6628,-2.5700) delta=(0.0000,0.0000,0.6495) deltaMag=0.6495 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.1340 dpPos=-0.1695 dpMove=-0.7500 iDist=0.8660 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.451,8.837,90.800) lpos=(-10.951,2.663,-3.220) lprev=(-11.090,2.663,-2.469) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.9514,2.6628,-2.5700) mvmt=(0.1390,-0.0005,-0.1010) collide=False insertType=0 objState=0x303 winterp=0.1340 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.451,8.837,91.450) lpos=(-10.951,2.663,-2.570) lprev=(-11.090,2.663,-2.469) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1264,-1.4853,-0.9448) mvmt=(0.1390,-0.0005,-0.1010) collide=False insertType=0 objState=0x303 winterp=0.1340 return=-1 +[push-back-disp] site=dispatch center=(-0.1514,-1.7253,-1.0498) mvmt=(0.1390,-0.0005,-0.1010) collide=False insertType=0 objState=0x303 winterp=0.1340 return=-1 +[push-back] site=adjust_sphere in=(-0.1514,-1.7253,-1.0498) out=(-0.1514,-1.7253,-0.9493) delta=(0.0000,0.0000,0.1005) deltaMag=0.1005 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.1340->-0.0000 dpPos=0.4102 dpMove=-0.0698 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.9514,2.6628,-2.4695) mvmt=(0.1390,-0.0005,-0.0005) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.451,8.837,91.550) lpos=(-10.951,2.663,-2.470) lprev=(-11.090,2.663,-2.469) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1264,-1.4853,-0.8443) mvmt=(0.1390,-0.0005,-0.0005) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1514,-1.7253,-0.9493) mvmt=(0.1390,-0.0005,-0.0005) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9514,2.6628,-2.4495) mvmt=(0.1390,-0.0005,-0.0005) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8192,2.6623,-2.4700) mvmt=(0.1321,-0.0005,-0.0005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.319,8.838,91.550) lpos=(-10.819,2.662,-2.470) lprev=(-10.951,2.663,-2.470) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9942,-1.4857,-0.8448) mvmt=(0.1321,-0.0005,-0.0005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0192,-1.7257,-0.9498) mvmt=(0.1321,-0.0005,-0.0005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8192,2.6623,-2.4500) mvmt=(0.1321,-0.0005,-0.0005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8192,2.6623,-3.2200) mvmt=(0.1321,-0.0005,-0.7505) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.8192,2.6623,-3.2200) out=(-10.8192,2.6623,-2.5700) delta=(0.0000,0.0000,0.6500) deltaMag=0.6500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.1334 dpPos=-0.1700 dpMove=-0.7500 iDist=0.8666 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.319,8.838,90.800) lpos=(-10.819,2.662,-3.220) lprev=(-10.951,2.663,-2.470) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.8192,2.6623,-2.5700) mvmt=(0.1321,-0.0005,-0.1005) collide=False insertType=0 objState=0x303 winterp=0.1334 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.319,8.838,91.450) lpos=(-10.819,2.662,-2.570) lprev=(-10.951,2.663,-2.470) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9942,-1.4857,-0.9448) mvmt=(0.1321,-0.0005,-0.1005) collide=False insertType=0 objState=0x303 winterp=0.1334 return=-1 +[push-back-disp] site=dispatch center=(-0.0192,-1.7257,-1.0498) mvmt=(0.1321,-0.0005,-0.1005) collide=False insertType=0 objState=0x303 winterp=0.1334 return=-1 +[push-back] site=adjust_sphere in=(-0.0192,-1.7257,-1.0498) out=(-0.0192,-1.7257,-0.9498) delta=(0.0000,0.0000,0.1000) deltaMag=0.1000 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.1334->-0.0000 dpPos=0.4105 dpMove=-0.0695 iDist=1.0001 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.8192,2.6623,-2.4700) mvmt=(0.1321,-0.0005,-0.0005) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.319,8.838,91.550) lpos=(-10.819,2.662,-2.470) lprev=(-10.951,2.663,-2.470) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9942,-1.4857,-0.8448) mvmt=(0.1321,-0.0005,-0.0005) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0192,-1.7257,-0.9498) mvmt=(0.1321,-0.0005,-0.0005) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8192,2.6623,-2.4500) mvmt=(0.1321,-0.0005,-0.0005) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6846,2.6619,-2.4705) mvmt=(0.1346,-0.0005,-0.0005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.185,8.838,91.550) lpos=(-10.685,2.662,-2.470) lprev=(-10.819,2.662,-2.470) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8596,-1.4862,-0.8453) mvmt=(0.1346,-0.0005,-0.0005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1154,-1.7262,-0.9502) mvmt=(0.1346,-0.0005,-0.0005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6846,2.6619,-2.4505) mvmt=(0.1346,-0.0005,-0.0005) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6846,2.6619,-3.2205) mvmt=(0.1346,-0.0005,-0.7505) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.6846,2.6619,-3.2205) out=(-10.6846,2.6619,-2.5700) delta=(0.0000,0.0000,0.6505) deltaMag=0.6505 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.1327 dpPos=-0.1705 dpMove=-0.7500 iDist=0.8673 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.185,8.838,90.800) lpos=(-10.685,2.662,-3.220) lprev=(-10.819,2.662,-2.470) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.6846,2.6619,-2.5700) mvmt=(0.1346,-0.0005,-0.1000) collide=False insertType=0 objState=0x303 winterp=0.1327 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.185,8.838,91.450) lpos=(-10.685,2.662,-2.570) lprev=(-10.819,2.662,-2.470) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8596,-1.4862,-0.9448) mvmt=(0.1346,-0.0005,-0.1000) collide=False insertType=0 objState=0x303 winterp=0.1327 return=-1 +[push-back-disp] site=dispatch center=(0.1154,-1.7262,-1.0498) mvmt=(0.1346,-0.0005,-0.1000) collide=False insertType=0 objState=0x303 winterp=0.1327 return=-1 +[push-back] site=adjust_sphere in=(0.1154,-1.7262,-1.0498) out=(0.1154,-1.7262,-0.9502) delta=(0.0000,0.0000,0.0995) deltaMag=0.0995 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.1327->0.0000 dpPos=0.4108 dpMove=-0.0692 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6846,2.6619,-2.4705) mvmt=(0.1346,-0.0005,-0.0005) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.185,8.838,91.550) lpos=(-10.685,2.662,-2.470) lprev=(-10.819,2.662,-2.470) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8596,-1.4862,-0.8453) mvmt=(0.1346,-0.0005,-0.0005) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1154,-1.7262,-0.9502) mvmt=(0.1346,-0.0005,-0.0005) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6846,2.6619,-2.4505) mvmt=(0.1346,-0.0005,-0.0005) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6816,2.8716,-2.2535) mvmt=(0.0031,0.2097,0.2170) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.182,8.628,91.767) lpos=(-10.682,2.872,-2.253) lprev=(-10.685,2.662,-2.470) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8566,-1.2765,-0.6283) mvmt=(0.0031,0.2097,0.2170) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1184,-1.5165,-0.7333) mvmt=(0.0031,0.2097,0.2170) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6816,2.8716,-2.2335) mvmt=(0.0031,0.2097,0.2170) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6816,2.8716,-3.0035) mvmt=(0.0031,0.2097,-0.5330) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.6816,2.8716,-3.0035) out=(-10.6816,2.8716,-2.5700) delta=(0.0000,0.0000,0.4335) deltaMag=0.4335 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.4220 dpPos=0.0465 dpMove=-0.7500 iDist=0.5780 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.182,8.628,91.017) lpos=(-10.682,2.872,-3.003) lprev=(-10.685,2.662,-2.470) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.6816,2.8716,-2.5700) mvmt=(0.0031,0.2097,-0.0995) collide=False insertType=0 objState=0x303 winterp=0.4220 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.182,8.628,91.450) lpos=(-10.682,2.872,-2.570) lprev=(-10.685,2.662,-2.470) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8566,-1.2765,-0.9448) mvmt=(0.0031,0.2097,-0.0995) collide=False insertType=0 objState=0x303 winterp=0.4220 return=-1 +[push-back-disp] site=dispatch center=(0.1184,-1.5165,-1.0498) mvmt=(0.0031,0.2097,-0.0995) collide=False insertType=0 objState=0x303 winterp=0.4220 return=-1 +[push-back] site=adjust_sphere in=(0.1184,-1.5165,-1.0498) out=(0.1184,-1.5165,-0.7333) delta=(0.0000,0.0000,0.3165) deltaMag=0.3165 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.4220->-0.0000 dpPos=0.2600 dpMove=-0.2200 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6816,2.8716,-2.2535) mvmt=(0.0031,0.2097,0.2170) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.182,8.628,91.767) lpos=(-10.682,2.872,-2.253) lprev=(-10.685,2.662,-2.470) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8566,-1.2765,-0.6283) mvmt=(0.0031,0.2097,0.2170) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1184,-1.5165,-0.7333) mvmt=(0.0031,0.2097,0.2170) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6816,2.8716,-2.2335) mvmt=(0.0031,0.2097,0.2170) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6786,3.0753,-2.0428) mvmt=(0.0030,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.179,8.425,91.977) lpos=(-10.679,3.075,-2.043) lprev=(-10.682,2.872,-2.253) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8536,-1.0727,-0.4176) mvmt=(0.0030,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1214,-1.3127,-0.5226) mvmt=(0.0030,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1214,-3.5240,-1.8726) mvmt=(0.0030,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6786,3.0753,-2.0228) mvmt=(0.0030,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6786,3.0753,-2.7928) mvmt=(0.0030,0.2037,-0.5393) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.6786,3.0753,-2.7928) out=(-10.6786,3.0753,-2.5700) delta=(0.0000,0.0000,0.2228) deltaMag=0.2228 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.7030 dpPos=0.2572 dpMove=-0.7500 iDist=0.2970 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.179,8.425,91.227) lpos=(-10.679,3.075,-2.793) lprev=(-10.682,2.872,-2.253) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.6786,3.0753,-2.5700) mvmt=(0.0030,0.2037,-0.3165) collide=False insertType=0 objState=0x303 winterp=0.7030 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.179,8.425,91.450) lpos=(-10.679,3.075,-2.570) lprev=(-10.682,2.872,-2.253) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8536,-1.0727,-0.9448) mvmt=(0.0030,0.2037,-0.3165) collide=False insertType=0 objState=0x303 winterp=0.7030 return=-1 +[push-back-disp] site=dispatch center=(0.1214,-1.3127,-1.0498) mvmt=(0.0030,0.2037,-0.3165) collide=False insertType=0 objState=0x303 winterp=0.7030 return=-1 +[push-back] site=adjust_sphere in=(0.1214,-1.3127,-1.0498) out=(0.1214,-1.3127,-0.5225) delta=(0.0000,0.0000,0.5272) deltaMag=0.5272 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.7030->-0.0000 dpPos=0.1136 dpMove=-0.3664 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6786,3.0753,-2.0428) mvmt=(0.0030,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.179,8.425,91.977) lpos=(-10.679,3.075,-2.043) lprev=(-10.682,2.872,-2.253) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8536,-1.0727,-0.4176) mvmt=(0.0030,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1214,-1.3127,-0.5226) mvmt=(0.0030,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1214,-3.5240,-1.8726) mvmt=(0.0030,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6786,3.0753,-2.0228) mvmt=(0.0030,0.2037,0.2107) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6756,3.2794,-1.8316) mvmt=(0.0030,0.2041,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.176,8.221,92.188) lpos=(-10.676,3.279,-1.832) lprev=(-10.679,3.075,-2.043) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8506,-0.8687,-0.2064) mvmt=(0.0030,0.2041,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1245,-1.1087,-0.3114) mvmt=(0.0030,0.2041,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1245,-3.3199,-1.6614) mvmt=(0.0030,0.2041,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6756,3.2794,-1.8116) mvmt=(0.0030,0.2041,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6756,3.2794,-2.5816) mvmt=(0.0030,0.2041,-0.5389) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-10.6756,3.2794,-2.5816) out=(-10.6756,3.2794,-2.5700) delta=(0.0000,0.0000,0.0116) deltaMag=0.0116 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.9845 dpPos=0.4684 dpMove=-0.7500 iDist=0.0155 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.176,8.221,91.438) lpos=(-10.676,3.279,-2.582) lprev=(-10.679,3.075,-2.043) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-10.6756,3.2794,-2.5700) mvmt=(0.0030,0.2041,-0.5272) collide=False insertType=0 objState=0x303 winterp=0.9845 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.176,8.221,91.450) lpos=(-10.676,3.279,-2.570) lprev=(-10.679,3.075,-2.043) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8506,-0.8687,-0.9448) mvmt=(0.0030,0.2041,-0.5272) collide=False insertType=0 objState=0x303 winterp=0.9845 return=-1 +[push-back-disp] site=dispatch center=(0.1245,-1.1087,-1.0498) mvmt=(0.0030,0.2041,-0.5272) collide=False insertType=0 objState=0x303 winterp=0.9845 return=-1 +[push-back] site=adjust_sphere in=(0.1245,-1.1087,-1.0498) out=(0.1245,-1.1087,-0.3114) delta=(0.0000,0.0000,0.7384) deltaMag=0.7384 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.9845->-0.0000 dpPos=-0.0332 dpMove=-0.5132 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6756,3.2794,-1.8316) mvmt=(0.0030,0.2041,0.2111) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.176,8.221,92.188) lpos=(-10.676,3.279,-1.832) lprev=(-10.679,3.075,-2.043) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8506,-0.8687,-0.2064) mvmt=(0.0030,0.2041,0.2111) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1245,-1.1087,-0.3114) mvmt=(0.0030,0.2041,0.2111) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1245,-3.3199,-1.6614) mvmt=(0.0030,0.2041,0.2111) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6756,3.2794,-1.8116) mvmt=(0.0030,0.2041,0.2111) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6725,3.4885,-1.6153) mvmt=(0.0031,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.172,8.012,92.405) lpos=(-10.672,3.488,-1.615) lprev=(-10.676,3.279,-1.832) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8475,-0.6596,0.0099) mvmt=(0.0031,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1275,-0.8996,-0.0951) mvmt=(0.0031,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1275,-3.1108,-1.4451) mvmt=(0.0031,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6725,3.4885,-1.5953) mvmt=(0.0031,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6725,3.4885,-2.3653) mvmt=(0.0031,0.2091,-0.5337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.172,8.012,91.655) lpos=(-10.672,3.488,-2.365) lprev=(-10.676,3.279,-1.832) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8475,-0.6596,-0.7401) mvmt=(0.0031,0.2091,-0.5337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1275,-0.8996,-0.8451) mvmt=(0.0031,0.2091,-0.5337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1275,-0.8996,-0.8451) out=(0.1275,-0.8996,-0.0951) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6725,3.4885,-1.6153) mvmt=(0.0031,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.172,8.012,92.405) lpos=(-10.672,3.488,-1.615) lprev=(-10.676,3.279,-1.832) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8475,-0.6596,0.0098) mvmt=(0.0031,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1275,-0.8996,-0.0951) mvmt=(0.0031,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1275,-3.1108,-1.4452) mvmt=(0.0031,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6725,3.4885,-1.5954) mvmt=(0.0031,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6694,3.6976,-1.3991) mvmt=(0.0031,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.169,7.802,92.621) lpos=(-10.669,3.698,-1.399) lprev=(-10.672,3.488,-1.615) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8444,-0.4505,0.2261) mvmt=(0.0031,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1306,-0.6905,0.1211) mvmt=(0.0031,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1306,-2.9018,-1.2289) mvmt=(0.0031,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6694,3.6976,-1.3791) mvmt=(0.0031,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6694,3.6976,-2.1491) mvmt=(0.0031,0.2091,-0.5337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.169,7.802,91.871) lpos=(-10.669,3.698,-2.149) lprev=(-10.672,3.488,-1.615) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8444,-0.4505,-0.5239) mvmt=(0.0031,0.2091,-0.5337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1306,-0.6905,-0.6289) mvmt=(0.0031,0.2091,-0.5337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1306,-0.6905,-0.6289) out=(0.1306,-0.6905,0.1212) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6694,3.6976,-1.3990) mvmt=(0.0031,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.169,7.802,92.621) lpos=(-10.669,3.698,-1.399) lprev=(-10.672,3.488,-1.615) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8444,-0.4505,0.2262) mvmt=(0.0031,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1306,-0.6905,0.1212) mvmt=(0.0031,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1306,-2.9018,-1.2289) mvmt=(0.0031,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6694,3.6976,-1.3791) mvmt=(0.0031,0.2091,0.2163) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6663,3.9086,-1.1807) mvmt=(0.0031,0.2111,0.2183) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.166,7.591,92.839) lpos=(-10.666,3.909,-1.181) lprev=(-10.669,3.698,-1.399) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8413,-0.2394,0.4445) mvmt=(0.0031,0.2111,0.2183) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1337,-0.4794,0.3395) mvmt=(0.0031,0.2111,0.2183) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1337,-2.6907,-1.0105) mvmt=(0.0031,0.2111,0.2183) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7633,-3.2351,1.8438) mvmt=(-0.1929,0.0857,0.2183) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6663,3.9086,-1.1607) mvmt=(0.0031,0.2111,0.2183) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6663,3.9086,-1.9307) mvmt=(0.0031,0.2111,-0.5317) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.166,7.591,92.089) lpos=(-10.666,3.909,-1.931) lprev=(-10.669,3.698,-1.399) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8413,-0.2394,-0.3055) mvmt=(0.0031,0.2111,-0.5317) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1337,-0.4794,-0.4105) mvmt=(0.0031,0.2111,-0.5317) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1337,-0.4794,-0.4105) out=(0.1337,-0.4794,0.3395) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6663,3.9086,-1.1807) mvmt=(0.0031,0.2111,0.2183) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.166,7.591,92.839) lpos=(-10.666,3.909,-1.181) lprev=(-10.669,3.698,-1.399) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8413,-0.2394,0.4445) mvmt=(0.0031,0.2111,0.2183) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1337,-0.4794,0.3395) mvmt=(0.0031,0.2111,0.2183) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1337,-2.6907,-1.0105) mvmt=(0.0031,0.2111,0.2183) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.7633,-3.2351,1.8438) mvmt=(-0.1929,0.0857,0.2183) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6663,3.9086,-1.1607) mvmt=(0.0031,0.2111,0.2183) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6633,4.1130,-0.9693) mvmt=(0.0030,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.163,7.387,93.051) lpos=(-10.663,4.113,-0.969) lprev=(-10.666,3.909,-1.181) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8383,-0.0351,0.6559) mvmt=(0.0030,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1367,-0.2751,0.5509) mvmt=(0.0030,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1367,-2.4863,-0.7991) mvmt=(0.0030,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5765,-3.1522,2.0552) mvmt=(-0.1868,0.0829,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6633,4.1130,-0.9493) mvmt=(0.0030,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6633,4.1130,-1.7193) mvmt=(0.0030,0.2044,-0.5386) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.163,7.387,92.301) lpos=(-10.663,4.113,-1.719) lprev=(-10.666,3.909,-1.181) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8383,-0.0351,-0.0941) mvmt=(0.0030,0.2044,-0.5386) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1367,-0.2751,-0.1991) mvmt=(0.0030,0.2044,-0.5386) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1367,-0.2751,-0.1991) out=(0.1367,-0.2751,0.5509) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6633,4.1130,-0.9693) mvmt=(0.0030,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.163,7.387,93.051) lpos=(-10.663,4.113,-0.969) lprev=(-10.666,3.909,-1.181) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8383,-0.0351,0.6559) mvmt=(0.0030,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1367,-0.2751,0.5509) mvmt=(0.0030,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1367,-2.4863,-0.7991) mvmt=(0.0030,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5765,-3.1522,2.0552) mvmt=(-0.1868,0.0829,0.2114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6633,4.1130,-0.9493) mvmt=(0.0030,0.2044,0.2114) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6603,4.3160,-0.7593) mvmt=(0.0030,0.2030,0.2100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.160,7.184,93.261) lpos=(-10.660,4.316,-0.759) lprev=(-10.663,4.113,-0.969) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8353,0.1679,0.8659) mvmt=(0.0030,0.2030,0.2100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1397,-0.0721,0.7609) mvmt=(0.0030,0.2030,0.2100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1397,-2.2833,-0.5891) mvmt=(0.0030,0.2030,0.2100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3910,-3.0698,2.2652) mvmt=(-0.1855,0.0824,0.2100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6603,4.3160,-0.7393) mvmt=(0.0030,0.2030,0.2100) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6603,4.3160,-1.5093) mvmt=(0.0030,0.2030,-0.5400) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.160,7.184,92.511) lpos=(-10.660,4.316,-1.509) lprev=(-10.663,4.113,-0.969) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8353,0.1679,0.1159) mvmt=(0.0030,0.2030,-0.5400) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1397,-0.0721,0.0109) mvmt=(0.0030,0.2030,-0.5400) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1397,-0.0721,0.0109) out=(0.1397,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6603,4.3160,-0.7593) mvmt=(0.0030,0.2030,0.2100) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.160,7.184,93.261) lpos=(-10.660,4.316,-0.759) lprev=(-10.663,4.113,-0.969) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8353,0.1679,0.8659) mvmt=(0.0030,0.2030,0.2100) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1397,-0.0721,0.7609) mvmt=(0.0030,0.2030,0.2100) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1397,-2.2833,-0.5891) mvmt=(0.0030,0.2030,0.2100) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3910,-3.0698,2.2652) mvmt=(-0.1855,0.0824,0.2100) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6603,4.3160,-0.7393) mvmt=(0.0030,0.2030,0.2100) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6572,4.5255,-0.5426) mvmt=(0.0031,0.2095,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.157,6.975,93.477) lpos=(-10.657,4.525,-0.543) lprev=(-10.660,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6572,4.5255,-0.5426) mvmt=(0.0031,0.2095,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8322,0.3774,1.0826) mvmt=(0.0031,0.2095,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1428,0.1374,0.9776) mvmt=(0.0031,0.2095,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1428,-2.0738,-0.3724) mvmt=(0.0031,0.2095,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1995,-2.9848,2.4819) mvmt=(-0.1915,0.0850,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6572,4.5255,-0.5226) mvmt=(0.0031,0.2095,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6572,4.5255,-0.5426) mvmt=(0.0031,0.2095,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.157,6.975,93.477) lpos=(-10.657,4.525,-0.543) lprev=(-10.660,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6572,4.5255,-0.5426) mvmt=(0.0031,0.2095,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8322,0.3774,1.0826) mvmt=(0.0031,0.2095,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1428,0.1374,0.9776) mvmt=(0.0031,0.2095,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1428,-2.0738,-0.3724) mvmt=(0.0031,0.2095,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1995,-2.9848,2.4819) mvmt=(-0.1915,0.0850,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6572,4.5255,-0.5226) mvmt=(0.0031,0.2095,0.2167) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6572,4.3160,-0.7593) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.157,7.184,93.261) lpos=(-10.657,4.316,-0.759) lprev=(-10.660,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8322,0.1679,0.8659) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1428,-0.0721,0.7609) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1428,-2.2833,-0.5891) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6572,4.3160,-0.7393) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6572,4.3160,-1.5093) mvmt=(0.0031,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.157,7.184,92.511) lpos=(-10.657,4.316,-1.509) lprev=(-10.660,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8322,0.1679,0.1159) mvmt=(0.0031,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1428,-0.0721,0.0109) mvmt=(0.0031,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1428,-0.0721,0.0109) out=(0.1428,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6572,4.3160,-0.7593) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.157,7.184,93.261) lpos=(-10.657,4.316,-0.759) lprev=(-10.660,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8322,0.1679,0.8659) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1428,-0.0721,0.7609) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1428,-2.2833,-0.5891) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6572,4.3160,-0.7393) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6543,4.5146,-0.5538) mvmt=(0.0029,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.154,6.985,93.466) lpos=(-10.654,4.515,-0.554) lprev=(-10.657,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6543,4.5146,-0.5538) mvmt=(0.0029,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8293,0.3666,1.0714) mvmt=(0.0029,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1457,0.1266,0.9664) mvmt=(0.0029,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1457,-2.0847,-0.3836) mvmt=(0.0029,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2106,-2.9863,2.4707) mvmt=(-0.1815,0.0806,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6543,4.5146,-0.5338) mvmt=(0.0029,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6543,4.5146,-0.5538) mvmt=(0.0029,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.154,6.985,93.466) lpos=(-10.654,4.515,-0.554) lprev=(-10.657,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6543,4.5146,-0.5538) mvmt=(0.0029,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8293,0.3666,1.0714) mvmt=(0.0029,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1457,0.1266,0.9664) mvmt=(0.0029,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1457,-2.0847,-0.3836) mvmt=(0.0029,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2106,-2.9863,2.4707) mvmt=(-0.1815,0.0806,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6543,4.5146,-0.5338) mvmt=(0.0029,0.1986,0.2055) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6543,4.3160,-0.7593) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.154,7.184,93.261) lpos=(-10.654,4.316,-0.759) lprev=(-10.657,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8293,0.1679,0.8659) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1457,-0.0721,0.7609) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1457,-2.2833,-0.5891) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6543,4.3160,-0.7393) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6543,4.3160,-1.5093) mvmt=(0.0029,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.154,7.184,92.511) lpos=(-10.654,4.316,-1.509) lprev=(-10.657,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8293,0.1679,0.1159) mvmt=(0.0029,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1457,-0.0721,0.0109) mvmt=(0.0029,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1457,-0.0721,0.0109) out=(0.1457,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6543,4.3160,-0.7593) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.154,7.184,93.261) lpos=(-10.654,4.316,-0.759) lprev=(-10.657,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8293,0.1679,0.8659) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1457,-0.0721,0.7609) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1457,-2.2833,-0.5891) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6543,4.3160,-0.7393) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6512,4.5205,-0.5477) mvmt=(0.0030,0.2046,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.151,6.979,93.472) lpos=(-10.651,4.521,-0.548) lprev=(-10.654,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6512,4.5205,-0.5477) mvmt=(0.0030,0.2046,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8262,0.3725,1.0775) mvmt=(0.0030,0.2046,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,0.1325,0.9725) mvmt=(0.0030,0.2046,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-2.0788,-0.3775) mvmt=(0.0030,0.2046,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2064,-2.9812,2.4768) mvmt=(-0.1870,0.0830,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6512,4.5205,-0.5277) mvmt=(0.0030,0.2046,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6512,4.5205,-0.5477) mvmt=(0.0030,0.2046,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.151,6.979,93.472) lpos=(-10.651,4.521,-0.548) lprev=(-10.654,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6512,4.5205,-0.5477) mvmt=(0.0030,0.2046,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8262,0.3725,1.0775) mvmt=(0.0030,0.2046,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,0.1325,0.9725) mvmt=(0.0030,0.2046,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-2.0788,-0.3775) mvmt=(0.0030,0.2046,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2064,-2.9812,2.4768) mvmt=(-0.1870,0.0830,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6512,4.5205,-0.5277) mvmt=(0.0030,0.2046,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6512,4.3160,-0.7593) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.151,7.184,93.261) lpos=(-10.651,4.316,-0.759) lprev=(-10.654,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8262,0.1679,0.8659) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-0.0721,0.7609) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-2.2833,-0.5891) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6512,4.3160,-0.7393) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6512,4.3160,-1.5093) mvmt=(0.0030,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.151,7.184,92.511) lpos=(-10.651,4.316,-1.509) lprev=(-10.654,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8262,0.1679,0.1159) mvmt=(0.0030,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-0.0721,0.0109) mvmt=(0.0030,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1488,-0.0721,0.0109) out=(0.1488,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6512,4.3160,-0.7593) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.151,7.184,93.261) lpos=(-10.651,4.316,-0.759) lprev=(-10.654,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8262,0.1679,0.8659) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-0.0721,0.7609) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1488,-2.2833,-0.5891) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6512,4.3160,-0.7393) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6483,4.5147,-0.5537) mvmt=(0.0029,0.1988,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.148,6.985,93.466) lpos=(-10.648,4.515,-0.554) lprev=(-10.651,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6483,4.5147,-0.5537) mvmt=(0.0029,0.1988,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8233,0.3667,1.0715) mvmt=(0.0029,0.1988,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1517,0.1267,0.9665) mvmt=(0.0029,0.1988,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1517,-2.0846,-0.3835) mvmt=(0.0029,0.1988,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2128,-2.9808,2.4708) mvmt=(-0.1817,0.0807,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6483,4.5147,-0.5337) mvmt=(0.0029,0.1988,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6483,4.5147,-0.5537) mvmt=(0.0029,0.1988,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.148,6.985,93.466) lpos=(-10.648,4.515,-0.554) lprev=(-10.651,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6483,4.5147,-0.5537) mvmt=(0.0029,0.1988,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8233,0.3667,1.0715) mvmt=(0.0029,0.1988,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1517,0.1267,0.9665) mvmt=(0.0029,0.1988,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1517,-2.0846,-0.3835) mvmt=(0.0029,0.1988,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2128,-2.9808,2.4708) mvmt=(-0.1817,0.0807,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6483,4.5147,-0.5337) mvmt=(0.0029,0.1988,0.2056) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6483,4.3160,-0.7593) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.148,7.184,93.261) lpos=(-10.648,4.316,-0.759) lprev=(-10.651,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8233,0.1679,0.8659) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1517,-0.0721,0.7609) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1517,-2.2833,-0.5891) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6483,4.3160,-0.7393) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6483,4.3160,-1.5093) mvmt=(0.0029,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.148,7.184,92.511) lpos=(-10.648,4.316,-1.509) lprev=(-10.651,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8233,0.1679,0.1159) mvmt=(0.0029,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1517,-0.0721,0.0109) mvmt=(0.0029,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1517,-0.0721,0.0109) out=(0.1517,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6483,4.3160,-0.7593) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.148,7.184,93.261) lpos=(-10.648,4.316,-0.759) lprev=(-10.651,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8233,0.1679,0.8659) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1517,-0.0721,0.7609) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1517,-2.2833,-0.5891) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6483,4.3160,-0.7393) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6453,4.5218,-0.5464) mvmt=(0.0030,0.2058,0.2129) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.145,6.978,93.474) lpos=(-10.645,4.522,-0.546) lprev=(-10.648,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6453,4.5218,-0.5464) mvmt=(0.0030,0.2058,0.2129) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8203,0.3738,1.0788) mvmt=(0.0030,0.2058,0.2129) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1547,0.1338,0.9738) mvmt=(0.0030,0.2058,0.2129) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1547,-2.0775,-0.3762) mvmt=(0.0030,0.2058,0.2129) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2075,-2.9752,2.4781) mvmt=(-0.1881,0.0836,0.2129) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6453,4.5218,-0.5264) mvmt=(0.0030,0.2058,0.2129) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6453,4.5218,-0.5464) mvmt=(0.0030,0.2058,0.2129) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.145,6.978,93.474) lpos=(-10.645,4.522,-0.546) lprev=(-10.648,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6453,4.5218,-0.5464) mvmt=(0.0030,0.2058,0.2129) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8203,0.3738,1.0788) mvmt=(0.0030,0.2058,0.2129) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1547,0.1338,0.9738) mvmt=(0.0030,0.2058,0.2129) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1547,-2.0775,-0.3762) mvmt=(0.0030,0.2058,0.2129) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2075,-2.9752,2.4781) mvmt=(-0.1881,0.0836,0.2129) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6453,4.5218,-0.5264) mvmt=(0.0030,0.2058,0.2129) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6453,4.3160,-0.7593) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.145,7.184,93.261) lpos=(-10.645,4.316,-0.759) lprev=(-10.648,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8203,0.1679,0.8659) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1547,-0.0721,0.7609) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1547,-2.2833,-0.5891) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6453,4.3160,-0.7393) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6453,4.3160,-1.5093) mvmt=(0.0030,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.145,7.184,92.511) lpos=(-10.645,4.316,-1.509) lprev=(-10.648,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8203,0.1679,0.1159) mvmt=(0.0030,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1547,-0.0721,0.0109) mvmt=(0.0030,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1547,-0.0721,0.0109) out=(0.1547,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6453,4.3160,-0.7593) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.145,7.184,93.261) lpos=(-10.645,4.316,-0.759) lprev=(-10.648,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8203,0.1679,0.8659) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1547,-0.0721,0.7609) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1547,-2.2833,-0.5891) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6453,4.3160,-0.7393) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6423,4.5180,-0.5503) mvmt=(0.0030,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.142,6.982,93.470) lpos=(-10.642,4.518,-0.550) lprev=(-10.645,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6423,4.5180,-0.5503) mvmt=(0.0030,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8173,0.3700,1.0749) mvmt=(0.0030,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1577,0.1300,0.9699) mvmt=(0.0030,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1577,-2.0813,-0.3801) mvmt=(0.0030,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2122,-2.9740,2.4742) mvmt=(-0.1847,0.0820,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6423,4.5180,-0.5303) mvmt=(0.0030,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6423,4.5180,-0.5503) mvmt=(0.0030,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.142,6.982,93.470) lpos=(-10.642,4.518,-0.550) lprev=(-10.645,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6423,4.5180,-0.5503) mvmt=(0.0030,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8173,0.3700,1.0749) mvmt=(0.0030,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1577,0.1300,0.9699) mvmt=(0.0030,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1577,-2.0813,-0.3801) mvmt=(0.0030,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2122,-2.9740,2.4742) mvmt=(-0.1847,0.0820,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6423,4.5180,-0.5303) mvmt=(0.0030,0.2020,0.2090) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6423,4.3160,-0.7593) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.142,7.184,93.261) lpos=(-10.642,4.316,-0.759) lprev=(-10.645,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8173,0.1679,0.8659) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1577,-0.0721,0.7609) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1577,-2.2833,-0.5891) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6423,4.3160,-0.7393) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6423,4.3160,-1.5093) mvmt=(0.0030,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.142,7.184,92.511) lpos=(-10.642,4.316,-1.509) lprev=(-10.645,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8173,0.1679,0.1159) mvmt=(0.0030,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1577,-0.0721,0.0109) mvmt=(0.0030,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1577,-0.0721,0.0109) out=(0.1577,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6423,4.3160,-0.7593) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.142,7.184,93.261) lpos=(-10.642,4.316,-0.759) lprev=(-10.645,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8173,0.1679,0.8659) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1577,-0.0721,0.7609) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1577,-2.2833,-0.5891) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6423,4.3160,-0.7393) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6394,4.5132,-0.5553) mvmt=(0.0029,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.139,6.987,93.465) lpos=(-10.639,4.513,-0.555) lprev=(-10.642,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6394,4.5132,-0.5553) mvmt=(0.0029,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8144,0.3651,1.0699) mvmt=(0.0029,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1606,0.1251,0.9649) mvmt=(0.0029,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1606,-2.0861,-0.3851) mvmt=(0.0029,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2178,-2.9732,2.4692) mvmt=(-0.1802,0.0800,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6394,4.5132,-0.5353) mvmt=(0.0029,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6394,4.5132,-0.5553) mvmt=(0.0029,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.139,6.987,93.465) lpos=(-10.639,4.513,-0.555) lprev=(-10.642,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6394,4.5132,-0.5553) mvmt=(0.0029,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8144,0.3651,1.0699) mvmt=(0.0029,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1606,0.1251,0.9649) mvmt=(0.0029,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1606,-2.0861,-0.3851) mvmt=(0.0029,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2178,-2.9732,2.4692) mvmt=(-0.1802,0.0800,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6394,4.5132,-0.5353) mvmt=(0.0029,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6394,4.3160,-0.7593) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.139,7.184,93.261) lpos=(-10.639,4.316,-0.759) lprev=(-10.642,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8144,0.1679,0.8659) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1606,-0.0721,0.7609) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1606,-2.2833,-0.5891) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6394,4.3160,-0.7393) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6394,4.3160,-1.5093) mvmt=(0.0029,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.139,7.184,92.511) lpos=(-10.639,4.316,-1.509) lprev=(-10.642,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8144,0.1679,0.1159) mvmt=(0.0029,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1606,-0.0721,0.0109) mvmt=(0.0029,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1606,-0.0721,0.0109) out=(0.1606,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6394,4.3160,-0.7593) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.139,7.184,93.261) lpos=(-10.639,4.316,-0.759) lprev=(-10.642,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8144,0.1679,0.8659) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1606,-0.0721,0.7609) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1606,-2.2833,-0.5891) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6394,4.3160,-0.7393) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6366,4.5088,-0.5598) mvmt=(0.0028,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.137,6.991,93.460) lpos=(-10.637,4.509,-0.560) lprev=(-10.639,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6366,4.5088,-0.5598) mvmt=(0.0028,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8116,0.3608,1.0654) mvmt=(0.0028,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1634,0.1208,0.9604) mvmt=(0.0028,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1634,-2.0905,-0.3896) mvmt=(0.0028,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2229,-2.9723,2.4647) mvmt=(-0.1763,0.0783,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6366,4.5088,-0.5398) mvmt=(0.0028,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6366,4.5088,-0.5598) mvmt=(0.0028,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.137,6.991,93.460) lpos=(-10.637,4.509,-0.560) lprev=(-10.639,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6366,4.5088,-0.5598) mvmt=(0.0028,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8116,0.3608,1.0654) mvmt=(0.0028,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1634,0.1208,0.9604) mvmt=(0.0028,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1634,-2.0905,-0.3896) mvmt=(0.0028,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2229,-2.9723,2.4647) mvmt=(-0.1763,0.0783,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6366,4.5088,-0.5398) mvmt=(0.0028,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6366,4.3160,-0.7593) mvmt=(0.0028,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.137,7.184,93.261) lpos=(-10.637,4.316,-0.759) lprev=(-10.639,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8116,0.1679,0.8659) mvmt=(0.0028,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1634,-0.0721,0.7609) mvmt=(0.0028,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1634,-2.2833,-0.5891) mvmt=(0.0028,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6366,4.3160,-0.7393) mvmt=(0.0028,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6366,4.3160,-1.5093) mvmt=(0.0028,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.137,7.184,92.511) lpos=(-10.637,4.316,-1.509) lprev=(-10.639,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8116,0.1679,0.1159) mvmt=(0.0028,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1634,-0.0721,0.0109) mvmt=(0.0028,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1634,-0.0721,0.0109) out=(0.1634,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6366,4.3160,-0.7593) mvmt=(0.0028,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.137,7.184,93.261) lpos=(-10.637,4.316,-0.759) lprev=(-10.639,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8116,0.1679,0.8659) mvmt=(0.0028,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1634,-0.0721,0.7609) mvmt=(0.0028,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1634,-2.2833,-0.5891) mvmt=(0.0028,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6366,4.3160,-0.7393) mvmt=(0.0028,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6337,4.5125,-0.5560) mvmt=(0.0029,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.134,6.987,93.464) lpos=(-10.634,4.513,-0.556) lprev=(-10.637,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6337,4.5125,-0.5560) mvmt=(0.0029,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8087,0.3645,1.0692) mvmt=(0.0029,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1663,0.1245,0.9642) mvmt=(0.0029,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1663,-2.0868,-0.3858) mvmt=(0.0029,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2206,-2.9682,2.4685) mvmt=(-0.1796,0.0798,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6337,4.5125,-0.5360) mvmt=(0.0029,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6337,4.5125,-0.5560) mvmt=(0.0029,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.134,6.987,93.464) lpos=(-10.634,4.513,-0.556) lprev=(-10.637,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6337,4.5125,-0.5560) mvmt=(0.0029,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8087,0.3645,1.0692) mvmt=(0.0029,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1663,0.1245,0.9642) mvmt=(0.0029,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1663,-2.0868,-0.3858) mvmt=(0.0029,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2206,-2.9682,2.4685) mvmt=(-0.1796,0.0798,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6337,4.5125,-0.5360) mvmt=(0.0029,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6337,4.3160,-0.7593) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.134,7.184,93.261) lpos=(-10.634,4.316,-0.759) lprev=(-10.637,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8087,0.1679,0.8659) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1663,-0.0721,0.7609) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1663,-2.2833,-0.5891) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6337,4.3160,-0.7393) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6337,4.3160,-1.5093) mvmt=(0.0029,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.134,7.184,92.511) lpos=(-10.634,4.316,-1.509) lprev=(-10.637,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8087,0.1679,0.1159) mvmt=(0.0029,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1663,-0.0721,0.0109) mvmt=(0.0029,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1663,-0.0721,0.0109) out=(0.1663,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6337,4.3160,-0.7593) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.134,7.184,93.261) lpos=(-10.634,4.316,-0.759) lprev=(-10.637,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8087,0.1679,0.8659) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1663,-0.0721,0.7609) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1663,-2.2833,-0.5891) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6337,4.3160,-0.7393) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6308,4.5129,-0.5556) mvmt=(0.0029,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.131,6.987,93.464) lpos=(-10.631,4.513,-0.556) lprev=(-10.634,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6308,4.5129,-0.5556) mvmt=(0.0029,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8058,0.3648,1.0696) mvmt=(0.0029,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1692,0.1248,0.9646) mvmt=(0.0029,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1692,-2.0864,-0.3854) mvmt=(0.0029,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2214,-2.9654,2.4689) mvmt=(-0.1800,0.0799,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6308,4.5129,-0.5356) mvmt=(0.0029,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6308,4.5129,-0.5556) mvmt=(0.0029,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.131,6.987,93.464) lpos=(-10.631,4.513,-0.556) lprev=(-10.634,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6308,4.5129,-0.5556) mvmt=(0.0029,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8058,0.3648,1.0696) mvmt=(0.0029,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1692,0.1248,0.9646) mvmt=(0.0029,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1692,-2.0864,-0.3854) mvmt=(0.0029,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2214,-2.9654,2.4689) mvmt=(-0.1800,0.0799,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6308,4.5129,-0.5356) mvmt=(0.0029,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6308,4.3160,-0.7593) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.131,7.184,93.261) lpos=(-10.631,4.316,-0.759) lprev=(-10.634,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8058,0.1679,0.8659) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1692,-0.0721,0.7609) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1692,-2.2833,-0.5891) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6308,4.3160,-0.7393) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6308,4.3160,-1.5093) mvmt=(0.0029,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.131,7.184,92.511) lpos=(-10.631,4.316,-1.509) lprev=(-10.634,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8058,0.1679,0.1159) mvmt=(0.0029,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1692,-0.0721,0.0109) mvmt=(0.0029,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1692,-0.0721,0.0109) out=(0.1692,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6308,4.3160,-0.7593) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.131,7.184,93.261) lpos=(-10.631,4.316,-0.759) lprev=(-10.634,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8058,0.1679,0.8659) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1692,-0.0721,0.7609) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1692,-2.2833,-0.5891) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6308,4.3160,-0.7393) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6276,4.5291,-0.5388) mvmt=(0.0031,0.2131,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.128,6.971,93.481) lpos=(-10.628,4.529,-0.539) lprev=(-10.631,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6276,4.5291,-0.5388) mvmt=(0.0031,0.2131,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8026,0.3811,1.0864) mvmt=(0.0031,0.2131,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1724,0.1411,0.9814) mvmt=(0.0031,0.2131,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1724,-2.0702,-0.3686) mvmt=(0.0031,0.2131,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2077,-2.9561,2.4857) mvmt=(-0.1948,0.0865,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6276,4.5291,-0.5188) mvmt=(0.0031,0.2131,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6276,4.5291,-0.5388) mvmt=(0.0031,0.2131,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.128,6.971,93.481) lpos=(-10.628,4.529,-0.539) lprev=(-10.631,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6276,4.5291,-0.5388) mvmt=(0.0031,0.2131,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8026,0.3811,1.0864) mvmt=(0.0031,0.2131,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1724,0.1411,0.9814) mvmt=(0.0031,0.2131,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1724,-2.0702,-0.3686) mvmt=(0.0031,0.2131,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2077,-2.9561,2.4857) mvmt=(-0.1948,0.0865,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6276,4.5291,-0.5188) mvmt=(0.0031,0.2131,0.2205) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6276,4.3160,-0.7593) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.128,7.184,93.261) lpos=(-10.628,4.316,-0.759) lprev=(-10.631,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8026,0.1679,0.8659) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1724,-0.0721,0.7609) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1724,-2.2833,-0.5891) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6276,4.3160,-0.7393) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6276,4.3160,-1.5093) mvmt=(0.0031,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.128,7.184,92.511) lpos=(-10.628,4.316,-1.509) lprev=(-10.631,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8026,0.1679,0.1159) mvmt=(0.0031,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1724,-0.0721,0.0109) mvmt=(0.0031,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1724,-0.0721,0.0109) out=(0.1724,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6276,4.3160,-0.7593) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.128,7.184,93.261) lpos=(-10.628,4.316,-0.759) lprev=(-10.631,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8026,0.1679,0.8659) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1724,-0.0721,0.7609) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1724,-2.2833,-0.5891) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6276,4.3160,-0.7393) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6245,4.5248,-0.5433) mvmt=(0.0031,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.125,6.975,93.477) lpos=(-10.625,4.525,-0.543) lprev=(-10.628,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6245,4.5248,-0.5433) mvmt=(0.0031,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7995,0.3767,1.0819) mvmt=(0.0031,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1755,0.1367,0.9769) mvmt=(0.0031,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1755,-2.0745,-0.3731) mvmt=(0.0031,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2129,-2.9550,2.4812) mvmt=(-0.1908,0.0848,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6245,4.5248,-0.5233) mvmt=(0.0031,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6245,4.5248,-0.5433) mvmt=(0.0031,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.125,6.975,93.477) lpos=(-10.625,4.525,-0.543) lprev=(-10.628,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6245,4.5248,-0.5433) mvmt=(0.0031,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7995,0.3767,1.0819) mvmt=(0.0031,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1755,0.1367,0.9769) mvmt=(0.0031,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1755,-2.0745,-0.3731) mvmt=(0.0031,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2129,-2.9550,2.4812) mvmt=(-0.1908,0.0848,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6245,4.5248,-0.5233) mvmt=(0.0031,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6245,4.3160,-0.7593) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.125,7.184,93.261) lpos=(-10.625,4.316,-0.759) lprev=(-10.628,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7995,0.1679,0.8659) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1755,-0.0721,0.7609) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1755,-2.2833,-0.5891) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6245,4.3160,-0.7393) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6245,4.3160,-1.5093) mvmt=(0.0031,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.125,7.184,92.511) lpos=(-10.625,4.316,-1.509) lprev=(-10.628,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7995,0.1679,0.1159) mvmt=(0.0031,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1755,-0.0721,0.0109) mvmt=(0.0031,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1755,-0.0721,0.0109) out=(0.1755,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6245,4.3160,-0.7593) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.125,7.184,93.261) lpos=(-10.625,4.316,-0.759) lprev=(-10.628,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7995,0.1679,0.8659) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1755,-0.0721,0.7609) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1755,-2.2833,-0.5891) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6245,4.3160,-0.7393) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6215,4.5257,-0.5424) mvmt=(0.0031,0.2097,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.121,6.974,93.478) lpos=(-10.621,4.526,-0.542) lprev=(-10.625,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6215,4.5257,-0.5424) mvmt=(0.0031,0.2097,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7965,0.3776,1.0828) mvmt=(0.0031,0.2097,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1785,0.1376,0.9778) mvmt=(0.0031,0.2097,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1785,-2.0736,-0.3722) mvmt=(0.0031,0.2097,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2133,-2.9518,2.4821) mvmt=(-0.1917,0.0851,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6215,4.5257,-0.5224) mvmt=(0.0031,0.2097,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6215,4.5257,-0.5424) mvmt=(0.0031,0.2097,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.121,6.974,93.478) lpos=(-10.621,4.526,-0.542) lprev=(-10.625,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6215,4.5257,-0.5424) mvmt=(0.0031,0.2097,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7965,0.3776,1.0828) mvmt=(0.0031,0.2097,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1785,0.1376,0.9778) mvmt=(0.0031,0.2097,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1785,-2.0736,-0.3722) mvmt=(0.0031,0.2097,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2133,-2.9518,2.4821) mvmt=(-0.1917,0.0851,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6215,4.5257,-0.5224) mvmt=(0.0031,0.2097,0.2169) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6215,4.3160,-0.7593) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.121,7.184,93.261) lpos=(-10.621,4.316,-0.759) lprev=(-10.625,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7965,0.1679,0.8659) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1785,-0.0721,0.7609) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1785,-2.2833,-0.5891) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6215,4.3160,-0.7393) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6215,4.3160,-1.5093) mvmt=(0.0031,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.121,7.184,92.511) lpos=(-10.621,4.316,-1.509) lprev=(-10.625,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7965,0.1679,0.1159) mvmt=(0.0031,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1785,-0.0721,0.0109) mvmt=(0.0031,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1785,-0.0721,0.0109) out=(0.1785,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6215,4.3160,-0.7593) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.121,7.184,93.261) lpos=(-10.621,4.316,-0.759) lprev=(-10.625,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7965,0.1679,0.8659) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1785,-0.0721,0.7609) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1785,-2.2833,-0.5891) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6215,4.3160,-0.7393) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6185,4.5136,-0.5549) mvmt=(0.0029,0.1976,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.119,6.986,93.465) lpos=(-10.619,4.514,-0.555) lprev=(-10.621,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6185,4.5136,-0.5549) mvmt=(0.0029,0.1976,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7935,0.3655,1.0703) mvmt=(0.0029,0.1976,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1815,0.1255,0.9653) mvmt=(0.0029,0.1976,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1815,-2.0857,-0.3847) mvmt=(0.0029,0.1976,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2256,-2.9539,2.4696) mvmt=(-0.1806,0.0802,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6185,4.5136,-0.5349) mvmt=(0.0029,0.1976,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6185,4.5136,-0.5549) mvmt=(0.0029,0.1976,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.119,6.986,93.465) lpos=(-10.619,4.514,-0.555) lprev=(-10.621,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6185,4.5136,-0.5549) mvmt=(0.0029,0.1976,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7935,0.3655,1.0703) mvmt=(0.0029,0.1976,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1815,0.1255,0.9653) mvmt=(0.0029,0.1976,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1815,-2.0857,-0.3847) mvmt=(0.0029,0.1976,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2256,-2.9539,2.4696) mvmt=(-0.1806,0.0802,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6185,4.5136,-0.5349) mvmt=(0.0029,0.1976,0.2044) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6185,4.3160,-0.7593) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.119,7.184,93.261) lpos=(-10.619,4.316,-0.759) lprev=(-10.621,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7935,0.1679,0.8659) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1815,-0.0721,0.7609) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1815,-2.2833,-0.5891) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6185,4.3160,-0.7393) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6185,4.3160,-1.5093) mvmt=(0.0029,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.119,7.184,92.511) lpos=(-10.619,4.316,-1.509) lprev=(-10.621,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7935,0.1679,0.1159) mvmt=(0.0029,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1815,-0.0721,0.0109) mvmt=(0.0029,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1815,-0.0721,0.0109) out=(0.1815,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6185,4.3160,-0.7593) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.119,7.184,93.261) lpos=(-10.619,4.316,-0.759) lprev=(-10.621,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7935,0.1679,0.8659) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1815,-0.0721,0.7609) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1815,-2.2833,-0.5891) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6185,4.3160,-0.7393) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6155,4.5234,-0.5447) mvmt=(0.0031,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.115,6.977,93.475) lpos=(-10.615,4.523,-0.545) lprev=(-10.619,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6155,4.5234,-0.5447) mvmt=(0.0031,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7905,0.3754,1.0805) mvmt=(0.0031,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1845,0.1354,0.9755) mvmt=(0.0031,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1845,-2.0759,-0.3745) mvmt=(0.0031,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2177,-2.9472,2.4798) mvmt=(-0.1896,0.0842,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6155,4.5234,-0.5247) mvmt=(0.0031,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6155,4.5234,-0.5447) mvmt=(0.0031,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.115,6.977,93.475) lpos=(-10.615,4.523,-0.545) lprev=(-10.619,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6155,4.5234,-0.5447) mvmt=(0.0031,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7905,0.3754,1.0805) mvmt=(0.0031,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1845,0.1354,0.9755) mvmt=(0.0031,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1845,-2.0759,-0.3745) mvmt=(0.0031,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2177,-2.9472,2.4798) mvmt=(-0.1896,0.0842,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6155,4.5234,-0.5247) mvmt=(0.0031,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6155,4.3160,-0.7593) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.115,7.184,93.261) lpos=(-10.615,4.316,-0.759) lprev=(-10.619,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7905,0.1679,0.8659) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1845,-0.0721,0.7609) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1845,-2.2833,-0.5891) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6155,4.3160,-0.7393) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6155,4.3160,-1.5093) mvmt=(0.0031,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.115,7.184,92.511) lpos=(-10.615,4.316,-1.509) lprev=(-10.619,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7905,0.1679,0.1159) mvmt=(0.0031,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1845,-0.0721,0.0109) mvmt=(0.0031,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1845,-0.0721,0.0109) out=(0.1845,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6155,4.3160,-0.7593) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.115,7.184,93.261) lpos=(-10.615,4.316,-0.759) lprev=(-10.619,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7905,0.1679,0.8659) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1845,-0.0721,0.7609) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1845,-2.2833,-0.5891) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6155,4.3160,-0.7393) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6124,4.5239,-0.5442) mvmt=(0.0031,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.112,6.976,93.476) lpos=(-10.612,4.524,-0.544) lprev=(-10.615,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6124,4.5239,-0.5442) mvmt=(0.0031,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7874,0.3758,1.0810) mvmt=(0.0031,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1876,0.1358,0.9760) mvmt=(0.0031,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1876,-2.0754,-0.3740) mvmt=(0.0031,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2185,-2.9442,2.4803) mvmt=(-0.1900,0.0844,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6124,4.5239,-0.5242) mvmt=(0.0031,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6124,4.5239,-0.5442) mvmt=(0.0031,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.112,6.976,93.476) lpos=(-10.612,4.524,-0.544) lprev=(-10.615,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6124,4.5239,-0.5442) mvmt=(0.0031,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7874,0.3758,1.0810) mvmt=(0.0031,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1876,0.1358,0.9760) mvmt=(0.0031,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1876,-2.0754,-0.3740) mvmt=(0.0031,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2185,-2.9442,2.4803) mvmt=(-0.1900,0.0844,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6124,4.5239,-0.5242) mvmt=(0.0031,0.2079,0.2151) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6124,4.3160,-0.7593) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.112,7.184,93.261) lpos=(-10.612,4.316,-0.759) lprev=(-10.615,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7874,0.1679,0.8659) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1876,-0.0721,0.7609) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1876,-2.2833,-0.5891) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6124,4.3160,-0.7393) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6124,4.3160,-1.5093) mvmt=(0.0031,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.112,7.184,92.511) lpos=(-10.612,4.316,-1.509) lprev=(-10.615,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7874,0.1679,0.1159) mvmt=(0.0031,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1876,-0.0721,0.0109) mvmt=(0.0031,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1876,-0.0721,0.0109) out=(0.1876,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6124,4.3160,-0.7593) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.112,7.184,93.261) lpos=(-10.612,4.316,-0.759) lprev=(-10.615,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7874,0.1679,0.8659) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1876,-0.0721,0.7609) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1876,-2.2833,-0.5891) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6124,4.3160,-0.7393) mvmt=(0.0031,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6095,4.5168,-0.5515) mvmt=(0.0030,0.2008,0.2078) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.109,6.983,93.468) lpos=(-10.609,4.517,-0.552) lprev=(-10.612,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6095,4.5168,-0.5515) mvmt=(0.0030,0.2008,0.2078) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7845,0.3688,1.0737) mvmt=(0.0030,0.2008,0.2078) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1905,0.1288,0.9687) mvmt=(0.0030,0.2008,0.2078) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1905,-2.0825,-0.3813) mvmt=(0.0030,0.2008,0.2078) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2262,-2.9443,2.4730) mvmt=(-0.1836,0.0815,0.2078) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6095,4.5168,-0.5315) mvmt=(0.0030,0.2008,0.2078) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6095,4.5168,-0.5515) mvmt=(0.0030,0.2008,0.2078) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.109,6.983,93.468) lpos=(-10.609,4.517,-0.552) lprev=(-10.612,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6095,4.5168,-0.5515) mvmt=(0.0030,0.2008,0.2078) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7845,0.3688,1.0737) mvmt=(0.0030,0.2008,0.2078) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1905,0.1288,0.9687) mvmt=(0.0030,0.2008,0.2078) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1905,-2.0825,-0.3813) mvmt=(0.0030,0.2008,0.2078) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2262,-2.9443,2.4730) mvmt=(-0.1836,0.0815,0.2078) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6095,4.5168,-0.5315) mvmt=(0.0030,0.2008,0.2078) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6095,4.3160,-0.7593) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.109,7.184,93.261) lpos=(-10.609,4.316,-0.759) lprev=(-10.612,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7845,0.1679,0.8659) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1905,-0.0721,0.7609) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1905,-2.2833,-0.5891) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6095,4.3160,-0.7393) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6095,4.3160,-1.5093) mvmt=(0.0030,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.109,7.184,92.511) lpos=(-10.609,4.316,-1.509) lprev=(-10.612,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7845,0.1679,0.1159) mvmt=(0.0030,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1905,-0.0721,0.0109) mvmt=(0.0030,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1905,-0.0721,0.0109) out=(0.1905,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6095,4.3160,-0.7593) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.109,7.184,93.261) lpos=(-10.609,4.316,-0.759) lprev=(-10.612,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7845,0.1679,0.8659) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1905,-0.0721,0.7609) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1905,-2.2833,-0.5891) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6095,4.3160,-0.7393) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6064,4.5223,-0.5459) mvmt=(0.0030,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.106,6.978,93.474) lpos=(-10.606,4.522,-0.546) lprev=(-10.609,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6064,4.5223,-0.5459) mvmt=(0.0030,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7814,0.3742,1.0793) mvmt=(0.0030,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1936,0.1342,0.9743) mvmt=(0.0030,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1936,-2.0770,-0.3757) mvmt=(0.0030,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2223,-2.9393,2.4786) mvmt=(-0.1886,0.0837,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6064,4.5223,-0.5259) mvmt=(0.0030,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6064,4.5223,-0.5459) mvmt=(0.0030,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.106,6.978,93.474) lpos=(-10.606,4.522,-0.546) lprev=(-10.609,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6064,4.5223,-0.5459) mvmt=(0.0030,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7814,0.3742,1.0793) mvmt=(0.0030,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1936,0.1342,0.9743) mvmt=(0.0030,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1936,-2.0770,-0.3757) mvmt=(0.0030,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2223,-2.9393,2.4786) mvmt=(-0.1886,0.0837,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6064,4.5223,-0.5259) mvmt=(0.0030,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6064,4.3160,-0.7593) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.106,7.184,93.261) lpos=(-10.606,4.316,-0.759) lprev=(-10.609,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7814,0.1679,0.8659) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1936,-0.0721,0.7609) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1936,-2.2833,-0.5891) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6064,4.3160,-0.7393) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6064,4.3160,-1.5093) mvmt=(0.0030,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.106,7.184,92.511) lpos=(-10.606,4.316,-1.509) lprev=(-10.609,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7814,0.1679,0.1159) mvmt=(0.0030,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1936,-0.0721,0.0109) mvmt=(0.0030,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1936,-0.0721,0.0109) out=(0.1936,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6064,4.3160,-0.7593) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.106,7.184,93.261) lpos=(-10.606,4.316,-0.759) lprev=(-10.609,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7814,0.1679,0.8659) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1936,-0.0721,0.7609) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1936,-2.2833,-0.5891) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6064,4.3160,-0.7393) mvmt=(0.0030,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6035,4.5117,-0.5568) mvmt=(0.0029,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.104,6.988,93.463) lpos=(-10.604,4.512,-0.557) lprev=(-10.606,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6035,4.5117,-0.5568) mvmt=(0.0029,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7785,0.3637,1.0684) mvmt=(0.0029,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1965,0.1237,0.9634) mvmt=(0.0029,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1965,-2.0876,-0.3866) mvmt=(0.0029,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2332,-2.9408,2.4677) mvmt=(-0.1789,0.0795,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6035,4.5117,-0.5368) mvmt=(0.0029,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6035,4.5117,-0.5568) mvmt=(0.0029,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.104,6.988,93.463) lpos=(-10.604,4.512,-0.557) lprev=(-10.606,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6035,4.5117,-0.5568) mvmt=(0.0029,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7785,0.3637,1.0684) mvmt=(0.0029,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1965,0.1237,0.9634) mvmt=(0.0029,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1965,-2.0876,-0.3866) mvmt=(0.0029,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2332,-2.9408,2.4677) mvmt=(-0.1789,0.0795,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6035,4.5117,-0.5368) mvmt=(0.0029,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6035,4.3160,-0.7593) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.104,7.184,93.261) lpos=(-10.604,4.316,-0.759) lprev=(-10.606,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7785,0.1679,0.8659) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1965,-0.0721,0.7609) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1965,-2.2833,-0.5891) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6035,4.3160,-0.7393) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6035,4.3160,-1.5093) mvmt=(0.0029,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.104,7.184,92.511) lpos=(-10.604,4.316,-1.509) lprev=(-10.606,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7785,0.1679,0.1159) mvmt=(0.0029,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1965,-0.0721,0.0109) mvmt=(0.0029,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1965,-0.0721,0.0109) out=(0.1965,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6035,4.3160,-0.7593) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.104,7.184,93.261) lpos=(-10.604,4.316,-0.759) lprev=(-10.606,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7785,0.1679,0.8659) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1965,-0.0721,0.7609) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1965,-2.2833,-0.5891) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6035,4.3160,-0.7393) mvmt=(0.0029,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6049,4.5164,-0.5519) mvmt=(-0.0013,0.2004,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.105,6.984,93.468) lpos=(-10.605,4.516,-0.552) lprev=(-10.604,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6049,4.5164,-0.5519) mvmt=(-0.0013,0.2004,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7799,0.3684,1.0732) mvmt=(-0.0013,0.2004,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1951,0.1284,0.9683) mvmt=(-0.0013,0.2004,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1951,-2.0829,-0.3818) mvmt=(-0.0013,0.2004,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2283,-2.9402,2.4726) mvmt=(-0.1849,0.0774,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6049,4.5164,-0.5320) mvmt=(-0.0013,0.2004,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6049,4.5164,-0.5519) mvmt=(-0.0013,0.2004,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.105,6.984,93.468) lpos=(-10.605,4.516,-0.552) lprev=(-10.604,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6049,4.5164,-0.5519) mvmt=(-0.0013,0.2004,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7799,0.3684,1.0732) mvmt=(-0.0013,0.2004,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1951,0.1284,0.9683) mvmt=(-0.0013,0.2004,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1951,-2.0829,-0.3818) mvmt=(-0.0013,0.2004,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2283,-2.9402,2.4726) mvmt=(-0.1849,0.0774,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6049,4.5164,-0.5320) mvmt=(-0.0013,0.2004,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6049,4.3160,-0.7593) mvmt=(-0.0013,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.105,7.184,93.261) lpos=(-10.605,4.316,-0.759) lprev=(-10.604,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7799,0.1679,0.8659) mvmt=(-0.0013,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1951,-0.0721,0.7609) mvmt=(-0.0013,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1951,-2.2833,-0.5891) mvmt=(-0.0013,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6049,4.3160,-0.7393) mvmt=(-0.0013,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6049,4.3160,-1.5093) mvmt=(-0.0013,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.105,7.184,92.511) lpos=(-10.605,4.316,-1.509) lprev=(-10.604,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7799,0.1679,0.1159) mvmt=(-0.0013,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1951,-0.0721,0.0109) mvmt=(-0.0013,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1951,-0.0721,0.0109) out=(0.1951,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6049,4.3160,-0.7593) mvmt=(-0.0013,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.105,7.184,93.261) lpos=(-10.605,4.316,-0.759) lprev=(-10.604,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7799,0.1679,0.8659) mvmt=(-0.0013,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1951,-0.0721,0.7609) mvmt=(-0.0013,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1951,-2.2833,-0.5891) mvmt=(-0.0013,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6049,4.3160,-0.7393) mvmt=(-0.0013,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6420,4.5203,-0.5479) mvmt=(-0.0371,0.2043,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.142,6.980,93.472) lpos=(-10.642,4.520,-0.548) lprev=(-10.605,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6420,4.5203,-0.5479) mvmt=(-0.0371,0.2043,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8170,0.3723,1.0773) mvmt=(-0.0371,0.2043,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1580,0.1323,0.9723) mvmt=(-0.0371,0.2043,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1580,-2.0790,-0.3777) mvmt=(-0.0371,0.2043,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2102,-2.9728,2.4766) mvmt=(-0.2025,0.0460,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6420,4.5203,-0.5279) mvmt=(-0.0371,0.2043,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6420,4.5203,-0.5479) mvmt=(-0.0371,0.2043,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.142,6.980,93.472) lpos=(-10.642,4.520,-0.548) lprev=(-10.605,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6420,4.5203,-0.5479) mvmt=(-0.0371,0.2043,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8170,0.3723,1.0773) mvmt=(-0.0371,0.2043,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1580,0.1323,0.9723) mvmt=(-0.0371,0.2043,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1580,-2.0790,-0.3777) mvmt=(-0.0371,0.2043,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2102,-2.9728,2.4766) mvmt=(-0.2025,0.0460,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6420,4.5203,-0.5279) mvmt=(-0.0371,0.2043,0.2114) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6420,4.3160,-0.7593) mvmt=(-0.0371,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.142,7.184,93.261) lpos=(-10.642,4.316,-0.759) lprev=(-10.605,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8170,0.1679,0.8659) mvmt=(-0.0371,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1580,-0.0721,0.7609) mvmt=(-0.0371,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1580,-2.2833,-0.5891) mvmt=(-0.0371,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6420,4.3160,-0.7393) mvmt=(-0.0371,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6420,4.3160,-1.5093) mvmt=(-0.0371,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.142,7.184,92.511) lpos=(-10.642,4.316,-1.509) lprev=(-10.605,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8170,0.1679,0.1159) mvmt=(-0.0371,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1580,-0.0721,0.0109) mvmt=(-0.0371,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1580,-0.0721,0.0109) out=(0.1580,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6420,4.3160,-0.7593) mvmt=(-0.0371,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.142,7.184,93.261) lpos=(-10.642,4.316,-0.759) lprev=(-10.605,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8170,0.1679,0.8659) mvmt=(-0.0371,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1580,-0.0721,0.7609) mvmt=(-0.0371,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1580,-2.2833,-0.5891) mvmt=(-0.0371,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6420,4.3160,-0.7393) mvmt=(-0.0371,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7115,4.5120,-0.5565) mvmt=(-0.0695,0.1961,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.211,6.988,93.464) lpos=(-10.711,4.512,-0.556) lprev=(-10.642,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7115,4.5120,-0.5565) mvmt=(-0.0695,0.1961,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8865,0.3640,1.0687) mvmt=(-0.0695,0.1961,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0885,0.1240,0.9637) mvmt=(-0.0695,0.1961,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0885,-2.0873,-0.3863) mvmt=(-0.0695,0.1961,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1905,-3.0399,2.4680) mvmt=(-0.2076,0.0130,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7115,4.5120,-0.5365) mvmt=(-0.0695,0.1961,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7115,4.5120,-0.5565) mvmt=(-0.0695,0.1961,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.211,6.988,93.464) lpos=(-10.711,4.512,-0.556) lprev=(-10.642,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7115,4.5120,-0.5565) mvmt=(-0.0695,0.1961,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8865,0.3640,1.0687) mvmt=(-0.0695,0.1961,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0885,0.1240,0.9637) mvmt=(-0.0695,0.1961,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0885,-2.0873,-0.3863) mvmt=(-0.0695,0.1961,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1905,-3.0399,2.4680) mvmt=(-0.2076,0.0130,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7115,4.5120,-0.5365) mvmt=(-0.0695,0.1961,0.2028) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7115,4.3160,-0.7593) mvmt=(-0.0695,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.211,7.184,93.261) lpos=(-10.711,4.316,-0.759) lprev=(-10.642,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8865,0.1679,0.8659) mvmt=(-0.0695,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0885,-0.0721,0.7609) mvmt=(-0.0695,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0885,-2.2833,-0.5891) mvmt=(-0.0695,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7115,4.3160,-0.7393) mvmt=(-0.0695,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7115,4.3160,-1.5093) mvmt=(-0.0695,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.211,7.184,92.511) lpos=(-10.711,4.316,-1.509) lprev=(-10.642,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8865,0.1679,0.1159) mvmt=(-0.0695,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0885,-0.0721,0.0109) mvmt=(-0.0695,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0885,-0.0721,0.0109) out=(0.0885,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.7115,4.3160,-0.7593) mvmt=(-0.0695,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.211,7.184,93.261) lpos=(-10.711,4.316,-0.759) lprev=(-10.642,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8865,0.1679,0.8659) mvmt=(-0.0695,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0885,-0.0721,0.7609) mvmt=(-0.0695,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0885,-2.2833,-0.5891) mvmt=(-0.0695,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7115,4.3160,-0.7393) mvmt=(-0.0695,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8009,4.5142,-0.5543) mvmt=(-0.0895,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.301,6.986,93.466) lpos=(-10.801,4.514,-0.554) lprev=(-10.711,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8009,4.5142,-0.5543) mvmt=(-0.0895,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9759,0.3661,1.0709) mvmt=(-0.0895,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0009,0.1261,0.9659) mvmt=(-0.0895,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0009,-2.0851,-0.3841) mvmt=(-0.0895,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8009,4.5142,-0.5343) mvmt=(-0.0895,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8009,4.5142,-0.5543) mvmt=(-0.0895,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.301,6.986,93.466) lpos=(-10.801,4.514,-0.554) lprev=(-10.711,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8009,4.5142,-0.5543) mvmt=(-0.0895,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9759,0.3661,1.0709) mvmt=(-0.0895,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0009,0.1261,0.9659) mvmt=(-0.0895,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0009,-2.0851,-0.3841) mvmt=(-0.0895,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8009,4.5142,-0.5343) mvmt=(-0.0895,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8009,4.3160,-0.7593) mvmt=(-0.0895,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.301,7.184,93.261) lpos=(-10.801,4.316,-0.759) lprev=(-10.711,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9759,0.1679,0.8659) mvmt=(-0.0895,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0009,-0.0721,0.7609) mvmt=(-0.0895,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0009,-2.2833,-0.5891) mvmt=(-0.0895,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8009,4.3160,-0.7393) mvmt=(-0.0895,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8009,4.3160,-1.5093) mvmt=(-0.0895,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.301,7.184,92.511) lpos=(-10.801,4.316,-1.509) lprev=(-10.711,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9759,0.1679,0.1159) mvmt=(-0.0895,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0009,-0.0721,0.0109) mvmt=(-0.0895,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0009,-0.0721,0.0109) out=(-0.0009,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.8009,4.3160,-0.7593) mvmt=(-0.0895,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.301,7.184,93.261) lpos=(-10.801,4.316,-0.759) lprev=(-10.711,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9759,0.1679,0.8659) mvmt=(-0.0895,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0009,-0.0721,0.7609) mvmt=(-0.0895,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0009,-2.2833,-0.5891) mvmt=(-0.0895,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8009,4.3160,-0.7393) mvmt=(-0.0895,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8886,4.5102,-0.5584) mvmt=(-0.0877,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.389,6.990,93.462) lpos=(-10.889,4.510,-0.558) lprev=(-10.801,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8886,4.5102,-0.5584) mvmt=(-0.0877,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0636,0.3621,1.0668) mvmt=(-0.0877,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0886,0.1221,0.9618) mvmt=(-0.0877,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0886,-2.0892,-0.3882) mvmt=(-0.0877,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8886,4.5102,-0.5384) mvmt=(-0.0877,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8886,4.5102,-0.5584) mvmt=(-0.0877,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.389,6.990,93.462) lpos=(-10.889,4.510,-0.558) lprev=(-10.801,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8886,4.5102,-0.5584) mvmt=(-0.0877,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0636,0.3621,1.0668) mvmt=(-0.0877,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0886,0.1221,0.9618) mvmt=(-0.0877,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0886,-2.0892,-0.3882) mvmt=(-0.0877,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8886,4.5102,-0.5384) mvmt=(-0.0877,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8886,4.3160,-0.7593) mvmt=(-0.0877,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.389,7.184,93.261) lpos=(-10.889,4.316,-0.759) lprev=(-10.801,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0636,0.1679,0.8659) mvmt=(-0.0877,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0886,-0.0721,0.7609) mvmt=(-0.0877,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0886,-2.2833,-0.5891) mvmt=(-0.0877,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8886,4.3160,-0.7393) mvmt=(-0.0877,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8886,4.3160,-1.5093) mvmt=(-0.0877,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.389,7.184,92.511) lpos=(-10.889,4.316,-1.509) lprev=(-10.801,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0636,0.1679,0.1159) mvmt=(-0.0877,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0886,-0.0721,0.0109) mvmt=(-0.0877,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0886,-0.0721,0.0109) out=(-0.0886,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.8886,4.3160,-0.7593) mvmt=(-0.0877,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.389,7.184,93.261) lpos=(-10.889,4.316,-0.759) lprev=(-10.801,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0636,0.1679,0.8659) mvmt=(-0.0877,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0886,-0.0721,0.7609) mvmt=(-0.0877,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0886,-2.2833,-0.5891) mvmt=(-0.0877,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8886,4.3160,-0.7393) mvmt=(-0.0877,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9770,4.5118,-0.5568) mvmt=(-0.0884,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.477,6.988,93.463) lpos=(-10.977,4.512,-0.557) lprev=(-10.889,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9770,4.5118,-0.5568) mvmt=(-0.0884,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1520,0.3637,1.0684) mvmt=(-0.0884,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1770,0.1237,0.9634) mvmt=(-0.0884,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1770,-2.0875,-0.3866) mvmt=(-0.0884,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9770,4.5118,-0.5368) mvmt=(-0.0884,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9770,4.5118,-0.5568) mvmt=(-0.0884,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.477,6.988,93.463) lpos=(-10.977,4.512,-0.557) lprev=(-10.889,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9770,4.5118,-0.5568) mvmt=(-0.0884,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1520,0.3637,1.0684) mvmt=(-0.0884,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1770,0.1237,0.9634) mvmt=(-0.0884,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1770,-2.0875,-0.3866) mvmt=(-0.0884,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9770,4.5118,-0.5368) mvmt=(-0.0884,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9770,4.3160,-0.7593) mvmt=(-0.0884,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.477,7.184,93.261) lpos=(-10.977,4.316,-0.759) lprev=(-10.889,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1520,0.1679,0.8659) mvmt=(-0.0884,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1770,-0.0721,0.7609) mvmt=(-0.0884,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1770,-2.2833,-0.5891) mvmt=(-0.0884,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9770,4.3160,-0.7393) mvmt=(-0.0884,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9770,4.3160,-1.5093) mvmt=(-0.0884,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.477,7.184,92.511) lpos=(-10.977,4.316,-1.509) lprev=(-10.889,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1520,0.1679,0.1159) mvmt=(-0.0884,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1770,-0.0721,0.0109) mvmt=(-0.0884,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1770,-0.0721,0.0109) out=(-0.1770,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.9770,4.3160,-0.7593) mvmt=(-0.0884,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.477,7.184,93.261) lpos=(-10.977,4.316,-0.759) lprev=(-10.889,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1520,0.1679,0.8659) mvmt=(-0.0884,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1770,-0.0721,0.7609) mvmt=(-0.0884,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1770,-2.2833,-0.5891) mvmt=(-0.0884,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9770,4.3160,-0.7393) mvmt=(-0.0884,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0713,4.5248,-0.5433) mvmt=(-0.0943,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,6.975,93.477) lpos=(-11.071,4.525,-0.543) lprev=(-10.977,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0713,4.5248,-0.5433) mvmt=(-0.0943,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2463,0.3768,1.0819) mvmt=(-0.0943,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2713,0.1368,0.9769) mvmt=(-0.0943,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2713,-2.0745,-0.3731) mvmt=(-0.0943,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0713,4.5248,-0.5233) mvmt=(-0.0943,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0713,4.5248,-0.5433) mvmt=(-0.0943,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,6.975,93.477) lpos=(-11.071,4.525,-0.543) lprev=(-10.977,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0713,4.5248,-0.5433) mvmt=(-0.0943,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2463,0.3768,1.0819) mvmt=(-0.0943,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2713,0.1368,0.9769) mvmt=(-0.0943,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2713,-2.0745,-0.3731) mvmt=(-0.0943,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0713,4.5248,-0.5233) mvmt=(-0.0943,0.2088,0.2160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0713,4.3160,-0.7593) mvmt=(-0.0943,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,7.184,93.261) lpos=(-11.071,4.316,-0.759) lprev=(-10.977,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2463,0.1679,0.8659) mvmt=(-0.0943,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2713,-0.0721,0.7609) mvmt=(-0.0943,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2713,-2.2833,-0.5891) mvmt=(-0.0943,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0713,4.3160,-0.7393) mvmt=(-0.0943,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0713,4.3160,-1.5093) mvmt=(-0.0943,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,7.184,92.511) lpos=(-11.071,4.316,-1.509) lprev=(-10.977,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2463,0.1679,0.1159) mvmt=(-0.0943,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2713,-0.0721,0.0109) mvmt=(-0.0943,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2713,-0.0721,0.0109) out=(-0.2713,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0713,4.3160,-0.7593) mvmt=(-0.0943,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,7.184,93.261) lpos=(-11.071,4.316,-0.759) lprev=(-10.977,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2463,0.1679,0.8659) mvmt=(-0.0943,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2713,-0.0721,0.7609) mvmt=(-0.0943,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2713,-2.2833,-0.5891) mvmt=(-0.0943,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0713,4.3160,-0.7393) mvmt=(-0.0943,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1626,4.5183,-0.5500) mvmt=(-0.0914,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1626,4.5183,-0.5500) mvmt=(-0.0914,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.663,6.982,93.470) lpos=(-11.163,4.518,-0.550) lprev=(-11.071,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1626,4.5183,-0.5500) mvmt=(-0.0914,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3376,0.3703,1.0752) mvmt=(-0.0914,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3626,0.1303,0.9702) mvmt=(-0.0914,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3626,-2.0810,-0.3798) mvmt=(-0.0914,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1626,4.5183,-0.5300) mvmt=(-0.0914,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.663,6.982,93.470) lpos=(-11.163,4.518,-0.550) lprev=(-11.071,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0713,4.5183,-0.5500) mvmt=(0.0000,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,6.982,93.470) lpos=(-11.071,4.518,-0.550) lprev=(-11.071,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0713,4.5183,-0.5500) mvmt=(0.0000,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2463,0.3703,1.0752) mvmt=(0.0000,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2713,0.1303,0.9702) mvmt=(0.0000,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2713,-2.0810,-0.3798) mvmt=(0.0000,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0713,4.5183,-0.5300) mvmt=(0.0000,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0713,4.5183,-0.5500) mvmt=(0.0000,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,6.982,93.470) lpos=(-11.071,4.518,-0.550) lprev=(-11.071,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0713,4.5183,-0.5500) mvmt=(0.0000,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2463,0.3703,1.0752) mvmt=(0.0000,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2713,0.1303,0.9702) mvmt=(0.0000,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2713,-2.0810,-0.3798) mvmt=(0.0000,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0713,4.5183,-0.5300) mvmt=(0.0000,0.2024,0.2093) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1656,4.5249,-0.5432) mvmt=(-0.0943,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1656,4.5249,-0.5432) mvmt=(-0.0943,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.666,6.975,93.477) lpos=(-11.166,4.525,-0.543) lprev=(-11.071,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1656,4.5249,-0.5432) mvmt=(-0.0943,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3406,0.3768,1.0820) mvmt=(-0.0943,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3656,0.1368,0.9770) mvmt=(-0.0943,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3656,-2.0744,-0.3730) mvmt=(-0.0943,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1656,4.5249,-0.5232) mvmt=(-0.0943,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.666,6.975,93.477) lpos=(-11.166,4.525,-0.543) lprev=(-11.071,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0713,4.5249,-0.5432) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,6.975,93.477) lpos=(-11.071,4.525,-0.543) lprev=(-11.071,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0713,4.5249,-0.5432) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2463,0.3768,1.0820) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2713,0.1368,0.9770) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2713,-2.0744,-0.3730) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0713,4.5249,-0.5232) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0713,4.5249,-0.5432) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,6.975,93.477) lpos=(-11.071,4.525,-0.543) lprev=(-11.071,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0713,4.5249,-0.5432) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2463,0.3768,1.0820) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2713,0.1368,0.9770) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2713,-2.0744,-0.3730) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0713,4.5249,-0.5232) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1587,4.5096,-0.5591) mvmt=(-0.0874,0.1936,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1587,4.5096,-0.5591) mvmt=(-0.0874,0.1936,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.659,6.990,93.461) lpos=(-11.159,4.510,-0.559) lprev=(-11.071,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1587,4.5096,-0.5591) mvmt=(-0.0874,0.1936,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3337,0.3615,1.0661) mvmt=(-0.0874,0.1936,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3587,0.1215,0.9611) mvmt=(-0.0874,0.1936,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3587,-2.0898,-0.3889) mvmt=(-0.0874,0.1936,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1587,4.5096,-0.5391) mvmt=(-0.0874,0.1936,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.659,6.990,93.461) lpos=(-11.159,4.510,-0.559) lprev=(-11.071,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0713,4.5096,-0.5591) mvmt=(0.0000,0.1936,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,6.990,93.461) lpos=(-11.071,4.510,-0.559) lprev=(-11.071,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0713,4.5096,-0.5591) mvmt=(0.0000,0.1936,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2463,0.3615,1.0661) mvmt=(0.0000,0.1936,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2713,0.1215,0.9611) mvmt=(0.0000,0.1936,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2713,-2.0898,-0.3889) mvmt=(0.0000,0.1936,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0713,4.5096,-0.5391) mvmt=(0.0000,0.1936,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0713,4.5096,-0.5591) mvmt=(0.0000,0.1936,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,6.990,93.461) lpos=(-11.071,4.510,-0.559) lprev=(-11.071,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0713,4.5096,-0.5591) mvmt=(0.0000,0.1936,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2463,0.3615,1.0661) mvmt=(0.0000,0.1936,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2713,0.1215,0.9611) mvmt=(0.0000,0.1936,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2713,-2.0898,-0.3889) mvmt=(0.0000,0.1936,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0713,4.5096,-0.5391) mvmt=(0.0000,0.1936,0.2002) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1512,4.5124,-0.5561) mvmt=(-0.0799,0.1964,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1512,4.5124,-0.5561) mvmt=(-0.0799,0.1964,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.651,6.988,93.464) lpos=(-11.151,4.512,-0.556) lprev=(-11.071,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1512,4.5124,-0.5561) mvmt=(-0.0799,0.1964,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3262,0.3644,1.0691) mvmt=(-0.0799,0.1964,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3512,0.1244,0.9641) mvmt=(-0.0799,0.1964,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3512,-2.0869,-0.3859) mvmt=(-0.0799,0.1964,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1512,4.5124,-0.5361) mvmt=(-0.0799,0.1964,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.651,6.988,93.464) lpos=(-11.151,4.512,-0.556) lprev=(-11.071,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0713,4.5124,-0.5561) mvmt=(0.0000,0.1964,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,6.988,93.464) lpos=(-11.071,4.512,-0.556) lprev=(-11.071,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0713,4.5124,-0.5561) mvmt=(0.0000,0.1964,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2463,0.3644,1.0691) mvmt=(0.0000,0.1964,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2713,0.1244,0.9641) mvmt=(0.0000,0.1964,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2713,-2.0869,-0.3859) mvmt=(0.0000,0.1964,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0713,4.5124,-0.5361) mvmt=(0.0000,0.1964,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0713,4.5124,-0.5561) mvmt=(0.0000,0.1964,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.571,6.988,93.464) lpos=(-11.071,4.512,-0.556) lprev=(-11.071,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0713,4.5124,-0.5561) mvmt=(0.0000,0.1964,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2463,0.3644,1.0691) mvmt=(0.0000,0.1964,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2713,0.1244,0.9641) mvmt=(0.0000,0.1964,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2713,-2.0869,-0.3859) mvmt=(0.0000,0.1964,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0713,4.5124,-0.5361) mvmt=(0.0000,0.1964,0.2032) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1169,4.5059,-0.5628) mvmt=(-0.0456,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.617,6.994,93.457) lpos=(-11.117,4.506,-0.563) lprev=(-11.071,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1169,4.5059,-0.5628) mvmt=(-0.0456,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2919,0.3579,1.0624) mvmt=(-0.0456,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3168,0.1179,0.9574) mvmt=(-0.0456,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3168,-2.0934,-0.3926) mvmt=(-0.0456,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1169,4.5059,-0.5428) mvmt=(-0.0456,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1169,4.5059,-0.5628) mvmt=(-0.0456,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.617,6.994,93.457) lpos=(-11.117,4.506,-0.563) lprev=(-11.071,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1169,4.5059,-0.5628) mvmt=(-0.0456,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2919,0.3579,1.0624) mvmt=(-0.0456,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3168,0.1179,0.9574) mvmt=(-0.0456,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3168,-2.0934,-0.3926) mvmt=(-0.0456,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1169,4.5059,-0.5428) mvmt=(-0.0456,0.1900,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1169,4.3160,-0.7593) mvmt=(-0.0456,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.617,7.184,93.261) lpos=(-11.117,4.316,-0.759) lprev=(-11.071,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2919,0.1679,0.8659) mvmt=(-0.0456,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3168,-0.0721,0.7609) mvmt=(-0.0456,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3168,-2.2833,-0.5891) mvmt=(-0.0456,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1169,4.3160,-0.7393) mvmt=(-0.0456,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1169,4.3160,-1.5093) mvmt=(-0.0456,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.617,7.184,92.511) lpos=(-11.117,4.316,-1.509) lprev=(-11.071,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2919,0.1679,0.1159) mvmt=(-0.0456,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3168,-0.0721,0.0109) mvmt=(-0.0456,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3168,-0.0721,0.0109) out=(-0.3168,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.1169,4.3160,-0.7593) mvmt=(-0.0456,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.617,7.184,93.261) lpos=(-11.117,4.316,-0.759) lprev=(-11.071,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2919,0.1679,0.8659) mvmt=(-0.0456,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3168,-0.0721,0.7609) mvmt=(-0.0456,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3168,-2.2833,-0.5891) mvmt=(-0.0456,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1169,4.3160,-0.7393) mvmt=(-0.0456,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1308,4.5132,-0.5553) mvmt=(-0.0139,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1308,4.5132,-0.5553) mvmt=(-0.0139,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.631,6.987,93.465) lpos=(-11.131,4.513,-0.555) lprev=(-11.117,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1308,4.5132,-0.5553) mvmt=(-0.0139,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3058,0.3651,1.0699) mvmt=(-0.0139,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3308,0.1251,0.9649) mvmt=(-0.0139,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3308,-2.0861,-0.3851) mvmt=(-0.0139,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1308,4.5132,-0.5353) mvmt=(-0.0139,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.631,6.987,93.465) lpos=(-11.131,4.513,-0.555) lprev=(-11.117,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1169,4.5132,-0.5553) mvmt=(0.0000,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.617,6.987,93.465) lpos=(-11.117,4.513,-0.555) lprev=(-11.117,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1169,4.5132,-0.5553) mvmt=(0.0000,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2919,0.3651,1.0699) mvmt=(0.0000,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3168,0.1251,0.9649) mvmt=(0.0000,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3168,-2.0861,-0.3851) mvmt=(0.0000,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1169,4.5132,-0.5353) mvmt=(0.0000,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1169,4.5132,-0.5553) mvmt=(0.0000,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.617,6.987,93.465) lpos=(-11.117,4.513,-0.555) lprev=(-11.117,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1169,4.5132,-0.5553) mvmt=(0.0000,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2919,0.3651,1.0699) mvmt=(0.0000,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3168,0.1251,0.9649) mvmt=(0.0000,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3168,-2.0861,-0.3851) mvmt=(0.0000,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1169,4.5132,-0.5353) mvmt=(0.0000,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0944,4.5248,-0.5432) mvmt=(0.0225,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.594,6.975,93.477) lpos=(-11.094,4.525,-0.543) lprev=(-11.117,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0944,4.5248,-0.5432) mvmt=(0.0225,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2694,0.3768,1.0820) mvmt=(0.0225,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2944,0.1368,0.9770) mvmt=(0.0225,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2944,-2.0745,-0.3730) mvmt=(0.0225,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0944,4.5248,-0.5232) mvmt=(0.0225,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0944,4.5248,-0.5432) mvmt=(0.0225,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.594,6.975,93.477) lpos=(-11.094,4.525,-0.543) lprev=(-11.117,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0944,4.5248,-0.5432) mvmt=(0.0225,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2694,0.3768,1.0820) mvmt=(0.0225,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2944,0.1368,0.9770) mvmt=(0.0225,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2944,-2.0745,-0.3730) mvmt=(0.0225,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0944,4.5248,-0.5232) mvmt=(0.0225,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0944,4.3160,-0.7593) mvmt=(0.0225,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.594,7.184,93.261) lpos=(-11.094,4.316,-0.759) lprev=(-11.117,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2694,0.1679,0.8659) mvmt=(0.0225,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2944,-0.0721,0.7609) mvmt=(0.0225,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2944,-2.2833,-0.5891) mvmt=(0.0225,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0944,4.3160,-0.7393) mvmt=(0.0225,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0944,4.3160,-1.5093) mvmt=(0.0225,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.594,7.184,92.511) lpos=(-11.094,4.316,-1.509) lprev=(-11.117,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2694,0.1679,0.1159) mvmt=(0.0225,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2944,-0.0721,0.0109) mvmt=(0.0225,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2944,-0.0721,0.0109) out=(-0.2944,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0944,4.3160,-0.7593) mvmt=(0.0225,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.594,7.184,93.261) lpos=(-11.094,4.316,-0.759) lprev=(-11.117,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2694,0.1679,0.8659) mvmt=(0.0225,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2944,-0.0721,0.7609) mvmt=(0.0225,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2944,-2.2833,-0.5891) mvmt=(0.0225,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0944,4.3160,-0.7393) mvmt=(0.0225,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0586,4.5073,-0.5614) mvmt=(0.0358,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.559,6.993,93.459) lpos=(-11.059,4.507,-0.561) lprev=(-11.094,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0586,4.5073,-0.5614) mvmt=(0.0358,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2336,0.3592,1.0638) mvmt=(0.0358,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2586,0.1192,0.9588) mvmt=(0.0358,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2586,-2.0920,-0.3912) mvmt=(0.0358,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0586,4.5073,-0.5414) mvmt=(0.0358,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0586,4.5073,-0.5614) mvmt=(0.0358,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.559,6.993,93.459) lpos=(-11.059,4.507,-0.561) lprev=(-11.094,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0586,4.5073,-0.5614) mvmt=(0.0358,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2336,0.3592,1.0638) mvmt=(0.0358,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2586,0.1192,0.9588) mvmt=(0.0358,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2586,-2.0920,-0.3912) mvmt=(0.0358,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0586,4.5073,-0.5414) mvmt=(0.0358,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0586,4.3160,-0.7593) mvmt=(0.0358,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.559,7.184,93.261) lpos=(-11.059,4.316,-0.759) lprev=(-11.094,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2336,0.1679,0.8659) mvmt=(0.0358,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2586,-0.0721,0.7609) mvmt=(0.0358,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2586,-2.2833,-0.5891) mvmt=(0.0358,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0586,4.3160,-0.7393) mvmt=(0.0358,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0586,4.3160,-1.5093) mvmt=(0.0358,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.559,7.184,92.511) lpos=(-11.059,4.316,-1.509) lprev=(-11.094,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2336,0.1679,0.1159) mvmt=(0.0358,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2586,-0.0721,0.0109) mvmt=(0.0358,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2586,-0.0721,0.0109) out=(-0.2586,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0586,4.3160,-0.7593) mvmt=(0.0358,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.559,7.184,93.261) lpos=(-11.059,4.316,-0.759) lprev=(-11.094,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2336,0.1679,0.8659) mvmt=(0.0358,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2586,-0.0721,0.7609) mvmt=(0.0358,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2586,-2.2833,-0.5891) mvmt=(0.0358,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0586,4.3160,-0.7393) mvmt=(0.0358,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0210,4.5170,-0.5513) mvmt=(0.0376,0.2010,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.521,6.983,93.469) lpos=(-11.021,4.517,-0.551) lprev=(-11.059,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0210,4.5170,-0.5513) mvmt=(0.0376,0.2010,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1960,0.3690,1.0739) mvmt=(0.0376,0.2010,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2210,0.1290,0.9689) mvmt=(0.0376,0.2010,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2210,-2.0823,-0.3811) mvmt=(0.0376,0.2010,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0210,4.5170,-0.5313) mvmt=(0.0376,0.2010,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0210,4.5170,-0.5513) mvmt=(0.0376,0.2010,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.521,6.983,93.469) lpos=(-11.021,4.517,-0.551) lprev=(-11.059,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0210,4.5170,-0.5513) mvmt=(0.0376,0.2010,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1960,0.3690,1.0739) mvmt=(0.0376,0.2010,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2210,0.1290,0.9689) mvmt=(0.0376,0.2010,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2210,-2.0823,-0.3811) mvmt=(0.0376,0.2010,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0210,4.5170,-0.5313) mvmt=(0.0376,0.2010,0.2080) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0210,4.3160,-0.7593) mvmt=(0.0376,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.521,7.184,93.261) lpos=(-11.021,4.316,-0.759) lprev=(-11.059,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1960,0.1679,0.8659) mvmt=(0.0376,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2210,-0.0721,0.7609) mvmt=(0.0376,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2210,-2.2833,-0.5891) mvmt=(0.0376,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0210,4.3160,-0.7393) mvmt=(0.0376,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0210,4.3160,-1.5093) mvmt=(0.0376,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.521,7.184,92.511) lpos=(-11.021,4.316,-1.509) lprev=(-11.059,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1960,0.1679,0.1159) mvmt=(0.0376,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2210,-0.0721,0.0109) mvmt=(0.0376,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2210,-0.0721,0.0109) out=(-0.2210,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0210,4.3160,-0.7593) mvmt=(0.0376,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.521,7.184,93.261) lpos=(-11.021,4.316,-0.759) lprev=(-11.059,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1960,0.1679,0.8659) mvmt=(0.0376,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2210,-0.0721,0.7609) mvmt=(0.0376,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2210,-2.2833,-0.5891) mvmt=(0.0376,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0210,4.3160,-0.7393) mvmt=(0.0376,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9831,4.5181,-0.5502) mvmt=(0.0378,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.483,6.982,93.470) lpos=(-10.983,4.518,-0.550) lprev=(-11.021,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9831,4.5181,-0.5502) mvmt=(0.0378,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1581,0.3701,1.0750) mvmt=(0.0378,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1831,0.1301,0.9700) mvmt=(0.0378,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1831,-2.0812,-0.3800) mvmt=(0.0378,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9831,4.5181,-0.5302) mvmt=(0.0378,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9831,4.5181,-0.5502) mvmt=(0.0378,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.483,6.982,93.470) lpos=(-10.983,4.518,-0.550) lprev=(-11.021,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9831,4.5181,-0.5502) mvmt=(0.0378,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1581,0.3701,1.0750) mvmt=(0.0378,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1831,0.1301,0.9700) mvmt=(0.0378,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1831,-2.0812,-0.3800) mvmt=(0.0378,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9831,4.5181,-0.5302) mvmt=(0.0378,0.2021,0.2091) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9831,4.3160,-0.7593) mvmt=(0.0378,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.483,7.184,93.261) lpos=(-10.983,4.316,-0.759) lprev=(-11.021,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1581,0.1679,0.8659) mvmt=(0.0378,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1831,-0.0721,0.7609) mvmt=(0.0378,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1831,-2.2833,-0.5891) mvmt=(0.0378,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9831,4.3160,-0.7393) mvmt=(0.0378,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9831,4.3160,-1.5093) mvmt=(0.0378,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.483,7.184,92.511) lpos=(-10.983,4.316,-1.509) lprev=(-11.021,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1581,0.1679,0.1159) mvmt=(0.0378,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1831,-0.0721,0.0109) mvmt=(0.0378,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1831,-0.0721,0.0109) out=(-0.1831,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.9831,4.3160,-0.7593) mvmt=(0.0378,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.483,7.184,93.261) lpos=(-10.983,4.316,-0.759) lprev=(-11.021,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1581,0.1679,0.8659) mvmt=(0.0378,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1831,-0.0721,0.7609) mvmt=(0.0378,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1831,-2.2833,-0.5891) mvmt=(0.0378,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9831,4.3160,-0.7393) mvmt=(0.0378,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9471,4.5088,-0.5598) mvmt=(0.0361,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.447,6.991,93.460) lpos=(-10.947,4.509,-0.560) lprev=(-10.983,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9471,4.5088,-0.5598) mvmt=(0.0361,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1221,0.3608,1.0654) mvmt=(0.0361,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1470,0.1208,0.9604) mvmt=(0.0361,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1470,-2.0905,-0.3896) mvmt=(0.0361,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9471,4.5088,-0.5398) mvmt=(0.0361,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9471,4.5088,-0.5598) mvmt=(0.0361,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.447,6.991,93.460) lpos=(-10.947,4.509,-0.560) lprev=(-10.983,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9471,4.5088,-0.5598) mvmt=(0.0361,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1221,0.3608,1.0654) mvmt=(0.0361,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1470,0.1208,0.9604) mvmt=(0.0361,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1470,-2.0905,-0.3896) mvmt=(0.0361,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9471,4.5088,-0.5398) mvmt=(0.0361,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9471,4.3160,-0.7593) mvmt=(0.0361,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.447,7.184,93.261) lpos=(-10.947,4.316,-0.759) lprev=(-10.983,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1221,0.1679,0.8659) mvmt=(0.0361,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1470,-0.0721,0.7609) mvmt=(0.0361,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1470,-2.2833,-0.5891) mvmt=(0.0361,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9471,4.3160,-0.7393) mvmt=(0.0361,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9471,4.3160,-1.5093) mvmt=(0.0361,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.447,7.184,92.511) lpos=(-10.947,4.316,-1.509) lprev=(-10.983,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1221,0.1679,0.1159) mvmt=(0.0361,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1470,-0.0721,0.0109) mvmt=(0.0361,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1470,-0.0721,0.0109) out=(-0.1470,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.9471,4.3160,-0.7593) mvmt=(0.0361,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.447,7.184,93.261) lpos=(-10.947,4.316,-0.759) lprev=(-10.983,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1221,0.1679,0.8659) mvmt=(0.0361,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1470,-0.0721,0.7609) mvmt=(0.0361,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1470,-2.2833,-0.5891) mvmt=(0.0361,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9471,4.3160,-0.7393) mvmt=(0.0361,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9114,4.5065,-0.5622) mvmt=(0.0356,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.411,6.994,93.458) lpos=(-10.911,4.506,-0.562) lprev=(-10.947,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9114,4.5065,-0.5622) mvmt=(0.0356,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0864,0.3584,1.0630) mvmt=(0.0356,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1114,0.1184,0.9580) mvmt=(0.0356,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1114,-2.0928,-0.3920) mvmt=(0.0356,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9114,4.5065,-0.5422) mvmt=(0.0356,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9114,4.5065,-0.5622) mvmt=(0.0356,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.411,6.994,93.458) lpos=(-10.911,4.506,-0.562) lprev=(-10.947,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9114,4.5065,-0.5622) mvmt=(0.0356,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0864,0.3584,1.0630) mvmt=(0.0356,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1114,0.1184,0.9580) mvmt=(0.0356,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1114,-2.0928,-0.3920) mvmt=(0.0356,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9114,4.5065,-0.5422) mvmt=(0.0356,0.1905,0.1971) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9114,4.3160,-0.7593) mvmt=(0.0356,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.411,7.184,93.261) lpos=(-10.911,4.316,-0.759) lprev=(-10.947,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0864,0.1679,0.8659) mvmt=(0.0356,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1114,-0.0721,0.7609) mvmt=(0.0356,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1114,-2.2833,-0.5891) mvmt=(0.0356,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9114,4.3160,-0.7393) mvmt=(0.0356,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9114,4.3160,-1.5093) mvmt=(0.0356,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.411,7.184,92.511) lpos=(-10.911,4.316,-1.509) lprev=(-10.947,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0864,0.1679,0.1159) mvmt=(0.0356,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1114,-0.0721,0.0109) mvmt=(0.0356,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1114,-0.0721,0.0109) out=(-0.1114,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.9114,4.3160,-0.7593) mvmt=(0.0356,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.411,7.184,93.261) lpos=(-10.911,4.316,-0.759) lprev=(-10.947,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0864,0.1679,0.8659) mvmt=(0.0356,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1114,-0.0721,0.7609) mvmt=(0.0356,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1114,-2.2833,-0.5891) mvmt=(0.0356,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9114,4.3160,-0.7393) mvmt=(0.0356,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8751,4.5099,-0.5587) mvmt=(0.0363,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.375,6.990,93.461) lpos=(-10.875,4.510,-0.559) lprev=(-10.911,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8751,4.5099,-0.5587) mvmt=(0.0363,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0501,0.3618,1.0665) mvmt=(0.0363,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0751,0.1218,0.9615) mvmt=(0.0363,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0751,-2.0894,-0.3885) mvmt=(0.0363,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8751,4.5099,-0.5387) mvmt=(0.0363,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8751,4.5099,-0.5587) mvmt=(0.0363,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.375,6.990,93.461) lpos=(-10.875,4.510,-0.559) lprev=(-10.911,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8751,4.5099,-0.5587) mvmt=(0.0363,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0501,0.3618,1.0665) mvmt=(0.0363,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0751,0.1218,0.9615) mvmt=(0.0363,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0751,-2.0894,-0.3885) mvmt=(0.0363,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8751,4.5099,-0.5387) mvmt=(0.0363,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8751,4.3160,-0.7593) mvmt=(0.0363,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.375,7.184,93.261) lpos=(-10.875,4.316,-0.759) lprev=(-10.911,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0501,0.1679,0.8659) mvmt=(0.0363,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0751,-0.0721,0.7609) mvmt=(0.0363,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0751,-2.2833,-0.5891) mvmt=(0.0363,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8751,4.3160,-0.7393) mvmt=(0.0363,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8751,4.3160,-1.5093) mvmt=(0.0363,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.375,7.184,92.511) lpos=(-10.875,4.316,-1.509) lprev=(-10.911,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0501,0.1679,0.1159) mvmt=(0.0363,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0751,-0.0721,0.0109) mvmt=(0.0363,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0751,-0.0721,0.0109) out=(-0.0751,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.8751,4.3160,-0.7593) mvmt=(0.0363,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.375,7.184,93.261) lpos=(-10.875,4.316,-0.759) lprev=(-10.911,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0501,0.1679,0.8659) mvmt=(0.0363,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0751,-0.0721,0.7609) mvmt=(0.0363,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0751,-2.2833,-0.5891) mvmt=(0.0363,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8751,4.3160,-0.7393) mvmt=(0.0363,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8361,4.5247,-0.5434) mvmt=(0.0391,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.336,6.975,93.477) lpos=(-10.836,4.525,-0.543) lprev=(-10.875,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8361,4.5247,-0.5434) mvmt=(0.0391,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0111,0.3767,1.0818) mvmt=(0.0391,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0361,0.1367,0.9768) mvmt=(0.0391,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0361,-2.0746,-0.3732) mvmt=(0.0391,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8361,4.5247,-0.5234) mvmt=(0.0391,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8361,4.5247,-0.5434) mvmt=(0.0391,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.336,6.975,93.477) lpos=(-10.836,4.525,-0.543) lprev=(-10.875,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8361,4.5247,-0.5434) mvmt=(0.0391,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0111,0.3767,1.0818) mvmt=(0.0391,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0361,0.1367,0.9768) mvmt=(0.0391,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0361,-2.0746,-0.3732) mvmt=(0.0391,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8361,4.5247,-0.5234) mvmt=(0.0391,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8361,4.3160,-0.7593) mvmt=(0.0391,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.336,7.184,93.261) lpos=(-10.836,4.316,-0.759) lprev=(-10.875,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0111,0.1679,0.8659) mvmt=(0.0391,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0361,-0.0721,0.7609) mvmt=(0.0391,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0361,-2.2833,-0.5891) mvmt=(0.0391,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8361,4.3160,-0.7393) mvmt=(0.0391,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8361,4.3160,-1.5093) mvmt=(0.0391,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.336,7.184,92.511) lpos=(-10.836,4.316,-1.509) lprev=(-10.875,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0111,0.1679,0.1159) mvmt=(0.0391,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0361,-0.0721,0.0109) mvmt=(0.0391,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0361,-0.0721,0.0109) out=(-0.0361,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.8361,4.3160,-0.7593) mvmt=(0.0391,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.336,7.184,93.261) lpos=(-10.836,4.316,-0.759) lprev=(-10.875,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0111,0.1679,0.8659) mvmt=(0.0391,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0361,-0.0721,0.7609) mvmt=(0.0391,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0361,-2.2833,-0.5891) mvmt=(0.0391,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8361,4.3160,-0.7393) mvmt=(0.0391,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7967,4.5264,-0.5416) mvmt=(0.0394,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.297,6.974,93.478) lpos=(-10.797,4.526,-0.542) lprev=(-10.836,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7967,4.5264,-0.5416) mvmt=(0.0394,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9717,0.3784,1.0836) mvmt=(0.0394,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0033,0.1384,0.9786) mvmt=(0.0394,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0033,-2.0729,-0.3714) mvmt=(0.0394,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7967,4.5264,-0.5216) mvmt=(0.0394,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7967,4.5264,-0.5416) mvmt=(0.0394,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.297,6.974,93.478) lpos=(-10.797,4.526,-0.542) lprev=(-10.836,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7967,4.5264,-0.5416) mvmt=(0.0394,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9717,0.3784,1.0836) mvmt=(0.0394,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0033,0.1384,0.9786) mvmt=(0.0394,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0033,-2.0729,-0.3714) mvmt=(0.0394,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7967,4.5264,-0.5216) mvmt=(0.0394,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7967,4.3160,-0.7593) mvmt=(0.0394,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.297,7.184,93.261) lpos=(-10.797,4.316,-0.759) lprev=(-10.836,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9717,0.1679,0.8659) mvmt=(0.0394,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0033,-0.0721,0.7609) mvmt=(0.0394,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0033,-2.2833,-0.5891) mvmt=(0.0394,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7967,4.3160,-0.7393) mvmt=(0.0394,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7967,4.3160,-1.5093) mvmt=(0.0394,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.297,7.184,92.511) lpos=(-10.797,4.316,-1.509) lprev=(-10.836,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9717,0.1679,0.1159) mvmt=(0.0394,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0033,-0.0721,0.0109) mvmt=(0.0394,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0033,-0.0721,0.0109) out=(0.0033,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.7967,4.3160,-0.7593) mvmt=(0.0394,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.297,7.184,93.261) lpos=(-10.797,4.316,-0.759) lprev=(-10.836,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9717,0.1679,0.8659) mvmt=(0.0394,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0033,-0.0721,0.7609) mvmt=(0.0394,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0033,-2.2833,-0.5891) mvmt=(0.0394,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7967,4.3160,-0.7393) mvmt=(0.0394,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementJump Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7588,4.5186,-0.5497) mvmt=(0.0379,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.259,6.981,93.470) lpos=(-10.759,4.519,-0.550) lprev=(-10.797,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7588,4.5186,-0.5497) mvmt=(0.0379,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9338,0.3705,1.0755) mvmt=(0.0379,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0412,0.1305,0.9705) mvmt=(0.0379,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0412,-2.0807,-0.3795) mvmt=(0.0379,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7588,4.5186,-0.5297) mvmt=(0.0379,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7588,4.5186,-0.5497) mvmt=(0.0379,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.259,6.981,93.470) lpos=(-10.759,4.519,-0.550) lprev=(-10.797,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7588,4.5186,-0.5497) mvmt=(0.0379,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9338,0.3705,1.0755) mvmt=(0.0379,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0412,0.1305,0.9705) mvmt=(0.0379,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0412,-2.0807,-0.3795) mvmt=(0.0379,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7588,4.5186,-0.5297) mvmt=(0.0379,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7588,4.3160,-0.7593) mvmt=(0.0379,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.259,7.184,93.261) lpos=(-10.759,4.316,-0.759) lprev=(-10.797,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9338,0.1679,0.8659) mvmt=(0.0379,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0412,-0.0721,0.7609) mvmt=(0.0379,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0412,-2.2833,-0.5891) mvmt=(0.0379,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7588,4.3160,-0.7393) mvmt=(0.0379,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7588,4.3160,-1.5093) mvmt=(0.0379,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.259,7.184,92.511) lpos=(-10.759,4.316,-1.509) lprev=(-10.797,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9338,0.1679,0.1159) mvmt=(0.0379,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0412,-0.0721,0.0109) mvmt=(0.0379,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0412,-0.0721,0.0109) out=(0.0412,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.7588,4.3160,-0.7593) mvmt=(0.0379,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.259,7.184,93.261) lpos=(-10.759,4.316,-0.759) lprev=(-10.797,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9338,0.1679,0.8659) mvmt=(0.0379,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0412,-0.0721,0.7609) mvmt=(0.0379,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0412,-2.2833,-0.5891) mvmt=(0.0379,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7588,4.3160,-0.7393) mvmt=(0.0379,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7206,4.5198,-0.5485) mvmt=(0.0381,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.221,6.980,93.472) lpos=(-10.721,4.520,-0.548) lprev=(-10.759,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7206,4.5198,-0.5485) mvmt=(0.0381,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8956,0.3718,1.0767) mvmt=(0.0381,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0794,0.1318,0.9717) mvmt=(0.0381,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0794,-2.0795,-0.3783) mvmt=(0.0381,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7206,4.5198,-0.5285) mvmt=(0.0381,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7206,4.5198,-0.5485) mvmt=(0.0381,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.221,6.980,93.472) lpos=(-10.721,4.520,-0.548) lprev=(-10.759,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7206,4.5198,-0.5485) mvmt=(0.0381,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8956,0.3718,1.0767) mvmt=(0.0381,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0794,0.1318,0.9717) mvmt=(0.0381,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0794,-2.0795,-0.3783) mvmt=(0.0381,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7206,4.5198,-0.5285) mvmt=(0.0381,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7206,4.3160,-0.7593) mvmt=(0.0381,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.221,7.184,93.261) lpos=(-10.721,4.316,-0.759) lprev=(-10.759,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8956,0.1679,0.8659) mvmt=(0.0381,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0794,-0.0721,0.7609) mvmt=(0.0381,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0794,-2.2833,-0.5891) mvmt=(0.0381,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7206,4.3160,-0.7393) mvmt=(0.0381,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7206,4.3160,-1.5093) mvmt=(0.0381,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.221,7.184,92.511) lpos=(-10.721,4.316,-1.509) lprev=(-10.759,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8956,0.1679,0.1159) mvmt=(0.0381,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0794,-0.0721,0.0109) mvmt=(0.0381,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0794,-0.0721,0.0109) out=(0.0794,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.7206,4.3160,-0.7593) mvmt=(0.0381,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.221,7.184,93.261) lpos=(-10.721,4.316,-0.759) lprev=(-10.759,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8956,0.1679,0.8659) mvmt=(0.0381,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0794,-0.0721,0.7609) mvmt=(0.0381,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0794,-2.2833,-0.5891) mvmt=(0.0381,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7206,4.3160,-0.7393) mvmt=(0.0381,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6824,4.5202,-0.5481) mvmt=(0.0382,0.2042,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.182,6.980,93.472) lpos=(-10.682,4.520,-0.548) lprev=(-10.721,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6824,4.5202,-0.5481) mvmt=(0.0382,0.2042,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8574,0.3721,1.0771) mvmt=(0.0382,0.2042,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1176,0.1321,0.9721) mvmt=(0.0382,0.2042,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1176,-2.0791,-0.3779) mvmt=(0.0382,0.2042,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6824,4.5202,-0.5281) mvmt=(0.0382,0.2042,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6824,4.5202,-0.5481) mvmt=(0.0382,0.2042,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.182,6.980,93.472) lpos=(-10.682,4.520,-0.548) lprev=(-10.721,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6824,4.5202,-0.5481) mvmt=(0.0382,0.2042,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8574,0.3721,1.0771) mvmt=(0.0382,0.2042,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1176,0.1321,0.9721) mvmt=(0.0382,0.2042,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1176,-2.0791,-0.3779) mvmt=(0.0382,0.2042,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6824,4.5202,-0.5281) mvmt=(0.0382,0.2042,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6824,4.3160,-0.7593) mvmt=(0.0382,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.182,7.184,93.261) lpos=(-10.682,4.316,-0.759) lprev=(-10.721,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8574,0.1679,0.8659) mvmt=(0.0382,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1176,-0.0721,0.7609) mvmt=(0.0382,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1176,-2.2833,-0.5891) mvmt=(0.0382,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6824,4.3160,-0.7393) mvmt=(0.0382,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6824,4.3160,-1.5093) mvmt=(0.0382,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.182,7.184,92.511) lpos=(-10.682,4.316,-1.509) lprev=(-10.721,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8574,0.1679,0.1159) mvmt=(0.0382,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1176,-0.0721,0.0109) mvmt=(0.0382,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1176,-0.0721,0.0109) out=(0.1176,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6824,4.3160,-0.7593) mvmt=(0.0382,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.182,7.184,93.261) lpos=(-10.682,4.316,-0.759) lprev=(-10.721,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8574,0.1679,0.8659) mvmt=(0.0382,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1176,-0.0721,0.7609) mvmt=(0.0382,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1176,-2.2833,-0.5891) mvmt=(0.0382,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6824,4.3160,-0.7393) mvmt=(0.0382,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6434,4.5243,-0.5438) mvmt=(0.0390,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.143,6.976,93.476) lpos=(-10.643,4.524,-0.544) lprev=(-10.682,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6434,4.5243,-0.5438) mvmt=(0.0390,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8184,0.3762,1.0814) mvmt=(0.0390,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1566,0.1362,0.9764) mvmt=(0.0390,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1566,-2.0750,-0.3736) mvmt=(0.0390,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2060,-2.9726,2.4807) mvmt=(-0.1763,0.1176,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6434,4.5243,-0.5238) mvmt=(0.0390,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6434,4.5243,-0.5438) mvmt=(0.0390,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.143,6.976,93.476) lpos=(-10.643,4.524,-0.544) lprev=(-10.682,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6434,4.5243,-0.5438) mvmt=(0.0390,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8184,0.3762,1.0814) mvmt=(0.0390,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1566,0.1362,0.9764) mvmt=(0.0390,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1566,-2.0750,-0.3736) mvmt=(0.0390,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2060,-2.9726,2.4807) mvmt=(-0.1763,0.1176,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6434,4.5243,-0.5238) mvmt=(0.0390,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6434,4.3160,-0.7593) mvmt=(0.0390,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.143,7.184,93.261) lpos=(-10.643,4.316,-0.759) lprev=(-10.682,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8184,0.1679,0.8659) mvmt=(0.0390,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1566,-0.0721,0.7609) mvmt=(0.0390,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1566,-2.2833,-0.5891) mvmt=(0.0390,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6434,4.3160,-0.7393) mvmt=(0.0390,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6434,4.3160,-1.5093) mvmt=(0.0390,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.143,7.184,92.511) lpos=(-10.643,4.316,-1.509) lprev=(-10.682,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8184,0.1679,0.1159) mvmt=(0.0390,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1566,-0.0721,0.0109) mvmt=(0.0390,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1566,-0.0721,0.0109) out=(0.1566,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6434,4.3160,-0.7593) mvmt=(0.0390,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.143,7.184,93.261) lpos=(-10.643,4.316,-0.759) lprev=(-10.682,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8184,0.1679,0.8659) mvmt=(0.0390,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1566,-0.0721,0.7609) mvmt=(0.0390,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1566,-2.2833,-0.5891) mvmt=(0.0390,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6434,4.3160,-0.7393) mvmt=(0.0390,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[push-back-disp] site=dispatch center=(-10.6076,4.7122,-0.5297) mvmt=(0.0358,0.3962,0.2296) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.108,6.788,93.490) lpos=(-10.608,4.712,-0.530) lprev=(-10.643,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6076,4.7122,-0.5297) mvmt=(0.0358,0.3962,0.2296) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7826,0.5642,1.0955) mvmt=(0.0358,0.3962,0.2296) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1924,0.3242,0.9905) mvmt=(0.0358,0.3962,0.2296) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6076,4.7122,-0.5297) mvmt=(0.0358,0.3962,0.2296) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.108,6.788,93.490) lpos=(-10.608,4.712,-0.530) lprev=(-10.643,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6076,4.7122,-0.5297) mvmt=(0.0358,0.3962,0.2296) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7826,0.5642,1.0955) mvmt=(0.0358,0.3962,0.2296) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1924,0.3242,0.9905) mvmt=(0.0358,0.3962,0.2296) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1924,0.3242,0.9905) out=(0.1566,-0.0721,0.7609) delta=(-0.0358,-0.3962,-0.2296) deltaMag=0.4593 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=0.3547 dpMove=-0.1253 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(-10.6434,4.3160,-0.7593) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.143,7.184,93.261) lpos=(-10.643,4.316,-0.759) lprev=(-10.643,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8184,0.1679,0.8659) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1566,-0.0721,0.7609) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1566,-2.2833,-0.5891) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6434,4.3160,-0.7393) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6434,4.3160,-0.7593) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.143,7.184,93.261) lpos=(-10.643,4.316,-0.759) lprev=(-10.643,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8184,0.1679,0.8659) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1566,-0.0721,0.7609) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1566,-2.2833,-0.5891) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6434,4.3160,-0.7393) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.5290,-0.6420) mvmt=(0.0193,0.2131,0.1173) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,6.971,93.378) lpos=(-10.624,4.529,-0.642) lprev=(-10.643,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6242,4.5290,-0.6420) mvmt=(0.0193,0.2131,0.1173) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7992,0.3810,0.9832) mvmt=(0.0193,0.2131,0.1173) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,0.1410,0.8782) mvmt=(0.0193,0.2131,0.1173) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.5290,-0.6420) mvmt=(0.0193,0.2131,0.1173) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,6.971,93.378) lpos=(-10.624,4.529,-0.642) lprev=(-10.643,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6242,4.5290,-0.6420) mvmt=(0.0193,0.2131,0.1173) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7992,0.3810,0.9832) mvmt=(0.0193,0.2131,0.1173) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,0.1410,0.8782) mvmt=(0.0193,0.2131,0.1173) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1758,0.1410,0.8782) out=(0.1566,-0.0721,0.7609) delta=(-0.0193,-0.2131,-0.1173) deltaMag=0.2440 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.4083 dpMove=-0.0717 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(-10.6434,4.3160,-0.7593) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.143,7.184,93.261) lpos=(-10.643,4.316,-0.759) lprev=(-10.643,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8184,0.1679,0.8659) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1566,-0.0721,0.7609) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1566,-2.2833,-0.5891) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6434,4.3160,-0.7393) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6434,4.3160,-0.7593) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.143,7.184,93.261) lpos=(-10.643,4.316,-0.759) lprev=(-10.643,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8184,0.1679,0.8659) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1566,-0.0721,0.7609) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1566,-2.2833,-0.5891) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6434,4.3160,-0.7393) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6242,4.4775,-0.5922) mvmt=(0.0193,0.1615,0.1671) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.022,93.428) lpos=(-10.624,4.478,-0.592) lprev=(-10.643,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6242,4.4775,-0.5922) mvmt=(0.0193,0.1615,0.1671) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7992,0.3295,1.0330) mvmt=(0.0193,0.1615,0.1671) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,0.0895,0.9280) mvmt=(0.0193,0.1615,0.1671) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.1218,-0.4220) mvmt=(0.0193,0.1615,0.1671) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.4775,-0.5722) mvmt=(0.0193,0.1615,0.1671) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.4775,-0.5922) mvmt=(0.0193,0.1615,0.1671) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.022,93.428) lpos=(-10.624,4.478,-0.592) lprev=(-10.643,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6242,4.4775,-0.5922) mvmt=(0.0193,0.1615,0.1671) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7992,0.3295,1.0330) mvmt=(0.0193,0.1615,0.1671) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,0.0895,0.9280) mvmt=(0.0193,0.1615,0.1671) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.1218,-0.4220) mvmt=(0.0193,0.1615,0.1671) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.4775,-0.5722) mvmt=(0.0193,0.1615,0.1671) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0193,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.643,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0193,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0193,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0193,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0193,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-1.5093) mvmt=(0.0193,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,92.511) lpos=(-10.624,4.316,-1.509) lprev=(-10.643,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.1159) mvmt=(0.0193,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.0109) mvmt=(0.0193,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1758,-0.0721,0.0109) out=(0.1758,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0193,0.0000,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.643,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0193,0.0000,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0193,0.0000,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0193,0.0000,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0193,0.0000,-0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5869,4.7280,-0.5446) mvmt=(0.0372,0.4120,0.2147) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.087,6.772,93.475) lpos=(-10.587,4.728,-0.545) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5869,4.7280,-0.5446) mvmt=(0.0372,0.4120,0.2147) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7619,0.5799,1.0806) mvmt=(0.0372,0.4120,0.2147) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2131,0.3399,0.9756) mvmt=(0.0372,0.4120,0.2147) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5869,4.7280,-0.5446) mvmt=(0.0372,0.4120,0.2147) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.087,6.772,93.475) lpos=(-10.587,4.728,-0.545) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5869,4.7280,-0.5446) mvmt=(0.0372,0.4120,0.2147) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7619,0.5799,1.0806) mvmt=(0.0372,0.4120,0.2147) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2131,0.3399,0.9756) mvmt=(0.0372,0.4120,0.2147) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2131,0.3399,0.9756) out=(0.1758,-0.0721,0.7609) delta=(-0.0372,-0.4120,-0.2147) deltaMag=0.4661 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=0.3330 dpMove=-0.1470 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5871,4.7256,-0.5577) mvmt=(0.0370,0.4096,0.2016) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.087,6.774,93.462) lpos=(-10.587,4.726,-0.558) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5871,4.7256,-0.5577) mvmt=(0.0370,0.4096,0.2016) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7621,0.5776,1.0675) mvmt=(0.0370,0.4096,0.2016) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2129,0.3376,0.9625) mvmt=(0.0370,0.4096,0.2016) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5871,4.7256,-0.5577) mvmt=(0.0370,0.4096,0.2016) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.087,6.774,93.462) lpos=(-10.587,4.726,-0.558) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5871,4.7256,-0.5577) mvmt=(0.0370,0.4096,0.2016) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7621,0.5776,1.0675) mvmt=(0.0370,0.4096,0.2016) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2129,0.3376,0.9625) mvmt=(0.0370,0.4096,0.2016) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2129,0.3376,0.9625) out=(0.1758,-0.0721,0.7609) delta=(-0.0370,-0.4096,-0.2016) deltaMag=0.4580 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.3256 dpMove=-0.1544 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5857,4.7413,-0.5625) mvmt=(0.0385,0.4253,0.1968) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.086,6.759,93.458) lpos=(-10.586,4.741,-0.562) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5857,4.7413,-0.5625) mvmt=(0.0385,0.4253,0.1968) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7607,0.5933,1.0627) mvmt=(0.0385,0.4253,0.1968) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2143,0.3533,0.9577) mvmt=(0.0385,0.4253,0.1968) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5857,4.7413,-0.5625) mvmt=(0.0385,0.4253,0.1968) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.086,6.759,93.458) lpos=(-10.586,4.741,-0.562) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5857,4.7413,-0.5625) mvmt=(0.0385,0.4253,0.1968) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7607,0.5933,1.0627) mvmt=(0.0385,0.4253,0.1968) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2143,0.3533,0.9577) mvmt=(0.0385,0.4253,0.1968) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2143,0.3533,0.9577) out=(0.1758,-0.0721,0.7609) delta=(-0.0385,-0.4253,-0.1968) deltaMag=0.4702 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=0.3110 dpMove=-0.1690 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5870,4.7274,-0.5810) mvmt=(0.0372,0.4114,0.1783) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.087,6.773,93.439) lpos=(-10.587,4.727,-0.581) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5870,4.7274,-0.5810) mvmt=(0.0372,0.4114,0.1783) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7620,0.5794,1.0442) mvmt=(0.0372,0.4114,0.1783) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2130,0.3394,0.9392) mvmt=(0.0372,0.4114,0.1783) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5870,4.7274,-0.5810) mvmt=(0.0372,0.4114,0.1783) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.087,6.773,93.439) lpos=(-10.587,4.727,-0.581) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5870,4.7274,-0.5810) mvmt=(0.0372,0.4114,0.1783) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7620,0.5794,1.0442) mvmt=(0.0372,0.4114,0.1783) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2130,0.3394,0.9392) mvmt=(0.0372,0.4114,0.1783) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2130,0.3394,0.9392) out=(0.1758,-0.0721,0.7609) delta=(-0.0372,-0.4114,-0.1783) deltaMag=0.4499 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.3081 dpMove=-0.1719 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5868,4.7288,-0.5924) mvmt=(0.0373,0.4128,0.1669) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.087,6.771,93.428) lpos=(-10.587,4.729,-0.592) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5868,4.7288,-0.5924) mvmt=(0.0373,0.4128,0.1669) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7618,0.5807,1.0328) mvmt=(0.0373,0.4128,0.1669) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2132,0.3407,0.9278) mvmt=(0.0373,0.4128,0.1669) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5868,4.7288,-0.5924) mvmt=(0.0373,0.4128,0.1669) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.087,6.771,93.428) lpos=(-10.587,4.729,-0.592) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5868,4.7288,-0.5924) mvmt=(0.0373,0.4128,0.1669) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7618,0.5807,1.0328) mvmt=(0.0373,0.4128,0.1669) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2132,0.3407,0.9278) mvmt=(0.0373,0.4128,0.1669) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2132,0.3407,0.9278) out=(0.1758,-0.0721,0.7609) delta=(-0.0373,-0.4128,-0.1669) deltaMag=0.4468 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=0.2992 dpMove=-0.1808 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5867,4.7300,-0.6040) mvmt=(0.0374,0.4140,0.1553) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.087,6.770,93.416) lpos=(-10.587,4.730,-0.604) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5867,4.7300,-0.6040) mvmt=(0.0374,0.4140,0.1553) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7617,0.5819,1.0212) mvmt=(0.0374,0.4140,0.1553) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2133,0.3419,0.9162) mvmt=(0.0374,0.4140,0.1553) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5867,4.7300,-0.6040) mvmt=(0.0374,0.4140,0.1553) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.087,6.770,93.416) lpos=(-10.587,4.730,-0.604) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5867,4.7300,-0.6040) mvmt=(0.0374,0.4140,0.1553) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7617,0.5819,1.0212) mvmt=(0.0374,0.4140,0.1553) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2133,0.3419,0.9162) mvmt=(0.0374,0.4140,0.1553) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2133,0.3419,0.9162) out=(0.1758,-0.0721,0.7609) delta=(-0.0374,-0.4140,-0.1553) deltaMag=0.4437 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.2903 dpMove=-0.1897 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5886,4.7095,-0.6228) mvmt=(0.0356,0.3936,0.1365) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.089,6.790,93.397) lpos=(-10.589,4.710,-0.623) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5886,4.7095,-0.6228) mvmt=(0.0356,0.3936,0.1365) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7636,0.5615,1.0024) mvmt=(0.0356,0.3936,0.1365) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2114,0.3215,0.8974) mvmt=(0.0356,0.3936,0.1365) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5886,4.7095,-0.6228) mvmt=(0.0356,0.3936,0.1365) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.089,6.790,93.397) lpos=(-10.589,4.710,-0.623) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5886,4.7095,-0.6228) mvmt=(0.0356,0.3936,0.1365) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7636,0.5615,1.0024) mvmt=(0.0356,0.3936,0.1365) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2114,0.3215,0.8974) mvmt=(0.0356,0.3936,0.1365) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2114,0.3215,0.8974) out=(0.1758,-0.0721,0.7609) delta=(-0.0356,-0.3936,-0.1365) deltaMag=0.4181 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=0.2919 dpMove=-0.1881 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5854,4.7451,-0.6229) mvmt=(0.0388,0.4291,0.1364) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.085,6.755,93.397) lpos=(-10.585,4.745,-0.623) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5854,4.7451,-0.6229) mvmt=(0.0388,0.4291,0.1364) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7604,0.5970,1.0023) mvmt=(0.0388,0.4291,0.1364) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2146,0.3570,0.8973) mvmt=(0.0388,0.4291,0.1364) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5854,4.7451,-0.6229) mvmt=(0.0388,0.4291,0.1364) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.085,6.755,93.397) lpos=(-10.585,4.745,-0.623) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5854,4.7451,-0.6229) mvmt=(0.0388,0.4291,0.1364) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7604,0.5970,1.0023) mvmt=(0.0388,0.4291,0.1364) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2146,0.3570,0.8973) mvmt=(0.0388,0.4291,0.1364) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2146,0.3570,0.8973) out=(0.1758,-0.0721,0.7609) delta=(-0.0388,-0.4291,-0.1364) deltaMag=0.4519 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.2663 dpMove=-0.2137 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5851,4.7479,-0.6351) mvmt=(0.0390,0.4319,0.1242) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.085,6.752,93.385) lpos=(-10.585,4.748,-0.635) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5851,4.7479,-0.6351) mvmt=(0.0390,0.4319,0.1242) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7601,0.5998,0.9901) mvmt=(0.0390,0.4319,0.1242) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2149,0.3598,0.8851) mvmt=(0.0390,0.4319,0.1242) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5851,4.7479,-0.6351) mvmt=(0.0390,0.4319,0.1242) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.085,6.752,93.385) lpos=(-10.585,4.748,-0.635) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5851,4.7479,-0.6351) mvmt=(0.0390,0.4319,0.1242) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7601,0.5998,0.9901) mvmt=(0.0390,0.4319,0.1242) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2149,0.3598,0.8851) mvmt=(0.0390,0.4319,0.1242) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2149,0.3598,0.8851) out=(0.1758,-0.0721,0.7609) delta=(-0.0390,-0.4319,-0.1242) deltaMag=0.4511 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=0.2558 dpMove=-0.2242 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5852,4.7468,-0.6485) mvmt=(0.0389,0.4308,0.1108) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.085,6.753,93.371) lpos=(-10.585,4.747,-0.649) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5852,4.7468,-0.6485) mvmt=(0.0389,0.4308,0.1108) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7602,0.5987,0.9767) mvmt=(0.0389,0.4308,0.1108) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2148,0.3587,0.8717) mvmt=(0.0389,0.4308,0.1108) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5852,4.7468,-0.6485) mvmt=(0.0389,0.4308,0.1108) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.085,6.753,93.371) lpos=(-10.585,4.747,-0.649) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5852,4.7468,-0.6485) mvmt=(0.0389,0.4308,0.1108) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7602,0.5987,0.9767) mvmt=(0.0389,0.4308,0.1108) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2148,0.3587,0.8717) mvmt=(0.0389,0.4308,0.1108) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2148,0.3587,0.8717) out=(0.1758,-0.0721,0.7609) delta=(-0.0389,-0.4308,-0.1108) deltaMag=0.4465 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.2473 dpMove=-0.2327 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5874,4.7221,-0.6668) mvmt=(0.0367,0.4061,0.0925) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.087,6.778,93.353) lpos=(-10.587,4.722,-0.667) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5874,4.7221,-0.6668) mvmt=(0.0367,0.4061,0.0925) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7625,0.5740,0.9584) mvmt=(0.0367,0.4061,0.0925) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2126,0.3340,0.8534) mvmt=(0.0367,0.4061,0.0925) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5874,4.7221,-0.6668) mvmt=(0.0367,0.4061,0.0925) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.087,6.778,93.353) lpos=(-10.587,4.722,-0.667) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5874,4.7221,-0.6668) mvmt=(0.0367,0.4061,0.0925) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7625,0.5740,0.9584) mvmt=(0.0367,0.4061,0.0925) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2126,0.3340,0.8534) mvmt=(0.0367,0.4061,0.0925) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2126,0.3340,0.8534) out=(0.1758,-0.0721,0.7609) delta=(-0.0367,-0.4061,-0.0925) deltaMag=0.4181 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=0.2523 dpMove=-0.2277 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5885,4.7104,-0.6806) mvmt=(0.0356,0.3944,0.0787) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.089,6.790,93.339) lpos=(-10.589,4.710,-0.681) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5885,4.7104,-0.6806) mvmt=(0.0356,0.3944,0.0787) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7635,0.5623,0.9446) mvmt=(0.0356,0.3944,0.0787) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2115,0.3223,0.8396) mvmt=(0.0356,0.3944,0.0787) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5885,4.7104,-0.6806) mvmt=(0.0356,0.3944,0.0787) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.089,6.790,93.339) lpos=(-10.589,4.710,-0.681) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5885,4.7104,-0.6806) mvmt=(0.0356,0.3944,0.0787) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7635,0.5623,0.9446) mvmt=(0.0356,0.3944,0.0787) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2115,0.3223,0.8396) mvmt=(0.0356,0.3944,0.0787) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2115,0.3223,0.8396) out=(0.1758,-0.0721,0.7609) delta=(-0.0356,-0.3944,-0.0787) deltaMag=0.4037 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.2512 dpMove=-0.2288 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5861,4.7370,-0.6874) mvmt=(0.0381,0.4210,0.0719) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.086,6.763,93.333) lpos=(-10.586,4.737,-0.687) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5861,4.7370,-0.6874) mvmt=(0.0381,0.4210,0.0719) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7611,0.5889,0.9378) mvmt=(0.0381,0.4210,0.0719) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2139,0.3489,0.8328) mvmt=(0.0381,0.4210,0.0719) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5861,4.7370,-0.6874) mvmt=(0.0381,0.4210,0.0719) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.086,6.763,93.333) lpos=(-10.586,4.737,-0.687) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5861,4.7370,-0.6874) mvmt=(0.0381,0.4210,0.0719) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7611,0.5889,0.9378) mvmt=(0.0381,0.4210,0.0719) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2139,0.3489,0.8328) mvmt=(0.0381,0.4210,0.0719) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2139,0.3489,0.8328) out=(0.1758,-0.0721,0.7609) delta=(-0.0381,-0.4210,-0.0719) deltaMag=0.4288 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=0.2273 dpMove=-0.2527 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5856,4.7426,-0.6991) mvmt=(0.0386,0.4266,0.0602) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.086,6.757,93.321) lpos=(-10.586,4.743,-0.699) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5856,4.7426,-0.6991) mvmt=(0.0386,0.4266,0.0602) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7606,0.5946,0.9261) mvmt=(0.0386,0.4266,0.0602) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2144,0.3546,0.8211) mvmt=(0.0386,0.4266,0.0602) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5856,4.7426,-0.6991) mvmt=(0.0386,0.4266,0.0602) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.086,6.757,93.321) lpos=(-10.586,4.743,-0.699) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5856,4.7426,-0.6991) mvmt=(0.0386,0.4266,0.0602) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7606,0.5946,0.9261) mvmt=(0.0386,0.4266,0.0602) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2144,0.3546,0.8211) mvmt=(0.0386,0.4266,0.0602) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2144,0.3546,0.8211) out=(0.1758,-0.0721,0.7609) delta=(-0.0386,-0.4266,-0.0602) deltaMag=0.4326 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.2151 dpMove=-0.2649 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5865,4.7329,-0.7129) mvmt=(0.0377,0.4169,0.0464) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.086,6.767,93.307) lpos=(-10.586,4.733,-0.713) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7615,0.5848,0.9123) mvmt=(0.0377,0.4169,0.0464) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2135,0.3448,0.8073) mvmt=(0.0377,0.4169,0.0464) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5865,4.7329,-0.7129) mvmt=(0.0377,0.4169,0.0464) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.086,6.767,93.307) lpos=(-10.586,4.733,-0.713) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7615,0.5848,0.9123) mvmt=(0.0377,0.4169,0.0464) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2135,0.3448,0.8073) mvmt=(0.0377,0.4169,0.0464) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2135,0.3448,0.8073) out=(0.1758,-0.0721,0.7609) delta=(-0.0377,-0.4169,-0.0464) deltaMag=0.4212 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=0.2125 dpMove=-0.2675 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5859,4.7397,-0.7246) mvmt=(0.0383,0.4237,0.0347) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.086,6.760,93.295) lpos=(-10.586,4.740,-0.725) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7609,0.5916,0.9006) mvmt=(0.0383,0.4237,0.0347) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2141,0.3516,0.7956) mvmt=(0.0383,0.4237,0.0347) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5859,4.7397,-0.7246) mvmt=(0.0383,0.4237,0.0347) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.086,6.760,93.295) lpos=(-10.586,4.740,-0.725) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7609,0.5916,0.9006) mvmt=(0.0383,0.4237,0.0347) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2141,0.3516,0.7956) mvmt=(0.0383,0.4237,0.0347) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2141,0.3516,0.7956) out=(0.1758,-0.0721,0.7609) delta=(-0.0383,-0.4237,-0.0347) deltaMag=0.4268 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.1994 dpMove=-0.2806 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5856,4.7424,-0.7372) mvmt=(0.0386,0.4265,0.0221) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.086,6.758,93.283) lpos=(-10.586,4.742,-0.737) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7606,0.5944,0.8880) mvmt=(0.0386,0.4265,0.0221) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2144,0.3544,0.7830) mvmt=(0.0386,0.4265,0.0221) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5856,4.7424,-0.7372) mvmt=(0.0386,0.4265,0.0221) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.086,6.758,93.283) lpos=(-10.586,4.742,-0.737) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7606,0.5944,0.8880) mvmt=(0.0386,0.4265,0.0221) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2144,0.3544,0.7830) mvmt=(0.0386,0.4265,0.0221) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2144,0.3544,0.7830) out=(0.1758,-0.0721,0.7609) delta=(-0.0386,-0.4265,-0.0221) deltaMag=0.4288 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=0.1888 dpMove=-0.2912 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,-0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,-0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5875,4.7213,-0.7501) mvmt=(0.0366,0.4053,0.0092) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.088,6.779,93.270) lpos=(-10.588,4.721,-0.750) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7625,0.5732,0.8751) mvmt=(0.0366,0.4053,0.0092) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2125,0.3332,0.7701) mvmt=(0.0366,0.4053,0.0092) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5875,4.7213,-0.7501) mvmt=(0.0366,0.4053,0.0092) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.088,6.779,93.270) lpos=(-10.588,4.721,-0.750) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7625,0.5732,0.8751) mvmt=(0.0366,0.4053,0.0092) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2125,0.3332,0.7701) mvmt=(0.0366,0.4053,0.0092) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2125,0.3332,0.7701) out=(0.1758,-0.0721,0.7609) delta=(-0.0366,-0.4053,-0.0092) deltaMag=0.4071 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.1950 dpMove=-0.2850 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5870,4.7271,-0.7618) mvmt=(0.0372,0.4111,-0.0025) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.087,6.773,93.258) lpos=(-10.587,4.727,-0.762) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7620,0.5791,0.8634) mvmt=(0.0372,0.4111,-0.0025) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2130,0.3391,0.7584) mvmt=(0.0372,0.4111,-0.0025) collide=False insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5870,4.7271,-0.7618) mvmt=(0.0372,0.4111,-0.0025) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.087,6.773,93.258) lpos=(-10.587,4.727,-0.762) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7620,0.5791,0.8634) mvmt=(0.0372,0.4111,-0.0025) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2130,0.3391,0.7584) mvmt=(0.0372,0.4111,-0.0025) collide=True insertType=0 objState=0x300 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2130,0.3391,0.7584) out=(0.1758,-0.0721,0.7609) delta=(-0.0372,-0.4111,0.0025) deltaMag=0.4128 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=0.1826 dpMove=-0.2974 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneValid: False -> True caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.FindCollisions:1713 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=BSPQuery.FindCollisions:1713 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,0.0000,0.0000) collide=True insertType=0 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7593) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.124,7.184,93.261) lpos=(-10.624,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7992,0.1679,0.8659) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-0.0721,0.7609) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1758,-2.2833,-0.5891) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6242,4.3160,-0.7393) mvmt=(0.0000,0.0000,0.0000) collide=False insertType=1 objState=0x300 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9217,4.4515,-0.6191) mvmt=(-0.2975,0.1356,0.1402) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.048,93.401) lpos=(-10.922,4.452,-0.619) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4515,-0.6191) mvmt=(-0.2975,0.1356,0.1402) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.3035,1.0061) mvmt=(-0.2975,0.1356,0.1402) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0635,0.9011) mvmt=(-0.2975,0.1356,0.1402) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.1478,-0.4489) mvmt=(-0.2975,0.1356,0.1402) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1637,-3.2571,2.4054) mvmt=(-0.2414,-0.2205,0.1402) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4515,-0.5991) mvmt=(-0.2975,0.1356,0.1402) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4515,-0.6191) mvmt=(-0.2975,0.1356,0.1402) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.048,93.401) lpos=(-10.922,4.452,-0.619) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4515,-0.6191) mvmt=(-0.2975,0.1356,0.1402) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.3035,1.0061) mvmt=(-0.2975,0.1356,0.1402) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0635,0.9011) mvmt=(-0.2975,0.1356,0.1402) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.1478,-0.4489) mvmt=(-0.2975,0.1356,0.1402) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1637,-3.2571,2.4054) mvmt=(-0.2414,-0.2205,0.1402) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4515,-0.5991) mvmt=(-0.2975,0.1356,0.1402) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3160,-0.7593) mvmt=(-0.2975,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.184,93.261) lpos=(-10.922,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0967,0.1679,0.8659) mvmt=(-0.2975,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-0.0721,0.7609) mvmt=(-0.2975,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.2833,-0.5891) mvmt=(-0.2975,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2884,-3.3103,2.2652) mvmt=(-0.1167,-0.2737,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3160,-0.7393) mvmt=(-0.2975,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3160,-1.5093) mvmt=(-0.2975,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.184,92.511) lpos=(-10.922,4.316,-1.509) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0967,0.1679,0.1159) mvmt=(-0.2975,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-0.0721,0.0109) mvmt=(-0.2975,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1217,-0.0721,0.0109) out=(-0.1217,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.9217,4.3160,-0.7593) mvmt=(-0.2975,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.184,93.261) lpos=(-10.922,4.316,-0.759) lprev=(-10.624,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0967,0.1679,0.8659) mvmt=(-0.2975,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-0.0721,0.7609) mvmt=(-0.2975,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.2833,-0.5891) mvmt=(-0.2975,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2884,-3.3103,2.2652) mvmt=(-0.1167,-0.2737,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3160,-0.7393) mvmt=(-0.2975,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2609,4.4458,-0.6250) mvmt=(-0.3392,0.1298,0.1343) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2609,4.4458,-0.6250) mvmt=(-0.3392,0.1298,0.1343) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.761,7.054,93.395) lpos=(-11.261,4.446,-0.625) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2609,4.4458,-0.6250) mvmt=(-0.3392,0.1298,0.1343) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4359,0.2978,1.0002) mvmt=(-0.3392,0.1298,0.1343) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4609,0.0578,0.8952) mvmt=(-0.3392,0.1298,0.1343) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4609,-2.1535,-0.4548) mvmt=(-0.3392,0.1298,0.1343) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2609,4.4458,-0.6050) mvmt=(-0.3392,0.1298,0.1343) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.761,7.054,93.395) lpos=(-11.261,4.446,-0.625) lprev=(-10.922,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4458,-0.6250) mvmt=(0.0000,0.1298,0.1343) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.054,93.395) lpos=(-10.922,4.446,-0.625) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4458,-0.6250) mvmt=(0.0000,0.1298,0.1343) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.2978,1.0002) mvmt=(0.0000,0.1298,0.1343) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0578,0.8952) mvmt=(0.0000,0.1298,0.1343) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.1535,-0.4548) mvmt=(0.0000,0.1298,0.1343) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4458,-0.6050) mvmt=(0.0000,0.1298,0.1343) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4458,-0.6250) mvmt=(0.0000,0.1298,0.1343) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.054,93.395) lpos=(-10.922,4.446,-0.625) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4458,-0.6250) mvmt=(0.0000,0.1298,0.1343) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.2978,1.0002) mvmt=(0.0000,0.1298,0.1343) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0578,0.8952) mvmt=(0.0000,0.1298,0.1343) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.1535,-0.4548) mvmt=(0.0000,0.1298,0.1343) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4458,-0.6050) mvmt=(0.0000,0.1298,0.1343) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2922,4.4337,-0.6375) mvmt=(-0.3705,0.1177,0.1218) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2922,4.4337,-0.6375) mvmt=(-0.3705,0.1177,0.1218) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.792,7.066,93.382) lpos=(-11.292,4.434,-0.637) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2922,4.4337,-0.6375) mvmt=(-0.3705,0.1177,0.1218) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4672,0.2857,0.9877) mvmt=(-0.3705,0.1177,0.1218) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4922,0.0457,0.8827) mvmt=(-0.3705,0.1177,0.1218) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4922,-2.1656,-0.4673) mvmt=(-0.3705,0.1177,0.1218) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2922,4.4337,-0.6175) mvmt=(-0.3705,0.1177,0.1218) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.792,7.066,93.382) lpos=(-11.292,4.434,-0.637) lprev=(-10.922,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4337,-0.6375) mvmt=(0.0000,0.1177,0.1218) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.066,93.382) lpos=(-10.922,4.434,-0.637) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4337,-0.6375) mvmt=(0.0000,0.1177,0.1218) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.2857,0.9877) mvmt=(0.0000,0.1177,0.1218) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0457,0.8827) mvmt=(0.0000,0.1177,0.1218) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.1656,-0.4673) mvmt=(0.0000,0.1177,0.1218) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4337,-0.6175) mvmt=(0.0000,0.1177,0.1218) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4337,-0.6375) mvmt=(0.0000,0.1177,0.1218) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.066,93.382) lpos=(-10.922,4.434,-0.637) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4337,-0.6375) mvmt=(0.0000,0.1177,0.1218) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.2857,0.9877) mvmt=(0.0000,0.1177,0.1218) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0457,0.8827) mvmt=(0.0000,0.1177,0.1218) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.1656,-0.4673) mvmt=(0.0000,0.1177,0.1218) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4337,-0.6175) mvmt=(0.0000,0.1177,0.1218) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2723,4.4090,-0.6630) mvmt=(-0.3506,0.0930,0.0963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2723,4.4090,-0.6630) mvmt=(-0.3506,0.0930,0.0963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.772,7.091,93.357) lpos=(-11.272,4.409,-0.663) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2723,4.4090,-0.6630) mvmt=(-0.3506,0.0930,0.0963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4473,0.2610,0.9622) mvmt=(-0.3506,0.0930,0.0963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4723,0.0210,0.8572) mvmt=(-0.3506,0.0930,0.0963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4723,-2.1903,-0.4929) mvmt=(-0.3506,0.0930,0.0963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2723,4.4090,-0.6431) mvmt=(-0.3506,0.0930,0.0963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.772,7.091,93.357) lpos=(-11.272,4.409,-0.663) lprev=(-10.922,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4090,-0.6630) mvmt=(0.0000,0.0930,0.0963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.091,93.357) lpos=(-10.922,4.409,-0.663) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4090,-0.6630) mvmt=(0.0000,0.0930,0.0963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.2610,0.9622) mvmt=(0.0000,0.0930,0.0963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0210,0.8572) mvmt=(0.0000,0.0930,0.0963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.1903,-0.4929) mvmt=(0.0000,0.0930,0.0963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4090,-0.6431) mvmt=(0.0000,0.0930,0.0963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4090,-0.6630) mvmt=(0.0000,0.0930,0.0963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.091,93.357) lpos=(-10.922,4.409,-0.663) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4090,-0.6630) mvmt=(0.0000,0.0930,0.0963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.2610,0.9622) mvmt=(0.0000,0.0930,0.0963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0210,0.8572) mvmt=(0.0000,0.0930,0.0963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.1903,-0.4929) mvmt=(0.0000,0.0930,0.0963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4090,-0.6431) mvmt=(0.0000,0.0930,0.0963) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3266,4.4020,-0.6703) mvmt=(-0.4049,0.0860,0.0890) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3266,4.4020,-0.6703) mvmt=(-0.4049,0.0860,0.0890) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.827,7.098,93.350) lpos=(-11.327,4.402,-0.670) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.3266,4.4020,-0.6703) mvmt=(-0.4049,0.0860,0.0890) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5016,0.2540,0.9549) mvmt=(-0.4049,0.0860,0.0890) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5266,0.0140,0.8499) mvmt=(-0.4049,0.0860,0.0890) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5266,-2.1973,-0.5001) mvmt=(-0.4049,0.0860,0.0890) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3266,4.4020,-0.6503) mvmt=(-0.4049,0.0860,0.0890) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.827,7.098,93.350) lpos=(-11.327,4.402,-0.670) lprev=(-10.922,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4020,-0.6703) mvmt=(0.0000,0.0860,0.0890) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.098,93.350) lpos=(-10.922,4.402,-0.670) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4020,-0.6703) mvmt=(0.0000,0.0860,0.0890) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.2540,0.9549) mvmt=(0.0000,0.0860,0.0890) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0140,0.8499) mvmt=(0.0000,0.0860,0.0890) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.1973,-0.5001) mvmt=(0.0000,0.0860,0.0890) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4020,-0.6503) mvmt=(0.0000,0.0860,0.0890) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4020,-0.6703) mvmt=(0.0000,0.0860,0.0890) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.098,93.350) lpos=(-10.922,4.402,-0.670) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4020,-0.6703) mvmt=(0.0000,0.0860,0.0890) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.2540,0.9549) mvmt=(0.0000,0.0860,0.0890) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0140,0.8499) mvmt=(0.0000,0.0860,0.0890) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.1973,-0.5001) mvmt=(0.0000,0.0860,0.0890) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4020,-0.6503) mvmt=(0.0000,0.0860,0.0890) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3292,4.3831,-0.6898) mvmt=(-0.4075,0.0671,0.0695) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3292,4.3831,-0.6898) mvmt=(-0.4075,0.0671,0.0695) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.829,7.117,93.330) lpos=(-11.329,4.383,-0.690) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.3292,4.3831,-0.6898) mvmt=(-0.4075,0.0671,0.0695) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5042,0.2351,0.9354) mvmt=(-0.4075,0.0671,0.0695) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5292,-0.0049,0.8304) mvmt=(-0.4075,0.0671,0.0695) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5292,-2.2162,-0.5196) mvmt=(-0.4075,0.0671,0.0695) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3292,4.3831,-0.6698) mvmt=(-0.4075,0.0671,0.0695) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.829,7.117,93.330) lpos=(-11.329,4.383,-0.690) lprev=(-10.922,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.3831,-0.6898) mvmt=(0.0000,0.0671,0.0695) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.117,93.330) lpos=(-10.922,4.383,-0.690) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.3831,-0.6898) mvmt=(0.0000,0.0671,0.0695) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.2351,0.9354) mvmt=(0.0000,0.0671,0.0695) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-0.0049,0.8304) mvmt=(0.0000,0.0671,0.0695) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.2162,-0.5196) mvmt=(0.0000,0.0671,0.0695) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3831,-0.6698) mvmt=(0.0000,0.0671,0.0695) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3831,-0.6898) mvmt=(0.0000,0.0671,0.0695) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.117,93.330) lpos=(-10.922,4.383,-0.690) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.3831,-0.6898) mvmt=(0.0000,0.0671,0.0695) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.2351,0.9354) mvmt=(0.0000,0.0671,0.0695) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-0.0049,0.8304) mvmt=(0.0000,0.0671,0.0695) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.2162,-0.5196) mvmt=(0.0000,0.0671,0.0695) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3831,-0.6698) mvmt=(0.0000,0.0671,0.0695) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3197,4.3645,-0.7091) mvmt=(-0.3980,0.0485,0.0502) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3197,4.3645,-0.7091) mvmt=(-0.3980,0.0485,0.0502) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.820,7.136,93.311) lpos=(-11.320,4.364,-0.709) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.4947,0.2164,0.9161) mvmt=(-0.3980,0.0485,0.0502) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5197,-0.0236,0.8111) mvmt=(-0.3980,0.0485,0.0502) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5197,-2.2348,-0.5389) mvmt=(-0.3980,0.0485,0.0502) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3197,4.3645,-0.6891) mvmt=(-0.3980,0.0485,0.0502) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.820,7.136,93.311) lpos=(-11.320,4.364,-0.709) lprev=(-10.922,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.3645,-0.7091) mvmt=(0.0000,0.0485,0.0502) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.136,93.311) lpos=(-10.922,4.364,-0.709) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0967,0.2164,0.9161) mvmt=(0.0000,0.0485,0.0502) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-0.0236,0.8111) mvmt=(0.0000,0.0485,0.0502) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.2348,-0.5389) mvmt=(0.0000,0.0485,0.0502) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3645,-0.6891) mvmt=(0.0000,0.0485,0.0502) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3645,-0.7091) mvmt=(0.0000,0.0485,0.0502) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.136,93.311) lpos=(-10.922,4.364,-0.709) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0967,0.2164,0.9161) mvmt=(0.0000,0.0485,0.0502) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-0.0236,0.8111) mvmt=(0.0000,0.0485,0.0502) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.2348,-0.5389) mvmt=(0.0000,0.0485,0.0502) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3645,-0.6891) mvmt=(0.0000,0.0485,0.0502) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3429,4.3493,-0.7248) mvmt=(-0.4212,0.0333,0.0345) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3429,4.3493,-0.7248) mvmt=(-0.4212,0.0333,0.0345) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.843,7.151,93.295) lpos=(-11.343,4.349,-0.725) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.5179,0.2012,0.9004) mvmt=(-0.4212,0.0333,0.0345) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5429,-0.0388,0.7954) mvmt=(-0.4212,0.0333,0.0345) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5429,-2.2500,-0.5546) mvmt=(-0.4212,0.0333,0.0345) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3429,4.3493,-0.7048) mvmt=(-0.4212,0.0333,0.0345) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.843,7.151,93.295) lpos=(-11.343,4.349,-0.725) lprev=(-10.922,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.3493,-0.7248) mvmt=(0.0000,0.0333,0.0345) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.151,93.295) lpos=(-10.922,4.349,-0.725) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0967,0.2012,0.9004) mvmt=(0.0000,0.0333,0.0345) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-0.0388,0.7954) mvmt=(0.0000,0.0333,0.0345) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.2500,-0.5546) mvmt=(0.0000,0.0333,0.0345) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3493,-0.7048) mvmt=(0.0000,0.0333,0.0345) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3493,-0.7248) mvmt=(0.0000,0.0333,0.0345) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.151,93.295) lpos=(-10.922,4.349,-0.725) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0967,0.2012,0.9004) mvmt=(0.0000,0.0333,0.0345) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-0.0388,0.7954) mvmt=(0.0000,0.0333,0.0345) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.2500,-0.5546) mvmt=(0.0000,0.0333,0.0345) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3493,-0.7048) mvmt=(0.0000,0.0333,0.0345) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3567,4.3439,-0.7304) mvmt=(-0.4350,0.0279,0.0289) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3567,4.3439,-0.7304) mvmt=(-0.4350,0.0279,0.0289) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.857,7.156,93.290) lpos=(-11.357,4.344,-0.730) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.5317,0.1958,0.8948) mvmt=(-0.4350,0.0279,0.0289) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5567,-0.0442,0.7898) mvmt=(-0.4350,0.0279,0.0289) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5567,-2.2554,-0.5602) mvmt=(-0.4350,0.0279,0.0289) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3567,4.3439,-0.7104) mvmt=(-0.4350,0.0279,0.0289) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.857,7.156,93.290) lpos=(-11.357,4.344,-0.730) lprev=(-10.922,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.3439,-0.7304) mvmt=(0.0000,0.0279,0.0289) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.156,93.290) lpos=(-10.922,4.344,-0.730) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0967,0.1958,0.8948) mvmt=(0.0000,0.0279,0.0289) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-0.0442,0.7898) mvmt=(0.0000,0.0279,0.0289) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.2554,-0.5602) mvmt=(0.0000,0.0279,0.0289) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3439,-0.7104) mvmt=(0.0000,0.0279,0.0289) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3439,-0.7304) mvmt=(0.0000,0.0279,0.0289) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.156,93.290) lpos=(-10.922,4.344,-0.730) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0967,0.1958,0.8948) mvmt=(0.0000,0.0279,0.0289) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-0.0442,0.7898) mvmt=(0.0000,0.0279,0.0289) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.2554,-0.5602) mvmt=(0.0000,0.0279,0.0289) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3439,-0.7104) mvmt=(0.0000,0.0279,0.0289) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3448,4.3613,-0.7124) mvmt=(-0.4230,0.0453,0.0469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3448,4.3613,-0.7124) mvmt=(-0.4230,0.0453,0.0469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.845,7.139,93.308) lpos=(-11.345,4.361,-0.712) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.5198,0.2132,0.9128) mvmt=(-0.4230,0.0453,0.0469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5448,-0.0268,0.8078) mvmt=(-0.4230,0.0453,0.0469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5448,-2.2380,-0.5422) mvmt=(-0.4230,0.0453,0.0469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3448,4.3613,-0.6924) mvmt=(-0.4230,0.0453,0.0469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.845,7.139,93.308) lpos=(-11.345,4.361,-0.712) lprev=(-10.922,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.3613,-0.7124) mvmt=(0.0000,0.0453,0.0469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.139,93.308) lpos=(-10.922,4.361,-0.712) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0967,0.2132,0.9128) mvmt=(0.0000,0.0453,0.0469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-0.0268,0.8078) mvmt=(0.0000,0.0453,0.0469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.2380,-0.5422) mvmt=(0.0000,0.0453,0.0469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3613,-0.6924) mvmt=(0.0000,0.0453,0.0469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3613,-0.7124) mvmt=(0.0000,0.0453,0.0469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.139,93.308) lpos=(-10.922,4.361,-0.712) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0967,0.2132,0.9128) mvmt=(0.0000,0.0453,0.0469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-0.0268,0.8078) mvmt=(0.0000,0.0453,0.0469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.2380,-0.5422) mvmt=(0.0000,0.0453,0.0469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3613,-0.6924) mvmt=(0.0000,0.0453,0.0469) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3298,4.3777,-0.6955) mvmt=(-0.4081,0.0617,0.0638) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3298,4.3777,-0.6955) mvmt=(-0.4081,0.0617,0.0638) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.830,7.122,93.325) lpos=(-11.330,4.378,-0.695) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.3298,4.3777,-0.6955) mvmt=(-0.4081,0.0617,0.0638) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5048,0.2296,0.9297) mvmt=(-0.4081,0.0617,0.0638) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5298,-0.0104,0.8247) mvmt=(-0.4081,0.0617,0.0638) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5298,-2.2217,-0.5253) mvmt=(-0.4081,0.0617,0.0638) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3298,4.3777,-0.6755) mvmt=(-0.4081,0.0617,0.0638) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.830,7.122,93.325) lpos=(-11.330,4.378,-0.695) lprev=(-10.922,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.3777,-0.6955) mvmt=(0.0000,0.0617,0.0638) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.122,93.325) lpos=(-10.922,4.378,-0.695) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.3777,-0.6955) mvmt=(0.0000,0.0617,0.0638) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.2296,0.9297) mvmt=(0.0000,0.0617,0.0638) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-0.0104,0.8247) mvmt=(0.0000,0.0617,0.0638) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.2216,-0.5253) mvmt=(0.0000,0.0617,0.0638) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3777,-0.6755) mvmt=(0.0000,0.0617,0.0638) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3777,-0.6955) mvmt=(0.0000,0.0617,0.0638) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.122,93.325) lpos=(-10.922,4.378,-0.695) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.3777,-0.6955) mvmt=(0.0000,0.0617,0.0638) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.2296,0.9297) mvmt=(0.0000,0.0617,0.0638) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-0.0104,0.8247) mvmt=(0.0000,0.0617,0.0638) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.2216,-0.5253) mvmt=(0.0000,0.0617,0.0638) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3777,-0.6755) mvmt=(0.0000,0.0617,0.0638) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3262,4.3963,-0.6762) mvmt=(-0.4044,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3262,4.3963,-0.6762) mvmt=(-0.4044,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.826,7.104,93.344) lpos=(-11.326,4.396,-0.676) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.3262,4.3963,-0.6762) mvmt=(-0.4044,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5012,0.2483,0.9490) mvmt=(-0.4044,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5262,0.0083,0.8440) mvmt=(-0.4044,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5262,-2.2030,-0.5060) mvmt=(-0.4044,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3262,4.3963,-0.6562) mvmt=(-0.4044,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.826,7.104,93.344) lpos=(-11.326,4.396,-0.676) lprev=(-10.922,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.3963,-0.6762) mvmt=(0.0000,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.104,93.344) lpos=(-10.922,4.396,-0.676) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.3963,-0.6762) mvmt=(0.0000,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.2483,0.9490) mvmt=(0.0000,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0083,0.8440) mvmt=(0.0000,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.2030,-0.5060) mvmt=(0.0000,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3963,-0.6562) mvmt=(0.0000,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3963,-0.6762) mvmt=(0.0000,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.104,93.344) lpos=(-10.922,4.396,-0.676) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.3963,-0.6762) mvmt=(0.0000,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.2483,0.9490) mvmt=(0.0000,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0083,0.8440) mvmt=(0.0000,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.2030,-0.5060) mvmt=(0.0000,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3963,-0.6562) mvmt=(0.0000,0.0803,0.0831) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2758,4.4027,-0.6696) mvmt=(-0.3541,0.0867,0.0897) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2758,4.4027,-0.6696) mvmt=(-0.3541,0.0867,0.0897) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.776,7.097,93.350) lpos=(-11.276,4.403,-0.670) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2758,4.4027,-0.6696) mvmt=(-0.3541,0.0867,0.0897) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4508,0.2546,0.9556) mvmt=(-0.3541,0.0867,0.0897) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4758,0.0146,0.8506) mvmt=(-0.3541,0.0867,0.0897) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4758,-2.1966,-0.4994) mvmt=(-0.3541,0.0867,0.0897) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2758,4.4027,-0.6496) mvmt=(-0.3541,0.0867,0.0897) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.776,7.097,93.350) lpos=(-11.276,4.403,-0.670) lprev=(-10.922,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4027,-0.6696) mvmt=(0.0000,0.0867,0.0897) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.097,93.350) lpos=(-10.922,4.403,-0.670) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4027,-0.6696) mvmt=(0.0000,0.0867,0.0897) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.2546,0.9556) mvmt=(0.0000,0.0867,0.0897) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0146,0.8506) mvmt=(0.0000,0.0867,0.0897) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.1966,-0.4994) mvmt=(0.0000,0.0867,0.0897) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4027,-0.6496) mvmt=(0.0000,0.0867,0.0897) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4027,-0.6696) mvmt=(0.0000,0.0867,0.0897) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.097,93.350) lpos=(-10.922,4.403,-0.670) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4027,-0.6696) mvmt=(0.0000,0.0867,0.0897) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.2546,0.9556) mvmt=(0.0000,0.0867,0.0897) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0146,0.8506) mvmt=(0.0000,0.0867,0.0897) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.1966,-0.4994) mvmt=(0.0000,0.0867,0.0897) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4027,-0.6496) mvmt=(0.0000,0.0867,0.0897) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1548,4.3897,-0.6830) mvmt=(-0.2331,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1548,4.3897,-0.6830) mvmt=(-0.2331,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.655,7.110,93.337) lpos=(-11.155,4.390,-0.683) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1548,4.3897,-0.6830) mvmt=(-0.2331,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3298,0.2417,0.9422) mvmt=(-0.2331,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3548,0.0017,0.8372) mvmt=(-0.2331,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3548,-2.2096,-0.5128) mvmt=(-0.2331,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1548,4.3897,-0.6630) mvmt=(-0.2331,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.655,7.110,93.337) lpos=(-11.155,4.390,-0.683) lprev=(-10.922,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.3897,-0.6830) mvmt=(0.0000,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.110,93.337) lpos=(-10.922,4.390,-0.683) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.3897,-0.6830) mvmt=(0.0000,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.2417,0.9422) mvmt=(0.0000,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0017,0.8372) mvmt=(0.0000,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.2096,-0.5128) mvmt=(0.0000,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3897,-0.6630) mvmt=(0.0000,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3897,-0.6830) mvmt=(0.0000,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.110,93.337) lpos=(-10.922,4.390,-0.683) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.3897,-0.6830) mvmt=(0.0000,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.2417,0.9422) mvmt=(0.0000,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0017,0.8372) mvmt=(0.0000,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.2096,-0.5128) mvmt=(0.0000,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3897,-0.6630) mvmt=(0.0000,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1548,4.3897,-0.6830) mvmt=(-0.2331,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1548,4.3897,-0.6830) mvmt=(-0.2331,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.655,7.110,93.337) lpos=(-11.155,4.390,-0.683) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1548,4.3897,-0.6830) mvmt=(-0.2331,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3298,0.2417,0.9422) mvmt=(-0.2331,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3548,0.0017,0.8372) mvmt=(-0.2331,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3548,-2.2096,-0.5128) mvmt=(-0.2331,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1548,4.3897,-0.6630) mvmt=(-0.2331,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.655,7.110,93.337) lpos=(-11.155,4.390,-0.683) lprev=(-10.922,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.3897,-0.6830) mvmt=(0.0000,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.110,93.337) lpos=(-10.922,4.390,-0.683) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.3897,-0.6830) mvmt=(0.0000,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.2417,0.9422) mvmt=(0.0000,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0017,0.8372) mvmt=(0.0000,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.2096,-0.5128) mvmt=(0.0000,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3897,-0.6630) mvmt=(0.0000,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3897,-0.6830) mvmt=(0.0000,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.110,93.337) lpos=(-10.922,4.390,-0.683) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.3897,-0.6830) mvmt=(0.0000,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.2417,0.9422) mvmt=(0.0000,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0017,0.8372) mvmt=(0.0000,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.2096,-0.5128) mvmt=(0.0000,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.3897,-0.6630) mvmt=(0.0000,0.0738,0.0763) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2705,4.4490,-0.6217) mvmt=(-0.3488,0.1330,0.1376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2705,4.4490,-0.6217) mvmt=(-0.3488,0.1330,0.1376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.771,7.051,93.398) lpos=(-11.271,4.449,-0.622) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2705,4.4490,-0.6217) mvmt=(-0.3488,0.1330,0.1376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4455,0.3010,1.0035) mvmt=(-0.3488,0.1330,0.1376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4705,0.0610,0.8985) mvmt=(-0.3488,0.1330,0.1376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4705,-2.1503,-0.4515) mvmt=(-0.3488,0.1330,0.1376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2705,4.4490,-0.6017) mvmt=(-0.3488,0.1330,0.1376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.771,7.051,93.398) lpos=(-11.271,4.449,-0.622) lprev=(-10.922,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4490,-0.6217) mvmt=(0.0000,0.1330,0.1376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.051,93.398) lpos=(-10.922,4.449,-0.622) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4490,-0.6217) mvmt=(0.0000,0.1330,0.1376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.3010,1.0035) mvmt=(0.0000,0.1330,0.1376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0610,0.8985) mvmt=(0.0000,0.1330,0.1376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.1503,-0.4515) mvmt=(0.0000,0.1330,0.1376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4490,-0.6017) mvmt=(0.0000,0.1330,0.1376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4490,-0.6217) mvmt=(0.0000,0.1330,0.1376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.051,93.398) lpos=(-10.922,4.449,-0.622) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4490,-0.6217) mvmt=(0.0000,0.1330,0.1376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.3010,1.0035) mvmt=(0.0000,0.1330,0.1376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0610,0.8985) mvmt=(0.0000,0.1330,0.1376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.1503,-0.4515) mvmt=(0.0000,0.1330,0.1376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4490,-0.6017) mvmt=(0.0000,0.1330,0.1376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2362,4.4587,-0.6117) mvmt=(-0.3145,0.1427,0.1476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2362,4.4587,-0.6117) mvmt=(-0.3145,0.1427,0.1476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.736,7.041,93.408) lpos=(-11.236,4.459,-0.612) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2362,4.4587,-0.6117) mvmt=(-0.3145,0.1427,0.1476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4112,0.3106,1.0135) mvmt=(-0.3145,0.1427,0.1476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4362,0.0706,0.9085) mvmt=(-0.3145,0.1427,0.1476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4362,-2.1406,-0.4415) mvmt=(-0.3145,0.1427,0.1476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2362,4.4587,-0.5917) mvmt=(-0.3145,0.1427,0.1476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.736,7.041,93.408) lpos=(-11.236,4.459,-0.612) lprev=(-10.922,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4587,-0.6117) mvmt=(0.0000,0.1427,0.1476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.041,93.408) lpos=(-10.922,4.459,-0.612) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4587,-0.6117) mvmt=(0.0000,0.1427,0.1476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.3106,1.0135) mvmt=(0.0000,0.1427,0.1476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0706,0.9085) mvmt=(0.0000,0.1427,0.1476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.1406,-0.4415) mvmt=(0.0000,0.1427,0.1476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4587,-0.5917) mvmt=(0.0000,0.1427,0.1476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4587,-0.6117) mvmt=(0.0000,0.1427,0.1476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.041,93.408) lpos=(-10.922,4.459,-0.612) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4587,-0.6117) mvmt=(0.0000,0.1427,0.1476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.3106,1.0135) mvmt=(0.0000,0.1427,0.1476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0706,0.9085) mvmt=(0.0000,0.1427,0.1476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.1406,-0.4415) mvmt=(0.0000,0.1427,0.1476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4587,-0.5917) mvmt=(0.0000,0.1427,0.1476) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2060,4.4688,-0.6012) mvmt=(-0.2843,0.1528,0.1581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2060,4.4688,-0.6012) mvmt=(-0.2843,0.1528,0.1581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.706,7.031,93.419) lpos=(-11.206,4.469,-0.601) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2060,4.4688,-0.6012) mvmt=(-0.2843,0.1528,0.1581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3810,0.3207,1.0240) mvmt=(-0.2843,0.1528,0.1581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4060,0.0807,0.9190) mvmt=(-0.2843,0.1528,0.1581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4060,-2.1305,-0.4310) mvmt=(-0.2843,0.1528,0.1581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2060,4.4688,-0.5812) mvmt=(-0.2843,0.1528,0.1581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.706,7.031,93.419) lpos=(-11.206,4.469,-0.601) lprev=(-10.922,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4688,-0.6012) mvmt=(0.0000,0.1528,0.1581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.031,93.419) lpos=(-10.922,4.469,-0.601) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4688,-0.6012) mvmt=(0.0000,0.1528,0.1581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.3208,1.0240) mvmt=(0.0000,0.1528,0.1581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0808,0.9190) mvmt=(0.0000,0.1528,0.1581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.1305,-0.4310) mvmt=(-0.0000,0.1528,0.1581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4688,-0.5812) mvmt=(0.0000,0.1528,0.1581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4688,-0.6012) mvmt=(0.0000,0.1528,0.1581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.031,93.419) lpos=(-10.922,4.469,-0.601) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4688,-0.6012) mvmt=(0.0000,0.1528,0.1581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.3208,1.0240) mvmt=(0.0000,0.1528,0.1581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0808,0.9190) mvmt=(0.0000,0.1528,0.1581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.1305,-0.4310) mvmt=(-0.0000,0.1528,0.1581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4688,-0.5812) mvmt=(0.0000,0.1528,0.1581) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1863,4.4861,-0.5834) mvmt=(-0.2646,0.1701,0.1759) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1863,4.4861,-0.5834) mvmt=(-0.2646,0.1701,0.1759) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.686,7.014,93.437) lpos=(-11.186,4.486,-0.583) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1863,4.4861,-0.5834) mvmt=(-0.2646,0.1701,0.1759) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3613,0.3380,1.0418) mvmt=(-0.2646,0.1701,0.1759) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3863,0.0980,0.9368) mvmt=(-0.2646,0.1701,0.1759) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3863,-2.1133,-0.4132) mvmt=(-0.2646,0.1701,0.1759) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1863,4.4861,-0.5634) mvmt=(-0.2646,0.1701,0.1759) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.686,7.014,93.437) lpos=(-11.186,4.486,-0.583) lprev=(-10.922,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4861,-0.5834) mvmt=(0.0000,0.1701,0.1759) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.014,93.437) lpos=(-10.922,4.486,-0.583) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4861,-0.5834) mvmt=(0.0000,0.1701,0.1759) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.3380,1.0418) mvmt=(0.0000,0.1701,0.1759) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0980,0.9368) mvmt=(-0.0000,0.1701,0.1759) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.1133,-0.4132) mvmt=(-0.0000,0.1701,0.1759) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4861,-0.5634) mvmt=(0.0000,0.1701,0.1759) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4861,-0.5834) mvmt=(0.0000,0.1701,0.1759) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.014,93.437) lpos=(-10.922,4.486,-0.583) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4861,-0.5834) mvmt=(0.0000,0.1701,0.1759) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.3380,1.0418) mvmt=(0.0000,0.1701,0.1759) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.0980,0.9368) mvmt=(-0.0000,0.1701,0.1759) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.1133,-0.4132) mvmt=(-0.0000,0.1701,0.1759) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4861,-0.5634) mvmt=(0.0000,0.1701,0.1759) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1509,4.4932,-0.5760) mvmt=(-0.2292,0.1772,0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1509,4.4932,-0.5760) mvmt=(-0.2292,0.1772,0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.651,7.007,93.444) lpos=(-11.151,4.493,-0.576) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1509,4.4932,-0.5760) mvmt=(-0.2292,0.1772,0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3259,0.3452,1.0492) mvmt=(-0.2292,0.1772,0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3509,0.1052,0.9442) mvmt=(-0.2292,0.1772,0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3509,-2.1061,-0.4058) mvmt=(-0.2292,0.1772,0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1509,4.4932,-0.5560) mvmt=(-0.2292,0.1772,0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.651,7.007,93.444) lpos=(-11.151,4.493,-0.576) lprev=(-10.922,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4932,-0.5760) mvmt=(0.0000,0.1772,0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.007,93.444) lpos=(-10.922,4.493,-0.576) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4932,-0.5760) mvmt=(0.0000,0.1772,0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.3452,1.0492) mvmt=(0.0000,0.1772,0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.1052,0.9442) mvmt=(-0.0000,0.1772,0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.1061,-0.4058) mvmt=(-0.0000,0.1772,0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4932,-0.5560) mvmt=(0.0000,0.1772,0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4932,-0.5760) mvmt=(0.0000,0.1772,0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.422,7.007,93.444) lpos=(-10.922,4.493,-0.576) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9217,4.4932,-0.5760) mvmt=(0.0000,0.1772,0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0967,0.3452,1.0492) mvmt=(0.0000,0.1772,0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,0.1052,0.9442) mvmt=(-0.0000,0.1772,0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1217,-2.1061,-0.4058) mvmt=(-0.0000,0.1772,0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9217,4.4932,-0.5560) mvmt=(0.0000,0.1772,0.1833) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1200,4.5038,-0.5650) mvmt=(-0.1983,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.620,6.996,93.455) lpos=(-11.120,4.504,-0.565) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1200,4.5038,-0.5650) mvmt=(-0.1983,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2950,0.3558,1.0602) mvmt=(-0.1983,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,0.1158,0.9552) mvmt=(-0.1983,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,-2.0955,-0.3948) mvmt=(-0.1983,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1200,4.5038,-0.5450) mvmt=(-0.1983,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1200,4.5038,-0.5650) mvmt=(-0.1983,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.620,6.996,93.455) lpos=(-11.120,4.504,-0.565) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1200,4.5038,-0.5650) mvmt=(-0.1983,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2950,0.3558,1.0602) mvmt=(-0.1983,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,0.1158,0.9552) mvmt=(-0.1983,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,-2.0955,-0.3948) mvmt=(-0.1983,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1200,4.5038,-0.5450) mvmt=(-0.1983,0.1878,0.1943) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1200,4.3160,-0.7593) mvmt=(-0.1983,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.620,7.184,93.261) lpos=(-11.120,4.316,-0.759) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2950,0.1679,0.8659) mvmt=(-0.1983,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,-0.0721,0.7609) mvmt=(-0.1983,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,-2.2833,-0.5891) mvmt=(-0.1983,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1200,4.3160,-0.7393) mvmt=(-0.1983,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1200,4.3160,-1.5093) mvmt=(-0.1983,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.620,7.184,92.511) lpos=(-11.120,4.316,-1.509) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2950,0.1679,0.1159) mvmt=(-0.1983,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,-0.0721,0.0109) mvmt=(-0.1983,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3200,-0.0721,0.0109) out=(-0.3200,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.1200,4.3160,-0.7593) mvmt=(-0.1983,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.620,7.184,93.261) lpos=(-11.120,4.316,-0.759) lprev=(-10.922,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2950,0.1679,0.8659) mvmt=(-0.1983,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,-0.0721,0.7609) mvmt=(-0.1983,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,-2.2833,-0.5891) mvmt=(-0.1983,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1200,4.3160,-0.7393) mvmt=(-0.1983,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2819,4.5082,-0.5604) mvmt=(-0.1618,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2819,4.5082,-0.5604) mvmt=(-0.1618,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.782,6.992,93.460) lpos=(-11.282,4.508,-0.560) lprev=(-11.120,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2819,4.5082,-0.5604) mvmt=(-0.1618,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4569,0.3602,1.0648) mvmt=(-0.1618,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4819,0.1202,0.9598) mvmt=(-0.1618,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4819,-2.0911,-0.3902) mvmt=(-0.1618,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2819,4.5082,-0.5404) mvmt=(-0.1618,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.782,6.992,93.460) lpos=(-11.282,4.508,-0.560) lprev=(-11.120,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1200,4.5082,-0.5604) mvmt=(0.0000,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.620,6.992,93.460) lpos=(-11.120,4.508,-0.560) lprev=(-11.120,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1200,4.5082,-0.5604) mvmt=(0.0000,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2950,0.3602,1.0648) mvmt=(0.0000,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,0.1202,0.9598) mvmt=(0.0000,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,-2.0911,-0.3902) mvmt=(0.0000,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1200,4.5082,-0.5404) mvmt=(0.0000,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1200,4.5082,-0.5604) mvmt=(0.0000,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.620,6.992,93.460) lpos=(-11.120,4.508,-0.560) lprev=(-11.120,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1200,4.5082,-0.5604) mvmt=(0.0000,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2950,0.3602,1.0648) mvmt=(0.0000,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,0.1202,0.9598) mvmt=(0.0000,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,-2.0911,-0.3902) mvmt=(0.0000,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1200,4.5082,-0.5404) mvmt=(0.0000,0.1923,0.1989) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2510,4.5225,-0.5456) mvmt=(-0.1310,0.2065,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2510,4.5225,-0.5456) mvmt=(-0.1310,0.2065,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.751,6.977,93.474) lpos=(-11.251,4.523,-0.546) lprev=(-11.120,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2510,4.5225,-0.5456) mvmt=(-0.1310,0.2065,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4260,0.3745,1.0796) mvmt=(-0.1310,0.2065,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4510,0.1345,0.9746) mvmt=(-0.1310,0.2065,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4510,-2.0768,-0.3754) mvmt=(-0.1310,0.2065,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2510,4.5225,-0.5256) mvmt=(-0.1310,0.2065,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.751,6.977,93.474) lpos=(-11.251,4.523,-0.546) lprev=(-11.120,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1200,4.5225,-0.5456) mvmt=(0.0000,0.2065,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.620,6.977,93.474) lpos=(-11.120,4.523,-0.546) lprev=(-11.120,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1200,4.5225,-0.5456) mvmt=(0.0000,0.2065,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2950,0.3745,1.0796) mvmt=(0.0000,0.2065,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,0.1345,0.9746) mvmt=(0.0000,0.2065,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,-2.0768,-0.3754) mvmt=(0.0000,0.2065,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1200,4.5225,-0.5256) mvmt=(0.0000,0.2065,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1200,4.5225,-0.5456) mvmt=(0.0000,0.2065,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.620,6.977,93.474) lpos=(-11.120,4.523,-0.546) lprev=(-11.120,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1200,4.5225,-0.5456) mvmt=(0.0000,0.2065,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2950,0.3745,1.0796) mvmt=(0.0000,0.2065,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,0.1345,0.9746) mvmt=(0.0000,0.2065,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,-2.0768,-0.3754) mvmt=(0.0000,0.2065,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1200,4.5225,-0.5256) mvmt=(0.0000,0.2065,0.2137) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2079,4.5097,-0.5590) mvmt=(-0.0878,0.1937,0.2003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2079,4.5097,-0.5590) mvmt=(-0.0878,0.1937,0.2003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.708,6.990,93.461) lpos=(-11.208,4.510,-0.559) lprev=(-11.120,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2079,4.5097,-0.5590) mvmt=(-0.0878,0.1937,0.2003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3829,0.3616,1.0662) mvmt=(-0.0878,0.1937,0.2003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4079,0.1216,0.9613) mvmt=(-0.0878,0.1937,0.2003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4079,-2.0897,-0.3888) mvmt=(-0.0878,0.1937,0.2003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2079,4.5097,-0.5390) mvmt=(-0.0878,0.1937,0.2003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.708,6.990,93.461) lpos=(-11.208,4.510,-0.559) lprev=(-11.120,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1200,4.5097,-0.5590) mvmt=(0.0000,0.1937,0.2003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.620,6.990,93.461) lpos=(-11.120,4.510,-0.559) lprev=(-11.120,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1200,4.5097,-0.5590) mvmt=(0.0000,0.1937,0.2003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2950,0.3616,1.0662) mvmt=(0.0000,0.1937,0.2003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,0.1216,0.9613) mvmt=(0.0000,0.1937,0.2003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,-2.0897,-0.3888) mvmt=(0.0000,0.1937,0.2003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1200,4.5097,-0.5390) mvmt=(0.0000,0.1937,0.2003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1200,4.5097,-0.5590) mvmt=(0.0000,0.1937,0.2003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.620,6.990,93.461) lpos=(-11.120,4.510,-0.559) lprev=(-11.120,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1200,4.5097,-0.5590) mvmt=(0.0000,0.1937,0.2003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2950,0.3616,1.0662) mvmt=(0.0000,0.1937,0.2003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,0.1216,0.9613) mvmt=(0.0000,0.1937,0.2003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,-2.0897,-0.3888) mvmt=(0.0000,0.1937,0.2003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1200,4.5097,-0.5390) mvmt=(0.0000,0.1937,0.2003) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1760,4.5235,-0.5446) mvmt=(-0.0560,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1760,4.5235,-0.5446) mvmt=(-0.0560,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.676,6.976,93.475) lpos=(-11.176,4.524,-0.545) lprev=(-11.120,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1760,4.5235,-0.5446) mvmt=(-0.0560,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3510,0.3755,1.0806) mvmt=(-0.0560,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3760,0.1355,0.9756) mvmt=(-0.0560,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3760,-2.0758,-0.3744) mvmt=(-0.0560,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1760,4.5235,-0.5246) mvmt=(-0.0560,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.676,6.976,93.475) lpos=(-11.176,4.524,-0.545) lprev=(-11.120,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1200,4.5235,-0.5446) mvmt=(0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.620,6.976,93.475) lpos=(-11.120,4.524,-0.545) lprev=(-11.120,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1200,4.5235,-0.5446) mvmt=(0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2950,0.3755,1.0806) mvmt=(0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,0.1355,0.9756) mvmt=(0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,-2.0758,-0.3744) mvmt=(0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1200,4.5235,-0.5246) mvmt=(0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1200,4.5235,-0.5446) mvmt=(0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.620,6.976,93.475) lpos=(-11.120,4.524,-0.545) lprev=(-11.120,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1200,4.5235,-0.5446) mvmt=(0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2950,0.3755,1.0806) mvmt=(0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,0.1355,0.9756) mvmt=(0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,-2.0758,-0.3744) mvmt=(0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1200,4.5235,-0.5246) mvmt=(0.0000,0.2075,0.2147) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1394,4.5184,-0.5499) mvmt=(-0.0193,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1394,4.5184,-0.5499) mvmt=(-0.0193,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.639,6.982,93.470) lpos=(-11.139,4.518,-0.550) lprev=(-11.120,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1394,4.5184,-0.5499) mvmt=(-0.0193,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3144,0.3704,1.0753) mvmt=(-0.0193,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3394,0.1304,0.9703) mvmt=(-0.0193,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3394,-2.0809,-0.3797) mvmt=(-0.0193,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1394,4.5184,-0.5299) mvmt=(-0.0193,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.639,6.982,93.470) lpos=(-11.139,4.518,-0.550) lprev=(-11.120,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1200,4.5184,-0.5499) mvmt=(0.0000,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.620,6.982,93.470) lpos=(-11.120,4.518,-0.550) lprev=(-11.120,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1200,4.5184,-0.5499) mvmt=(0.0000,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2950,0.3704,1.0753) mvmt=(0.0000,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,0.1304,0.9703) mvmt=(0.0000,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,-2.0809,-0.3797) mvmt=(0.0000,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1200,4.5184,-0.5299) mvmt=(0.0000,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1200,4.5184,-0.5499) mvmt=(0.0000,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.620,6.982,93.470) lpos=(-11.120,4.518,-0.550) lprev=(-11.120,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1200,4.5184,-0.5499) mvmt=(0.0000,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2950,0.3704,1.0753) mvmt=(0.0000,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,0.1304,0.9703) mvmt=(0.0000,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3200,-2.0809,-0.3797) mvmt=(0.0000,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1200,4.5184,-0.5299) mvmt=(0.0000,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1026,4.5255,-0.5425) mvmt=(0.0175,0.2095,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.603,6.974,93.477) lpos=(-11.103,4.526,-0.543) lprev=(-11.120,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1026,4.5255,-0.5425) mvmt=(0.0175,0.2095,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2776,0.3775,1.0827) mvmt=(0.0175,0.2095,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3026,0.1375,0.9777) mvmt=(0.0175,0.2095,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3026,-2.0738,-0.3723) mvmt=(0.0175,0.2095,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1026,4.5255,-0.5225) mvmt=(0.0175,0.2095,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1026,4.5255,-0.5425) mvmt=(0.0175,0.2095,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.603,6.974,93.477) lpos=(-11.103,4.526,-0.543) lprev=(-11.120,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1026,4.5255,-0.5425) mvmt=(0.0175,0.2095,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2776,0.3775,1.0827) mvmt=(0.0175,0.2095,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3026,0.1375,0.9777) mvmt=(0.0175,0.2095,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3026,-2.0738,-0.3723) mvmt=(0.0175,0.2095,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1026,4.5255,-0.5225) mvmt=(0.0175,0.2095,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1026,4.3160,-0.7593) mvmt=(0.0175,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.603,7.184,93.261) lpos=(-11.103,4.316,-0.759) lprev=(-11.120,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2776,0.1679,0.8659) mvmt=(0.0175,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3026,-0.0721,0.7609) mvmt=(0.0175,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3026,-2.2833,-0.5891) mvmt=(0.0175,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1026,4.3160,-0.7393) mvmt=(0.0175,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1026,4.3160,-1.5093) mvmt=(0.0175,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.603,7.184,92.511) lpos=(-11.103,4.316,-1.509) lprev=(-11.120,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2776,0.1679,0.1159) mvmt=(0.0175,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3026,-0.0721,0.0109) mvmt=(0.0175,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3026,-0.0721,0.0109) out=(-0.3026,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.1026,4.3160,-0.7593) mvmt=(0.0175,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.603,7.184,93.261) lpos=(-11.103,4.316,-0.759) lprev=(-11.120,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2776,0.1679,0.8659) mvmt=(0.0175,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3026,-0.0721,0.7609) mvmt=(0.0175,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3026,-2.2833,-0.5891) mvmt=(0.0175,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1026,4.3160,-0.7393) mvmt=(0.0175,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0490,4.5212,-0.5470) mvmt=(0.0535,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.549,6.979,93.473) lpos=(-11.049,4.521,-0.547) lprev=(-11.103,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0490,4.5212,-0.5470) mvmt=(0.0535,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2240,0.3731,1.0782) mvmt=(0.0535,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2490,0.1331,0.9732) mvmt=(0.0535,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2490,-2.0781,-0.3768) mvmt=(0.0535,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0490,4.5212,-0.5270) mvmt=(0.0535,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0490,4.5212,-0.5470) mvmt=(0.0535,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.549,6.979,93.473) lpos=(-11.049,4.521,-0.547) lprev=(-11.103,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0490,4.5212,-0.5470) mvmt=(0.0535,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2240,0.3731,1.0782) mvmt=(0.0535,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2490,0.1331,0.9732) mvmt=(0.0535,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2490,-2.0781,-0.3768) mvmt=(0.0535,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0490,4.5212,-0.5270) mvmt=(0.0535,0.2052,0.2123) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0490,4.3160,-0.7593) mvmt=(0.0535,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.549,7.184,93.261) lpos=(-11.049,4.316,-0.759) lprev=(-11.103,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2240,0.1679,0.8659) mvmt=(0.0535,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2490,-0.0721,0.7609) mvmt=(0.0535,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2490,-2.2833,-0.5891) mvmt=(0.0535,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0490,4.3160,-0.7393) mvmt=(0.0535,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0490,4.3160,-1.5093) mvmt=(0.0535,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.549,7.184,92.511) lpos=(-11.049,4.316,-1.509) lprev=(-11.103,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2240,0.1679,0.1159) mvmt=(0.0535,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2490,-0.0721,0.0109) mvmt=(0.0535,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2490,-0.0721,0.0109) out=(-0.2490,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0490,4.3160,-0.7593) mvmt=(0.0535,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.549,7.184,93.261) lpos=(-11.049,4.316,-0.759) lprev=(-11.103,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2240,0.1679,0.8659) mvmt=(0.0535,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2490,-0.0721,0.7609) mvmt=(0.0535,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2490,-2.2833,-0.5891) mvmt=(0.0535,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0490,4.3160,-0.7393) mvmt=(0.0535,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9558,4.5242,-0.5439) mvmt=(0.0933,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.456,6.976,93.476) lpos=(-10.956,4.524,-0.544) lprev=(-11.049,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9558,4.5242,-0.5439) mvmt=(0.0933,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1308,0.3761,1.0813) mvmt=(0.0933,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1558,0.1361,0.9763) mvmt=(0.0933,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1558,-2.0751,-0.3737) mvmt=(0.0933,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9558,4.5242,-0.5239) mvmt=(0.0933,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9558,4.5242,-0.5439) mvmt=(0.0933,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.456,6.976,93.476) lpos=(-10.956,4.524,-0.544) lprev=(-11.049,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9558,4.5242,-0.5439) mvmt=(0.0933,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1308,0.3761,1.0813) mvmt=(0.0933,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1558,0.1361,0.9763) mvmt=(0.0933,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1558,-2.0751,-0.3737) mvmt=(0.0933,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9558,4.5242,-0.5239) mvmt=(0.0933,0.2082,0.2154) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9558,4.3160,-0.7593) mvmt=(0.0933,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.456,7.184,93.261) lpos=(-10.956,4.316,-0.759) lprev=(-11.049,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1308,0.1679,0.8659) mvmt=(0.0933,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1558,-0.0721,0.7609) mvmt=(0.0933,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1558,-2.2833,-0.5891) mvmt=(0.0933,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9558,4.3160,-0.7393) mvmt=(0.0933,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9558,4.3160,-1.5093) mvmt=(0.0933,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.456,7.184,92.511) lpos=(-10.956,4.316,-1.509) lprev=(-11.049,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1308,0.1679,0.1159) mvmt=(0.0933,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1558,-0.0721,0.0109) mvmt=(0.0933,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1558,-0.0721,0.0109) out=(-0.1558,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.9558,4.3160,-0.7593) mvmt=(0.0933,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.456,7.184,93.261) lpos=(-10.956,4.316,-0.759) lprev=(-11.049,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1308,0.1679,0.8659) mvmt=(0.0933,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1558,-0.0721,0.7609) mvmt=(0.0933,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1558,-2.2833,-0.5891) mvmt=(0.0933,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9558,4.3160,-0.7393) mvmt=(0.0933,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8306,4.5129,-0.5556) mvmt=(0.1252,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.331,6.987,93.464) lpos=(-10.831,4.513,-0.556) lprev=(-10.956,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8306,4.5129,-0.5556) mvmt=(0.1252,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0056,0.3649,1.0696) mvmt=(0.1252,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0306,0.1249,0.9646) mvmt=(0.1252,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0306,-2.0864,-0.3854) mvmt=(0.1252,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8306,4.5129,-0.5356) mvmt=(0.1252,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8306,4.5129,-0.5556) mvmt=(0.1252,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.331,6.987,93.464) lpos=(-10.831,4.513,-0.556) lprev=(-10.956,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8306,4.5129,-0.5556) mvmt=(0.1252,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0056,0.3649,1.0696) mvmt=(0.1252,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0306,0.1249,0.9646) mvmt=(0.1252,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0306,-2.0864,-0.3854) mvmt=(0.1252,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8306,4.5129,-0.5356) mvmt=(0.1252,0.1969,0.2037) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8306,4.3160,-0.7593) mvmt=(0.1252,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.331,7.184,93.261) lpos=(-10.831,4.316,-0.759) lprev=(-10.956,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0056,0.1679,0.8659) mvmt=(0.1252,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0306,-0.0721,0.7609) mvmt=(0.1252,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0306,-2.2833,-0.5891) mvmt=(0.1252,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8306,4.3160,-0.7393) mvmt=(0.1252,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8306,4.3160,-1.5093) mvmt=(0.1252,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.331,7.184,92.511) lpos=(-10.831,4.316,-1.509) lprev=(-10.956,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0056,0.1679,0.1159) mvmt=(0.1252,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0306,-0.0721,0.0109) mvmt=(0.1252,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0306,-0.0721,0.0109) out=(-0.0306,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.8306,4.3160,-0.7593) mvmt=(0.1252,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.331,7.184,93.261) lpos=(-10.831,4.316,-0.759) lprev=(-10.956,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0056,0.1679,0.8659) mvmt=(0.1252,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0306,-0.0721,0.7609) mvmt=(0.1252,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0306,-2.2833,-0.5891) mvmt=(0.1252,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8306,4.3160,-0.7393) mvmt=(0.1252,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6753,4.5033,-0.5656) mvmt=(0.1553,0.1873,0.1937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.175,6.997,93.454) lpos=(-10.675,4.503,-0.566) lprev=(-10.831,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6753,4.5033,-0.5656) mvmt=(0.1553,0.1873,0.1937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8503,0.3552,1.0596) mvmt=(0.1553,0.1873,0.1937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1247,0.1152,0.9546) mvmt=(0.1553,0.1873,0.1937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1247,-2.0960,-0.3954) mvmt=(0.1553,0.1873,0.1937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6753,4.5033,-0.5456) mvmt=(0.1553,0.1873,0.1937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6753,4.5033,-0.5656) mvmt=(0.1553,0.1873,0.1937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.175,6.997,93.454) lpos=(-10.675,4.503,-0.566) lprev=(-10.831,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6753,4.5033,-0.5656) mvmt=(0.1553,0.1873,0.1937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8503,0.3552,1.0596) mvmt=(0.1553,0.1873,0.1937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1247,0.1152,0.9546) mvmt=(0.1553,0.1873,0.1937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1247,-2.0960,-0.3954) mvmt=(0.1553,0.1873,0.1937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6753,4.5033,-0.5456) mvmt=(0.1553,0.1873,0.1937) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6753,4.3160,-0.7593) mvmt=(0.1553,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.175,7.184,93.261) lpos=(-10.675,4.316,-0.759) lprev=(-10.831,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8503,0.1679,0.8659) mvmt=(0.1553,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1247,-0.0721,0.7609) mvmt=(0.1553,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1247,-2.2833,-0.5891) mvmt=(0.1553,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6753,4.3160,-0.7393) mvmt=(0.1553,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6753,4.3160,-1.5093) mvmt=(0.1553,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.175,7.184,92.511) lpos=(-10.675,4.316,-1.509) lprev=(-10.831,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8503,0.1679,0.1159) mvmt=(0.1553,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1247,-0.0721,0.0109) mvmt=(0.1553,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1247,-0.0721,0.0109) out=(0.1247,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6753,4.3160,-0.7593) mvmt=(0.1553,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.175,7.184,93.261) lpos=(-10.675,4.316,-0.759) lprev=(-10.831,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8503,0.1679,0.8659) mvmt=(0.1553,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1247,-0.0721,0.7609) mvmt=(0.1553,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1247,-2.2833,-0.5891) mvmt=(0.1553,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6753,4.3160,-0.7393) mvmt=(0.1553,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4873,4.4972,-0.5718) mvmt=(0.1880,0.1813,0.1875) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.987,7.003,93.448) lpos=(-10.487,4.497,-0.572) lprev=(-10.675,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4873,4.4972,-0.5718) mvmt=(0.1880,0.1813,0.1875) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6623,0.3492,1.0534) mvmt=(0.1880,0.1813,0.1875) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,0.1092,0.9484) mvmt=(0.1880,0.1813,0.1875) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,-2.1021,-0.4016) mvmt=(0.1880,0.1813,0.1875) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2921,-2.8396,2.4527) mvmt=(-0.0930,0.2440,0.1875) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4873,4.4972,-0.5518) mvmt=(0.1880,0.1813,0.1875) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4873,4.4972,-0.5718) mvmt=(0.1880,0.1813,0.1875) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.987,7.003,93.448) lpos=(-10.487,4.497,-0.572) lprev=(-10.675,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4873,4.4972,-0.5718) mvmt=(0.1880,0.1813,0.1875) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6623,0.3492,1.0534) mvmt=(0.1880,0.1813,0.1875) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,0.1092,0.9484) mvmt=(0.1880,0.1813,0.1875) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,-2.1021,-0.4016) mvmt=(0.1880,0.1813,0.1875) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2921,-2.8396,2.4527) mvmt=(-0.0930,0.2440,0.1875) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4873,4.4972,-0.5518) mvmt=(0.1880,0.1813,0.1875) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4873,4.3160,-0.7593) mvmt=(0.1880,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.987,7.184,93.261) lpos=(-10.487,4.316,-0.759) lprev=(-10.675,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6623,0.1679,0.8659) mvmt=(0.1880,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,-0.0721,0.7609) mvmt=(0.1880,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,-2.2833,-0.5891) mvmt=(0.1880,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4873,4.3160,-0.7393) mvmt=(0.1880,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4873,4.3160,-1.5093) mvmt=(0.1880,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.987,7.184,92.511) lpos=(-10.487,4.316,-1.509) lprev=(-10.675,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6623,0.1679,0.1159) mvmt=(0.1880,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,-0.0721,0.0109) mvmt=(0.1880,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3127,-0.0721,0.0109) out=(0.3127,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4873,4.3160,-0.7593) mvmt=(0.1880,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.987,7.184,93.261) lpos=(-10.487,4.316,-0.759) lprev=(-10.675,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6623,0.1679,0.8659) mvmt=(0.1880,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,-0.0721,0.7609) mvmt=(0.1880,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,-2.2833,-0.5891) mvmt=(0.1880,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4873,4.3160,-0.7393) mvmt=(0.1880,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.2751,4.4848,-0.5847) mvmt=(0.2122,0.1688,0.1746) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2751,4.4848,-0.5847) mvmt=(0.2122,0.1688,0.1746) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.775,7.015,93.435) lpos=(-10.275,4.485,-0.585) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2751,4.4848,-0.5847) mvmt=(0.2122,0.1688,0.1746) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4501,0.3368,1.0405) mvmt=(0.2122,0.1688,0.1746) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4501,0.3368,1.0405) out=(-0.4501,0.3368,1.3656) delta=(0.0000,0.0000,0.3250) deltaMag=0.3250 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4583 dpPos=0.2502 dpMove=-0.4243 iDist=0.5417 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.2751,4.4848,-0.2596) mvmt=(0.2122,0.1688,0.4997) collide=False insertType=0 objState=0x303 winterp=0.4583 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.775,7.015,93.760) lpos=(-10.275,4.485,-0.260) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2751,4.4848,-0.2596) mvmt=(0.2122,0.1688,0.4997) collide=False insertType=0 objState=0x303 winterp=0.4583 return=-1 +[push-back] site=adjust_sphere in=(-10.2751,4.4848,-0.2596) out=(-10.2751,4.4848,-0.2596) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=0.4583->0.4583 dpPos=-0.2596 dpMove=-0.2750 iDist=2.6899 applied=False +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.2751,4.4848,-0.2596) mvmt=(0.2122,0.1688,0.4997) collide=False insertType=0 objState=0x303 winterp=0.4583 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4501,0.3368,1.3656) mvmt=(0.2122,0.1688,0.4997) collide=False insertType=0 objState=0x303 winterp=0.4583 return=-1 +[push-back-disp] site=dispatch center=(0.5249,0.0968,1.2606) mvmt=(0.2122,0.1688,0.4997) collide=False insertType=0 objState=0x303 winterp=0.4583 return=-1 +[push-back-disp] site=dispatch center=(0.5249,-2.1145,-0.0894) mvmt=(0.2122,0.1688,0.4997) collide=False insertType=0 objState=0x303 winterp=0.4583 return=-1 +[push-back-disp] site=dispatch center=(0.3868,-2.6493,2.7649) mvmt=(-0.0720,0.2615,0.4997) collide=False insertType=0 objState=0x303 winterp=0.4583 return=-1 +[push-back-disp] site=dispatch center=(-10.2751,4.4848,-0.2396) mvmt=(0.2122,0.1688,0.4997) collide=False insertType=0 objState=0x303 winterp=0.4583 return=-1 +[push-back-disp] site=dispatch center=(-10.2751,4.4848,-0.2596) mvmt=(0.2122,0.1688,0.4997) collide=False insertType=1 objState=0x303 winterp=0.4583 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.775,7.015,93.760) lpos=(-10.275,4.485,-0.260) lprev=(-10.487,4.316,-0.759) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.775,7.015,93.435) lpos=(-10.275,4.485,-0.585) lprev=(-10.487,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.2751,4.3160,-0.7593) mvmt=(0.2122,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4583 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.775,7.184,93.261) lpos=(-10.275,4.316,-0.759) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4501,0.1679,0.8659) mvmt=(0.2122,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4583 return=-1 +[push-back-disp] site=dispatch center=(-10.2751,4.3160,-0.7593) mvmt=(0.2122,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.775,7.184,93.261) lpos=(-10.275,4.316,-0.759) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4501,0.1679,0.8659) mvmt=(0.2122,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4501,0.1679,0.8659) out=(-0.4501,0.1679,1.1968) delta=(0.0000,0.0000,0.3309) deltaMag=0.3309 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4486 dpPos=0.2460 dpMove=-0.4243 iDist=0.5514 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.2751,4.3160,-0.4284) mvmt=(0.2122,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.775,7.184,93.592) lpos=(-10.275,4.316,-0.428) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2751,4.3160,-0.4284) mvmt=(0.2122,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.2751,4.3160,-0.4284) mvmt=(0.2122,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4501,0.1679,1.1968) mvmt=(0.2122,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.5249,-0.0721,1.0918) mvmt=(0.2122,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.5249,-2.2833,-0.2582) mvmt=(0.2122,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.5421,-2.7155,2.5961) mvmt=(0.0833,0.1952,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(-10.2751,4.3160,-0.4084) mvmt=(0.2122,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(-10.2751,4.3160,-0.4284) mvmt=(0.2122,0.0000,0.3309) collide=False insertType=1 objState=0x303 winterp=0.4486 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.775,7.184,93.592) lpos=(-10.275,4.316,-0.428) lprev=(-10.487,4.316,-0.759) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4873,4.4772,-0.4660) mvmt=(0.0000,0.1612,0.2933) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.987,7.023,93.554) lpos=(-10.487,4.477,-0.466) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4873,4.4772,-0.4660) mvmt=(0.0000,0.1612,0.2933) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4873,4.4772,-0.4660) mvmt=(0.0000,0.1612,0.2933) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6623,0.3291,1.1591) mvmt=(0.0000,0.1612,0.2933) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,0.0891,1.0542) mvmt=(0.0000,0.1612,0.2933) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,-2.1221,-0.2959) mvmt=(0.0000,0.1612,0.2933) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3105,-2.8475,2.5585) mvmt=(-0.1483,0.0632,0.2933) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4873,4.4772,-0.4461) mvmt=(0.0000,0.1612,0.2933) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4873,4.4772,-0.4660) mvmt=(0.0000,0.1612,0.2933) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.987,7.023,93.554) lpos=(-10.487,4.477,-0.466) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4873,4.4772,-0.4660) mvmt=(0.0000,0.1612,0.2933) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4873,4.4772,-0.4660) mvmt=(0.0000,0.1612,0.2933) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6623,0.3291,1.1591) mvmt=(0.0000,0.1612,0.2933) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,0.0891,1.0542) mvmt=(0.0000,0.1612,0.2933) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,-2.1221,-0.2959) mvmt=(0.0000,0.1612,0.2933) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3105,-2.8475,2.5585) mvmt=(-0.1483,0.0632,0.2933) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4873,4.4772,-0.4461) mvmt=(0.0000,0.1612,0.2933) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.2026,4.4811,-0.4621) mvmt=(0.2848,0.1651,0.2972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2026,4.4811,-0.4621) mvmt=(0.2848,0.1651,0.2972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.703,7.019,93.558) lpos=(-10.203,4.481,-0.462) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2026,4.4811,-0.4621) mvmt=(0.2848,0.1651,0.2972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.2026,4.4811,-0.4621) mvmt=(0.2848,0.1651,0.2972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.3776,0.3331,1.1631) mvmt=(0.2848,0.1651,0.2972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3776,0.3331,1.1631) out=(-0.3776,0.3331,1.3619) delta=(0.0000,0.0000,0.1988) deltaMag=0.1988 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.6687 dpPos=0.3394 dpMove=-0.4243 iDist=0.3313 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.2026,4.4811,-0.2633) mvmt=(0.2848,0.1651,0.4960) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.703,7.019,93.757) lpos=(-10.203,4.481,-0.263) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2026,4.4811,-0.2633) mvmt=(0.2848,0.1651,0.4960) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back] site=adjust_sphere in=(-10.2026,4.4811,-0.2633) out=(-10.2026,4.4811,-0.2633) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=0.6687->0.6687 dpPos=-0.2633 dpMove=-0.4012 iDist=1.8527 applied=False +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.2026,4.4811,-0.2633) mvmt=(0.2848,0.1651,0.4960) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.3776,0.3331,1.3619) mvmt=(0.2848,0.1651,0.4960) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(0.5974,0.0931,1.2569) mvmt=(0.2848,0.1651,0.4960) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(0.5974,-2.1182,-0.0931) mvmt=(0.2848,0.1651,0.4960) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(0.4186,-2.5840,2.7612) mvmt=(-0.0402,0.3267,0.4960) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(-10.2026,4.4811,-0.2433) mvmt=(0.2848,0.1651,0.4960) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(-10.2026,4.4811,-0.2633) mvmt=(0.2848,0.1651,0.4960) collide=False insertType=1 objState=0x303 winterp=0.6687 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.703,7.019,93.757) lpos=(-10.203,4.481,-0.263) lprev=(-10.487,4.316,-0.759) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.703,7.019,93.558) lpos=(-10.203,4.481,-0.462) lprev=(-10.487,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.2026,4.3160,-0.7593) mvmt=(0.2848,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.703,7.184,93.261) lpos=(-10.203,4.316,-0.759) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3776,0.1679,0.8659) mvmt=(0.2848,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(-10.2026,4.3160,-0.7593) mvmt=(0.2848,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.703,7.184,93.261) lpos=(-10.203,4.316,-0.759) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3776,0.1679,0.8659) mvmt=(0.2848,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3776,0.1679,0.8659) out=(-0.3776,0.1679,1.1968) delta=(0.0000,0.0000,0.3309) deltaMag=0.3309 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4486 dpPos=0.2460 dpMove=-0.4243 iDist=0.5514 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.2026,4.3160,-0.4284) mvmt=(0.2848,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.703,7.184,93.592) lpos=(-10.203,4.316,-0.428) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2026,4.3160,-0.4284) mvmt=(0.2848,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back] site=adjust_sphere in=(-10.2026,4.3160,-0.4284) out=(-10.2026,4.3160,-0.4284) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=0.4486->0.4486 dpPos=-0.4284 dpMove=-0.2691 iDist=3.3753 applied=False +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.2026,4.3160,-0.4284) mvmt=(0.2848,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.3776,0.1679,1.1968) mvmt=(0.2848,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.5974,-0.0721,1.0918) mvmt=(0.2848,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.5974,-2.2833,-0.2582) mvmt=(0.2848,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.5705,-2.6488,2.5961) mvmt=(0.1117,0.2619,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(-10.2026,4.3160,-0.4084) mvmt=(0.2848,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(-10.2026,4.3160,-0.4284) mvmt=(0.2848,0.0000,0.3309) collide=False insertType=1 objState=0x303 winterp=0.4486 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.703,7.184,93.592) lpos=(-10.203,4.316,-0.428) lprev=(-10.487,4.316,-0.759) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4873,4.4758,-0.4674) mvmt=(0.0000,0.1599,0.2919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.987,7.024,93.553) lpos=(-10.487,4.476,-0.467) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4873,4.4758,-0.4674) mvmt=(0.0000,0.1599,0.2919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4873,4.4758,-0.4674) mvmt=(0.0000,0.1599,0.2919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6623,0.3278,1.1578) mvmt=(0.0000,0.1599,0.2919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,0.0878,1.0528) mvmt=(0.0000,0.1599,0.2919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,-2.1235,-0.2972) mvmt=(0.0000,0.1599,0.2919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3118,-2.8480,2.5571) mvmt=(-0.1470,0.0627,0.2919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4873,4.4758,-0.4474) mvmt=(0.0000,0.1599,0.2919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4873,4.4758,-0.4674) mvmt=(0.0000,0.1599,0.2919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.987,7.024,93.553) lpos=(-10.487,4.476,-0.467) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4873,4.4758,-0.4674) mvmt=(0.0000,0.1599,0.2919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4873,4.4758,-0.4674) mvmt=(0.0000,0.1599,0.2919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6623,0.3278,1.1578) mvmt=(0.0000,0.1599,0.2919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,0.0878,1.0528) mvmt=(0.0000,0.1599,0.2919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,-2.1235,-0.2972) mvmt=(0.0000,0.1599,0.2919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3118,-2.8480,2.5571) mvmt=(-0.1470,0.0627,0.2919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4873,4.4758,-0.4474) mvmt=(0.0000,0.1599,0.2919) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.2178,4.4688,-0.4744) mvmt=(0.2696,0.1529,0.2849) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2178,4.4688,-0.4744) mvmt=(0.2696,0.1529,0.2849) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.718,7.031,93.546) lpos=(-10.218,4.469,-0.474) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2178,4.4688,-0.4744) mvmt=(0.2696,0.1529,0.2849) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.2178,4.4688,-0.4744) mvmt=(0.2696,0.1529,0.2849) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.3928,0.3208,1.1508) mvmt=(0.2696,0.1529,0.2849) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3928,0.3208,1.1508) out=(-0.3928,0.3208,1.3496) delta=(0.0000,0.0000,0.1988) deltaMag=0.1988 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.6687 dpPos=0.3394 dpMove=-0.4243 iDist=0.3313 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.2178,4.4688,-0.2756) mvmt=(0.2696,0.1529,0.4837) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.718,7.031,93.744) lpos=(-10.218,4.469,-0.276) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2178,4.4688,-0.2756) mvmt=(0.2696,0.1529,0.4837) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back] site=adjust_sphere in=(-10.2178,4.4688,-0.2756) out=(-10.2178,4.4688,-0.2756) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=0.6687->0.6687 dpPos=-0.2756 dpMove=-0.4012 iDist=1.8833 applied=False +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.2178,4.4688,-0.2756) mvmt=(0.2696,0.1529,0.4837) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.3928,0.3208,1.3496) mvmt=(0.2696,0.1529,0.4837) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(0.5822,0.0808,1.2446) mvmt=(0.2696,0.1529,0.4837) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(0.5822,-2.1305,-0.1054) mvmt=(0.2696,0.1529,0.4837) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(0.4240,-2.6028,2.7489) mvmt=(-0.0348,0.3079,0.4837) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(-10.2178,4.4688,-0.2556) mvmt=(0.2696,0.1529,0.4837) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(-10.2178,4.4688,-0.2756) mvmt=(0.2696,0.1529,0.4837) collide=False insertType=1 objState=0x303 winterp=0.6687 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.718,7.031,93.744) lpos=(-10.218,4.469,-0.276) lprev=(-10.487,4.316,-0.759) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.718,7.031,93.546) lpos=(-10.218,4.469,-0.474) lprev=(-10.487,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.2178,4.3160,-0.7593) mvmt=(0.2696,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.718,7.184,93.261) lpos=(-10.218,4.316,-0.759) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3928,0.1679,0.8659) mvmt=(0.2696,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(-10.2178,4.3160,-0.7593) mvmt=(0.2696,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.718,7.184,93.261) lpos=(-10.218,4.316,-0.759) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3928,0.1679,0.8659) mvmt=(0.2696,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3928,0.1679,0.8659) out=(-0.3928,0.1679,1.1968) delta=(0.0000,0.0000,0.3309) deltaMag=0.3309 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4486 dpPos=0.2460 dpMove=-0.4243 iDist=0.5514 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.2178,4.3160,-0.4284) mvmt=(0.2696,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.718,7.184,93.592) lpos=(-10.218,4.316,-0.428) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2178,4.3160,-0.4284) mvmt=(0.2696,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.2178,4.3160,-0.4284) mvmt=(0.2696,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.3928,0.1679,1.1968) mvmt=(0.2696,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.5822,-0.0721,1.0918) mvmt=(0.2696,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.5822,-2.2833,-0.2582) mvmt=(0.2696,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.5646,-2.6628,2.5961) mvmt=(0.1058,0.2480,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(-10.2178,4.3160,-0.4084) mvmt=(0.2696,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(-10.2178,4.3160,-0.4284) mvmt=(0.2696,0.0000,0.3309) collide=False insertType=1 objState=0x303 winterp=0.4486 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.718,7.184,93.592) lpos=(-10.218,4.316,-0.428) lprev=(-10.487,4.316,-0.759) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4873,4.4769,-0.4663) mvmt=(0.0000,0.1609,0.2930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.987,7.023,93.554) lpos=(-10.487,4.477,-0.466) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4873,4.4769,-0.4663) mvmt=(0.0000,0.1609,0.2930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4873,4.4769,-0.4663) mvmt=(0.0000,0.1609,0.2930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6623,0.3289,1.1589) mvmt=(0.0000,0.1609,0.2930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,0.0889,1.0539) mvmt=(0.0000,0.1609,0.2930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,-2.1224,-0.2961) mvmt=(0.0000,0.1609,0.2930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3108,-2.8476,2.5582) mvmt=(-0.1480,0.0631,0.2930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4873,4.4769,-0.4463) mvmt=(0.0000,0.1609,0.2930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4873,4.4769,-0.4663) mvmt=(0.0000,0.1609,0.2930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.987,7.023,93.554) lpos=(-10.487,4.477,-0.466) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4873,4.4769,-0.4663) mvmt=(0.0000,0.1609,0.2930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4873,4.4769,-0.4663) mvmt=(0.0000,0.1609,0.2930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6623,0.3289,1.1589) mvmt=(0.0000,0.1609,0.2930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,0.0889,1.0539) mvmt=(0.0000,0.1609,0.2930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,-2.1224,-0.2961) mvmt=(0.0000,0.1609,0.2930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3108,-2.8476,2.5582) mvmt=(-0.1480,0.0631,0.2930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4873,4.4769,-0.4463) mvmt=(0.0000,0.1609,0.2930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.2621,4.4821,-0.4611) mvmt=(0.2253,0.1661,0.2982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2621,4.4821,-0.4611) mvmt=(0.2253,0.1661,0.2982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.762,7.018,93.559) lpos=(-10.262,4.482,-0.461) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2621,4.4821,-0.4611) mvmt=(0.2253,0.1661,0.2982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.2621,4.4821,-0.4611) mvmt=(0.2253,0.1661,0.2982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4371,0.3340,1.1641) mvmt=(0.2253,0.1661,0.2982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4371,0.3340,1.1641) out=(-0.4371,0.3340,1.3629) delta=(0.0000,0.0000,0.1988) deltaMag=0.1988 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.6687 dpPos=0.3394 dpMove=-0.4243 iDist=0.3313 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.2621,4.4821,-0.2623) mvmt=(0.2253,0.1661,0.4970) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.762,7.018,93.758) lpos=(-10.262,4.482,-0.262) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2621,4.4821,-0.2623) mvmt=(0.2253,0.1661,0.4970) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back] site=adjust_sphere in=(-10.2621,4.4821,-0.2623) out=(-10.2621,4.4821,-0.2623) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=0.6687->0.6687 dpPos=-0.2623 dpMove=-0.4012 iDist=1.8503 applied=False +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.2621,4.4821,-0.2623) mvmt=(0.2253,0.1661,0.4970) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4371,0.3340,1.3629) mvmt=(0.2253,0.1661,0.4970) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(0.5379,0.0940,1.2579) mvmt=(0.2253,0.1661,0.4970) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(0.5379,-2.1172,-0.0921) mvmt=(0.2253,0.1661,0.4970) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(0.3944,-2.6383,2.7622) mvmt=(-0.0644,0.2724,0.4970) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(-10.2621,4.4821,-0.2423) mvmt=(0.2253,0.1661,0.4970) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(-10.2621,4.4821,-0.2623) mvmt=(0.2253,0.1661,0.4970) collide=False insertType=1 objState=0x303 winterp=0.6687 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.762,7.018,93.758) lpos=(-10.262,4.482,-0.262) lprev=(-10.487,4.316,-0.759) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.762,7.018,93.559) lpos=(-10.262,4.482,-0.461) lprev=(-10.487,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.2621,4.3160,-0.7593) mvmt=(0.2253,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.762,7.184,93.261) lpos=(-10.262,4.316,-0.759) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4371,0.1679,0.8659) mvmt=(0.2253,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(-10.2621,4.3160,-0.7593) mvmt=(0.2253,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.762,7.184,93.261) lpos=(-10.262,4.316,-0.759) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4371,0.1679,0.8659) mvmt=(0.2253,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4371,0.1679,0.8659) out=(-0.4371,0.1679,1.1968) delta=(0.0000,0.0000,0.3309) deltaMag=0.3309 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4486 dpPos=0.2460 dpMove=-0.4243 iDist=0.5514 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.2621,4.3160,-0.4284) mvmt=(0.2253,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.762,7.184,93.592) lpos=(-10.262,4.316,-0.428) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2621,4.3160,-0.4284) mvmt=(0.2253,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.2621,4.3160,-0.4284) mvmt=(0.2253,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4371,0.1679,1.1968) mvmt=(0.2253,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.5379,-0.0721,1.0918) mvmt=(0.2253,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.5379,-2.2833,-0.2582) mvmt=(0.2253,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.5472,-2.7035,2.5961) mvmt=(0.0884,0.2072,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(-10.2621,4.3160,-0.4084) mvmt=(0.2253,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(-10.2621,4.3160,-0.4284) mvmt=(0.2253,0.0000,0.3309) collide=False insertType=1 objState=0x303 winterp=0.4486 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.762,7.184,93.592) lpos=(-10.262,4.316,-0.428) lprev=(-10.487,4.316,-0.759) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4873,4.4978,-0.4455) mvmt=(0.0000,0.1818,0.3138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.987,7.002,93.575) lpos=(-10.487,4.498,-0.445) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4873,4.4978,-0.4455) mvmt=(0.0000,0.1818,0.3138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4873,4.4978,-0.4455) mvmt=(0.0000,0.1818,0.3138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6623,0.3497,1.1797) mvmt=(0.0000,0.1818,0.3138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,0.1097,1.0747) mvmt=(0.0000,0.1818,0.3138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,-2.1016,-0.2753) mvmt=(0.0000,0.1818,0.3138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2916,-2.8394,2.5790) mvmt=(-0.1672,0.0713,0.3138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4873,4.4978,-0.4255) mvmt=(0.0000,0.1818,0.3138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4873,4.4978,-0.4455) mvmt=(0.0000,0.1818,0.3138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.987,7.002,93.575) lpos=(-10.487,4.498,-0.445) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4873,4.4978,-0.4455) mvmt=(0.0000,0.1818,0.3138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4873,4.4978,-0.4455) mvmt=(0.0000,0.1818,0.3138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6623,0.3497,1.1797) mvmt=(0.0000,0.1818,0.3138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,0.1097,1.0747) mvmt=(0.0000,0.1818,0.3138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,-2.1016,-0.2753) mvmt=(0.0000,0.1818,0.3138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2916,-2.8394,2.5790) mvmt=(-0.1672,0.0713,0.3138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4873,4.4978,-0.4255) mvmt=(0.0000,0.1818,0.3138) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3176,4.5000,-0.4433) mvmt=(0.1698,0.1840,0.3160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3176,4.5000,-0.4433) mvmt=(0.1698,0.1840,0.3160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.818,7.000,93.577) lpos=(-10.318,4.500,-0.443) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3176,4.5000,-0.4433) mvmt=(0.1698,0.1840,0.3160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.3176,4.5000,-0.4433) mvmt=(0.1698,0.1840,0.3160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4926,0.3519,1.1819) mvmt=(0.1698,0.1840,0.3160) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4926,0.3519,1.1819) out=(-0.4926,0.3519,1.3807) delta=(0.0000,0.0000,0.1988) deltaMag=0.1988 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.6687 dpPos=0.3394 dpMove=-0.4243 iDist=0.3313 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3176,4.5000,-0.2445) mvmt=(0.1698,0.1840,0.5148) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.818,7.000,93.776) lpos=(-10.318,4.500,-0.244) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3176,4.5000,-0.2445) mvmt=(0.1698,0.1840,0.5148) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back] site=adjust_sphere in=(-10.3176,4.5000,-0.2445) out=(-10.3176,4.5000,-0.2445) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=0.6687->0.6687 dpPos=-0.2445 dpMove=-0.4012 iDist=1.8058 applied=False +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.3176,4.5000,-0.2445) mvmt=(0.1698,0.1840,0.5148) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4926,0.3519,1.3807) mvmt=(0.1698,0.1840,0.5148) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(0.4825,0.1119,1.2757) mvmt=(0.1698,0.1840,0.5148) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(0.4825,-2.0994,-0.0743) mvmt=(0.1698,0.1840,0.5148) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(0.3562,-2.6824,2.7800) mvmt=(-0.1026,0.2284,0.5148) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(-10.3176,4.5000,-0.2245) mvmt=(0.1698,0.1840,0.5148) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(-10.3176,4.5000,-0.2445) mvmt=(0.1698,0.1840,0.5148) collide=False insertType=1 objState=0x303 winterp=0.6687 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.818,7.000,93.776) lpos=(-10.318,4.500,-0.244) lprev=(-10.487,4.316,-0.759) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.818,7.000,93.577) lpos=(-10.318,4.500,-0.443) lprev=(-10.487,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3176,4.3160,-0.7593) mvmt=(0.1698,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.818,7.184,93.261) lpos=(-10.318,4.316,-0.759) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4926,0.1679,0.8659) mvmt=(0.1698,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(-10.3176,4.3160,-0.7593) mvmt=(0.1698,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.818,7.184,93.261) lpos=(-10.318,4.316,-0.759) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4926,0.1679,0.8659) mvmt=(0.1698,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4926,0.1679,0.8659) out=(-0.4926,0.1679,1.1968) delta=(0.0000,0.0000,0.3309) deltaMag=0.3309 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4486 dpPos=0.2460 dpMove=-0.4243 iDist=0.5514 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3176,4.3160,-0.4284) mvmt=(0.1698,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.818,7.184,93.592) lpos=(-10.318,4.316,-0.428) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3176,4.3160,-0.4284) mvmt=(0.1698,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.3176,4.3160,-0.4284) mvmt=(0.1698,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4926,0.1679,1.1968) mvmt=(0.1698,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.4825,-0.0721,1.0918) mvmt=(0.1698,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.4825,-2.2833,-0.2582) mvmt=(0.1698,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.5254,-2.7545,2.5961) mvmt=(0.0666,0.1562,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(-10.3176,4.3160,-0.4084) mvmt=(0.1698,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(-10.3176,4.3160,-0.4284) mvmt=(0.1698,0.0000,0.3309) collide=False insertType=1 objState=0x303 winterp=0.4486 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.818,7.184,93.592) lpos=(-10.318,4.316,-0.428) lprev=(-10.487,4.316,-0.759) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4873,4.5049,-0.4383) mvmt=(0.0000,0.1889,0.3210) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.987,6.995,93.582) lpos=(-10.487,4.505,-0.438) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4873,4.5049,-0.4383) mvmt=(0.0000,0.1889,0.3210) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4873,4.5049,-0.4383) mvmt=(0.0000,0.1889,0.3210) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6623,0.3569,1.1869) mvmt=(0.0000,0.1889,0.3210) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,0.1169,1.0819) mvmt=(0.0000,0.1889,0.3210) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,-2.0944,-0.2681) mvmt=(0.0000,0.1889,0.3210) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2850,-2.8366,2.5862) mvmt=(-0.1738,0.0741,0.3210) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4873,4.5049,-0.4183) mvmt=(0.0000,0.1889,0.3210) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4873,4.5049,-0.4383) mvmt=(0.0000,0.1889,0.3210) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.987,6.995,93.582) lpos=(-10.487,4.505,-0.438) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4873,4.5049,-0.4383) mvmt=(0.0000,0.1889,0.3210) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4873,4.5049,-0.4383) mvmt=(0.0000,0.1889,0.3210) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6623,0.3569,1.1869) mvmt=(0.0000,0.1889,0.3210) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,0.1169,1.0819) mvmt=(0.0000,0.1889,0.3210) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,-2.0944,-0.2681) mvmt=(0.0000,0.1889,0.3210) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2850,-2.8366,2.5862) mvmt=(-0.1738,0.0741,0.3210) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4873,4.5049,-0.4183) mvmt=(0.0000,0.1889,0.3210) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3796,4.5087,-0.4346) mvmt=(0.1078,0.1927,0.3247) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3796,4.5087,-0.4346) mvmt=(0.1078,0.1927,0.3247) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.880,6.991,93.585) lpos=(-10.380,4.509,-0.435) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3796,4.5087,-0.4346) mvmt=(0.1078,0.1927,0.3247) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.3796,4.5087,-0.4346) mvmt=(0.1078,0.1927,0.3247) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5546,0.3606,1.1906) mvmt=(0.1078,0.1927,0.3247) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4204,0.1206,1.0856) mvmt=(0.1078,0.1927,0.3247) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4204,-2.0906,-0.2644) mvmt=(0.1078,0.1927,0.3247) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3239,-2.7360,2.5899) mvmt=(-0.1350,0.1747,0.3247) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3796,4.5087,-0.4146) mvmt=(0.1078,0.1927,0.3247) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.880,6.991,93.585) lpos=(-10.380,4.509,-0.435) lprev=(-10.487,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3796,4.3160,-0.7593) mvmt=(0.1078,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.880,7.184,93.261) lpos=(-10.380,4.316,-0.759) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5546,0.1679,0.8659) mvmt=(0.1078,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3796,4.3160,-0.7593) mvmt=(0.1078,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.880,7.184,93.261) lpos=(-10.380,4.316,-0.759) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5546,0.1679,0.8659) mvmt=(0.1078,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5546,0.1679,0.8659) out=(-0.5546,0.1679,1.1968) delta=(0.0000,0.0000,0.3309) deltaMag=0.3309 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4486 dpPos=0.2460 dpMove=-0.4243 iDist=0.5514 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3796,4.3160,-0.4284) mvmt=(0.1078,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.880,7.184,93.592) lpos=(-10.380,4.316,-0.428) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3796,4.3160,-0.4284) mvmt=(0.1078,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.3796,4.3160,-0.4284) mvmt=(0.1078,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5546,0.1679,1.1968) mvmt=(0.1078,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.4204,-0.0721,1.0918) mvmt=(0.1078,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.4204,-2.2833,-0.2582) mvmt=(0.1078,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.5011,-2.8116,2.5961) mvmt=(0.0423,0.0991,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(-10.3796,4.3160,-0.4084) mvmt=(0.1078,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(-10.3796,4.3160,-0.4284) mvmt=(0.1078,0.0000,0.3309) collide=False insertType=1 objState=0x303 winterp=0.4486 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.880,7.184,93.592) lpos=(-10.380,4.316,-0.428) lprev=(-10.487,4.316,-0.759) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4873,4.5113,-0.4319) mvmt=(0.0000,0.1953,0.3274) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.987,6.989,93.588) lpos=(-10.487,4.511,-0.432) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4873,4.5113,-0.4319) mvmt=(0.0000,0.1953,0.3274) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4873,4.5113,-0.4319) mvmt=(0.0000,0.1953,0.3274) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6623,0.3633,1.1933) mvmt=(0.0000,0.1953,0.3274) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,0.1233,1.0883) mvmt=(0.0000,0.1953,0.3274) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,-2.0880,-0.2617) mvmt=(0.0000,0.1953,0.3274) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2791,-2.8341,2.5926) mvmt=(-0.1797,0.0766,0.3274) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4873,4.5113,-0.4119) mvmt=(0.0000,0.1953,0.3274) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4873,4.5113,-0.4319) mvmt=(0.0000,0.1953,0.3274) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.987,6.989,93.588) lpos=(-10.487,4.511,-0.432) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4873,4.5113,-0.4319) mvmt=(0.0000,0.1953,0.3274) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4873,4.5113,-0.4319) mvmt=(0.0000,0.1953,0.3274) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6623,0.3633,1.1933) mvmt=(0.0000,0.1953,0.3274) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,0.1233,1.0883) mvmt=(0.0000,0.1953,0.3274) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3127,-2.0880,-0.2617) mvmt=(0.0000,0.1953,0.3274) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2791,-2.8341,2.5926) mvmt=(-0.1797,0.0766,0.3274) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4873,4.5113,-0.4119) mvmt=(0.0000,0.1953,0.3274) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4417,4.5176,-0.4256) mvmt=(0.0457,0.2016,0.3337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4417,4.5176,-0.4256) mvmt=(0.0457,0.2016,0.3337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,6.982,93.594) lpos=(-10.442,4.518,-0.426) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4417,4.5176,-0.4256) mvmt=(0.0457,0.2016,0.3337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4417,4.5176,-0.4256) mvmt=(0.0457,0.2016,0.3337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6167,0.3696,1.1996) mvmt=(0.0457,0.2016,0.3337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3584,0.1296,1.0946) mvmt=(0.0457,0.2016,0.3337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3584,-2.0817,-0.2554) mvmt=(0.0457,0.2016,0.3337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2913,-2.7896,2.5989) mvmt=(-0.1675,0.1211,0.3337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4417,4.5176,-0.4056) mvmt=(0.0457,0.2016,0.3337) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,6.982,93.594) lpos=(-10.442,4.518,-0.426) lprev=(-10.487,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4417,4.3160,-0.7593) mvmt=(0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.184,93.261) lpos=(-10.442,4.316,-0.759) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6167,0.1679,0.8659) mvmt=(0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3584,-0.0721,0.7609) mvmt=(0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3584,-2.2833,-0.5891) mvmt=(0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4417,4.3160,-0.7393) mvmt=(0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4417,4.3160,-1.5093) mvmt=(0.0457,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.184,92.511) lpos=(-10.442,4.316,-1.509) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6167,0.1679,0.1159) mvmt=(0.0457,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3584,-0.0721,0.0109) mvmt=(0.0457,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3584,-0.0721,0.0109) out=(0.3584,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4417,4.3160,-0.7593) mvmt=(0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.942,7.184,93.261) lpos=(-10.442,4.316,-0.759) lprev=(-10.487,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6167,0.1679,0.8659) mvmt=(0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3584,-0.0721,0.7609) mvmt=(0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3584,-2.2833,-0.5891) mvmt=(0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4417,4.3160,-0.7393) mvmt=(0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4287,4.5123,-0.5562) mvmt=(0.0130,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4287,4.5123,-0.5562) mvmt=(0.0130,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.929,6.988,93.464) lpos=(-10.429,4.512,-0.556) lprev=(-10.442,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4287,4.5123,-0.5562) mvmt=(0.0130,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6037,0.3642,1.0690) mvmt=(0.0130,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3713,0.1242,0.9640) mvmt=(0.0130,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3713,-2.0870,-0.3860) mvmt=(0.0130,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3013,-2.7797,2.4683) mvmt=(-0.1755,0.0890,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4287,4.5123,-0.5362) mvmt=(0.0130,0.1963,0.2031) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.929,6.988,93.464) lpos=(-10.429,4.512,-0.556) lprev=(-10.442,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4287,4.3160,-0.7593) mvmt=(0.0130,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.929,7.184,93.261) lpos=(-10.429,4.316,-0.759) lprev=(-10.442,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6037,0.1679,0.8659) mvmt=(0.0130,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3713,-0.0721,0.7609) mvmt=(0.0130,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3713,-2.2833,-0.5891) mvmt=(0.0130,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4287,4.3160,-0.7393) mvmt=(0.0130,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4287,4.3160,-1.5093) mvmt=(0.0130,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.929,7.184,92.511) lpos=(-10.429,4.316,-1.509) lprev=(-10.442,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6037,0.1679,0.1159) mvmt=(0.0130,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3713,-0.0721,0.0109) mvmt=(0.0130,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3713,-0.0721,0.0109) out=(0.3713,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4287,4.3160,-0.7593) mvmt=(0.0130,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.929,7.184,93.261) lpos=(-10.429,4.316,-0.759) lprev=(-10.442,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6037,0.1679,0.8659) mvmt=(0.0130,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3713,-0.0721,0.7609) mvmt=(0.0130,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3713,-2.2833,-0.5891) mvmt=(0.0130,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4287,4.3160,-0.7393) mvmt=(0.0130,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4483,4.5112,-0.5573) mvmt=(-0.0196,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4483,4.5112,-0.5573) mvmt=(-0.0196,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.948,6.989,93.463) lpos=(-10.448,4.511,-0.557) lprev=(-10.429,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4483,4.5112,-0.5573) mvmt=(-0.0196,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6233,0.3632,1.0679) mvmt=(-0.0196,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3517,0.1232,0.9629) mvmt=(-0.0196,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3517,-2.0881,-0.3871) mvmt=(-0.0196,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2946,-2.7982,2.4672) mvmt=(-0.1873,0.0586,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4483,4.5112,-0.5373) mvmt=(-0.0196,0.1952,0.2020) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.948,6.989,93.463) lpos=(-10.448,4.511,-0.557) lprev=(-10.429,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4483,4.3160,-0.7593) mvmt=(-0.0196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.948,7.184,93.261) lpos=(-10.448,4.316,-0.759) lprev=(-10.429,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6233,0.1679,0.8659) mvmt=(-0.0196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3517,-0.0721,0.7609) mvmt=(-0.0196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3517,-2.2833,-0.5891) mvmt=(-0.0196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4483,4.3160,-0.7393) mvmt=(-0.0196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4483,4.3160,-1.5093) mvmt=(-0.0196,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.948,7.184,92.511) lpos=(-10.448,4.316,-1.509) lprev=(-10.429,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6233,0.1679,0.1159) mvmt=(-0.0196,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3517,-0.0721,0.0109) mvmt=(-0.0196,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3517,-0.0721,0.0109) out=(0.3517,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4483,4.3160,-0.7593) mvmt=(-0.0196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.948,7.184,93.261) lpos=(-10.448,4.316,-0.759) lprev=(-10.429,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6233,0.1679,0.8659) mvmt=(-0.0196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3517,-0.0721,0.7609) mvmt=(-0.0196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3517,-2.2833,-0.5891) mvmt=(-0.0196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4483,4.3160,-0.7393) mvmt=(-0.0196,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5012,4.5117,-0.5568) mvmt=(-0.0529,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.001,6.988,93.463) lpos=(-10.501,4.512,-0.557) lprev=(-10.448,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5012,4.5117,-0.5568) mvmt=(-0.0529,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6762,0.3637,1.0684) mvmt=(-0.0529,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2988,0.1237,0.9634) mvmt=(-0.0529,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2988,-2.0876,-0.3866) mvmt=(-0.0529,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2733,-2.8467,2.4677) mvmt=(-0.2008,0.0282,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5012,4.5117,-0.5368) mvmt=(-0.0529,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5012,4.5117,-0.5568) mvmt=(-0.0529,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.001,6.988,93.463) lpos=(-10.501,4.512,-0.557) lprev=(-10.448,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5012,4.5117,-0.5568) mvmt=(-0.0529,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6762,0.3637,1.0684) mvmt=(-0.0529,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2988,0.1237,0.9634) mvmt=(-0.0529,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2988,-2.0876,-0.3866) mvmt=(-0.0529,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2733,-2.8467,2.4677) mvmt=(-0.2008,0.0282,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5012,4.5117,-0.5368) mvmt=(-0.0529,0.1957,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5012,4.3160,-0.7593) mvmt=(-0.0529,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.001,7.184,93.261) lpos=(-10.501,4.316,-0.759) lprev=(-10.448,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6762,0.1679,0.8659) mvmt=(-0.0529,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2988,-0.0721,0.7609) mvmt=(-0.0529,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2988,-2.2833,-0.5891) mvmt=(-0.0529,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5012,4.3160,-0.7393) mvmt=(-0.0529,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5012,4.3160,-1.5093) mvmt=(-0.0529,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.001,7.184,92.511) lpos=(-10.501,4.316,-1.509) lprev=(-10.448,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6762,0.1679,0.1159) mvmt=(-0.0529,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2988,-0.0721,0.0109) mvmt=(-0.0529,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2988,-0.0721,0.0109) out=(0.2988,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.5012,4.3160,-0.7593) mvmt=(-0.0529,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.001,7.184,93.261) lpos=(-10.501,4.316,-0.759) lprev=(-10.448,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6762,0.1679,0.8659) mvmt=(-0.0529,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2988,-0.0721,0.7609) mvmt=(-0.0529,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2988,-2.2833,-0.5891) mvmt=(-0.0529,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5012,4.3160,-0.7393) mvmt=(-0.0529,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5885,4.5118,-0.5568) mvmt=(-0.0873,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.089,6.988,93.463) lpos=(-10.589,4.512,-0.557) lprev=(-10.501,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5885,4.5118,-0.5568) mvmt=(-0.0873,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7635,0.3637,1.0684) mvmt=(-0.0873,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2115,0.1237,0.9634) mvmt=(-0.0873,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2115,-2.0875,-0.3866) mvmt=(-0.0873,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2390,-2.9270,2.4677) mvmt=(-0.2144,-0.0035,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5885,4.5118,-0.5368) mvmt=(-0.0873,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5885,4.5118,-0.5568) mvmt=(-0.0873,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.089,6.988,93.463) lpos=(-10.589,4.512,-0.557) lprev=(-10.501,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5885,4.5118,-0.5568) mvmt=(-0.0873,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7635,0.3637,1.0684) mvmt=(-0.0873,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2115,0.1237,0.9634) mvmt=(-0.0873,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2115,-2.0875,-0.3866) mvmt=(-0.0873,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2390,-2.9270,2.4677) mvmt=(-0.2144,-0.0035,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5885,4.5118,-0.5368) mvmt=(-0.0873,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5885,4.3160,-0.7593) mvmt=(-0.0873,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.089,7.184,93.261) lpos=(-10.589,4.316,-0.759) lprev=(-10.501,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7635,0.1679,0.8659) mvmt=(-0.0873,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2115,-0.0721,0.7609) mvmt=(-0.0873,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2115,-2.2833,-0.5891) mvmt=(-0.0873,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5885,4.3160,-0.7393) mvmt=(-0.0873,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5885,4.3160,-1.5093) mvmt=(-0.0873,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.089,7.184,92.511) lpos=(-10.589,4.316,-1.509) lprev=(-10.501,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7635,0.1679,0.1159) mvmt=(-0.0873,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2115,-0.0721,0.0109) mvmt=(-0.0873,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2115,-0.0721,0.0109) out=(0.2115,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.5885,4.3160,-0.7593) mvmt=(-0.0873,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.089,7.184,93.261) lpos=(-10.589,4.316,-0.759) lprev=(-10.501,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7635,0.1679,0.8659) mvmt=(-0.0873,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2115,-0.0721,0.7609) mvmt=(-0.0873,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2115,-2.2833,-0.5891) mvmt=(-0.0873,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5885,4.3160,-0.7393) mvmt=(-0.0873,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7048,4.5026,-0.5663) mvmt=(-0.1163,0.1866,0.1930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.205,6.997,93.454) lpos=(-10.705,4.503,-0.566) lprev=(-10.589,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7048,4.5026,-0.5663) mvmt=(-0.1163,0.1866,0.1930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8798,0.3545,1.0589) mvmt=(-0.1163,0.1866,0.1930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0952,0.1145,0.9539) mvmt=(-0.1163,0.1866,0.1930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0952,-2.0968,-0.3961) mvmt=(-0.1163,0.1866,0.1930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2019,-3.0376,2.4582) mvmt=(-0.2172,-0.0338,0.1930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7048,4.5026,-0.5463) mvmt=(-0.1163,0.1866,0.1930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7048,4.5026,-0.5663) mvmt=(-0.1163,0.1866,0.1930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.205,6.997,93.454) lpos=(-10.705,4.503,-0.566) lprev=(-10.589,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7048,4.5026,-0.5663) mvmt=(-0.1163,0.1866,0.1930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8798,0.3545,1.0589) mvmt=(-0.1163,0.1866,0.1930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0952,0.1145,0.9539) mvmt=(-0.1163,0.1866,0.1930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0952,-2.0968,-0.3961) mvmt=(-0.1163,0.1866,0.1930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2019,-3.0376,2.4582) mvmt=(-0.2172,-0.0338,0.1930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7048,4.5026,-0.5463) mvmt=(-0.1163,0.1866,0.1930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7048,4.3160,-0.7593) mvmt=(-0.1163,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.205,7.184,93.261) lpos=(-10.705,4.316,-0.759) lprev=(-10.589,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8798,0.1679,0.8659) mvmt=(-0.1163,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0952,-0.0721,0.7609) mvmt=(-0.1163,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0952,-2.2833,-0.5891) mvmt=(-0.1163,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7048,4.3160,-0.7393) mvmt=(-0.1163,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7048,4.3160,-1.5093) mvmt=(-0.1163,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.205,7.184,92.511) lpos=(-10.705,4.316,-1.509) lprev=(-10.589,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8798,0.1679,0.1159) mvmt=(-0.1163,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0952,-0.0721,0.0109) mvmt=(-0.1163,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0952,-0.0721,0.0109) out=(0.0952,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.7048,4.3160,-0.7593) mvmt=(-0.1163,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.205,7.184,93.261) lpos=(-10.705,4.316,-0.759) lprev=(-10.589,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8798,0.1679,0.8659) mvmt=(-0.1163,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0952,-0.0721,0.7609) mvmt=(-0.1163,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0952,-2.2833,-0.5891) mvmt=(-0.1163,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7048,4.3160,-0.7393) mvmt=(-0.1163,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8516,4.4974,-0.5716) mvmt=(-0.1468,0.1814,0.1877) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.352,7.003,93.448) lpos=(-10.852,4.497,-0.572) lprev=(-10.705,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8516,4.4974,-0.5716) mvmt=(-0.1468,0.1814,0.1877) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0266,0.3493,1.0536) mvmt=(-0.1468,0.1814,0.1877) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0516,0.1093,0.9486) mvmt=(-0.1468,0.1814,0.1877) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0516,-2.1019,-0.4014) mvmt=(-0.1468,0.1814,0.1877) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8516,4.4974,-0.5516) mvmt=(-0.1468,0.1814,0.1877) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8516,4.4974,-0.5716) mvmt=(-0.1468,0.1814,0.1877) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.352,7.003,93.448) lpos=(-10.852,4.497,-0.572) lprev=(-10.705,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8516,4.4974,-0.5716) mvmt=(-0.1468,0.1814,0.1877) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0266,0.3493,1.0536) mvmt=(-0.1468,0.1814,0.1877) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0516,0.1093,0.9486) mvmt=(-0.1468,0.1814,0.1877) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0516,-2.1019,-0.4014) mvmt=(-0.1468,0.1814,0.1877) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8516,4.4974,-0.5516) mvmt=(-0.1468,0.1814,0.1877) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8516,4.3160,-0.7593) mvmt=(-0.1468,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.352,7.184,93.261) lpos=(-10.852,4.316,-0.759) lprev=(-10.705,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0266,0.1679,0.8659) mvmt=(-0.1468,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0516,-0.0721,0.7609) mvmt=(-0.1468,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0516,-2.2833,-0.5891) mvmt=(-0.1468,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8516,4.3160,-0.7393) mvmt=(-0.1468,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8516,4.3160,-1.5093) mvmt=(-0.1468,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.352,7.184,92.511) lpos=(-10.852,4.316,-1.509) lprev=(-10.705,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0266,0.1679,0.1159) mvmt=(-0.1468,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0516,-0.0721,0.0109) mvmt=(-0.1468,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0516,-0.0721,0.0109) out=(-0.0516,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.8516,4.3160,-0.7593) mvmt=(-0.1468,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.352,7.184,93.261) lpos=(-10.852,4.316,-0.759) lprev=(-10.705,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0266,0.1679,0.8659) mvmt=(-0.1468,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0516,-0.0721,0.7609) mvmt=(-0.1468,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0516,-2.2833,-0.5891) mvmt=(-0.1468,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8516,4.3160,-0.7393) mvmt=(-0.1468,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0463,4.5058,-0.5629) mvmt=(-0.1947,0.1899,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,6.994,93.457) lpos=(-11.046,4.506,-0.563) lprev=(-10.852,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.5058,-0.5629) mvmt=(-0.1947,0.1899,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3578,1.0623) mvmt=(-0.1947,0.1899,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.1178,0.9573) mvmt=(-0.1947,0.1899,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.0935,-0.3927) mvmt=(-0.1947,0.1899,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.5058,-0.5429) mvmt=(-0.1947,0.1899,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.5058,-0.5629) mvmt=(-0.1947,0.1899,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,6.994,93.457) lpos=(-11.046,4.506,-0.563) lprev=(-10.852,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.5058,-0.5629) mvmt=(-0.1947,0.1899,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3578,1.0623) mvmt=(-0.1947,0.1899,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.1178,0.9573) mvmt=(-0.1947,0.1899,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.0935,-0.3927) mvmt=(-0.1947,0.1899,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.5058,-0.5429) mvmt=(-0.1947,0.1899,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.3160,-0.7593) mvmt=(-0.1947,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.184,93.261) lpos=(-11.046,4.316,-0.759) lprev=(-10.852,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2213,0.1679,0.8659) mvmt=(-0.1947,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-0.0721,0.7609) mvmt=(-0.1947,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.2833,-0.5891) mvmt=(-0.1947,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.3160,-0.7393) mvmt=(-0.1947,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.3160,-1.5093) mvmt=(-0.1947,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.184,92.511) lpos=(-11.046,4.316,-1.509) lprev=(-10.852,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2213,0.1679,0.1159) mvmt=(-0.1947,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-0.0721,0.0109) mvmt=(-0.1947,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2463,-0.0721,0.0109) out=(-0.2463,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0463,4.3160,-0.7593) mvmt=(-0.1947,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.184,93.261) lpos=(-11.046,4.316,-0.759) lprev=(-10.852,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2213,0.1679,0.8659) mvmt=(-0.1947,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-0.0721,0.7609) mvmt=(-0.1947,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.2833,-0.5891) mvmt=(-0.1947,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.3160,-0.7393) mvmt=(-0.1947,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2577,4.4858,-0.5836) mvmt=(-0.2114,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2577,4.4858,-0.5836) mvmt=(-0.2114,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.758,7.014,93.436) lpos=(-11.258,4.486,-0.584) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2577,4.4858,-0.5836) mvmt=(-0.2114,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4327,0.3377,1.0415) mvmt=(-0.2114,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4577,0.0977,0.9366) mvmt=(-0.2114,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4577,-2.1135,-0.4135) mvmt=(-0.2114,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2577,4.4858,-0.5637) mvmt=(-0.2114,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.758,7.014,93.436) lpos=(-11.258,4.486,-0.584) lprev=(-11.046,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4858,-0.5836) mvmt=(0.0000,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.014,93.436) lpos=(-11.046,4.486,-0.584) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4858,-0.5836) mvmt=(0.0000,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3377,1.0415) mvmt=(0.0000,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.0977,0.9366) mvmt=(0.0000,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.1135,-0.4135) mvmt=(-0.0000,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4858,-0.5637) mvmt=(0.0000,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4858,-0.5836) mvmt=(0.0000,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.014,93.436) lpos=(-11.046,4.486,-0.584) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4858,-0.5836) mvmt=(0.0000,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3377,1.0415) mvmt=(0.0000,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.0977,0.9366) mvmt=(0.0000,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.1135,-0.4135) mvmt=(-0.0000,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4858,-0.5637) mvmt=(0.0000,0.1698,0.1757) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3034,4.4869,-0.5825) mvmt=(-0.2572,0.1709,0.1768) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3034,4.4869,-0.5825) mvmt=(-0.2572,0.1709,0.1768) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.803,7.013,93.438) lpos=(-11.303,4.487,-0.582) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.3034,4.4869,-0.5825) mvmt=(-0.2572,0.1709,0.1768) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4784,0.3389,1.0427) mvmt=(-0.2572,0.1709,0.1768) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5034,0.0989,0.9377) mvmt=(-0.2572,0.1709,0.1768) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5034,-2.1124,-0.4123) mvmt=(-0.2572,0.1709,0.1768) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3034,4.4869,-0.5625) mvmt=(-0.2572,0.1709,0.1768) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.803,7.013,93.438) lpos=(-11.303,4.487,-0.582) lprev=(-11.046,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4869,-0.5825) mvmt=(0.0000,0.1709,0.1768) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.013,93.438) lpos=(-11.046,4.487,-0.582) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4869,-0.5825) mvmt=(0.0000,0.1709,0.1768) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3389,1.0427) mvmt=(0.0000,0.1709,0.1768) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.0989,0.9377) mvmt=(0.0000,0.1709,0.1768) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.1124,-0.4123) mvmt=(-0.0000,0.1709,0.1768) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4869,-0.5625) mvmt=(0.0000,0.1709,0.1768) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4869,-0.5825) mvmt=(0.0000,0.1709,0.1768) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.013,93.438) lpos=(-11.046,4.487,-0.582) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4869,-0.5825) mvmt=(0.0000,0.1709,0.1768) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3389,1.0427) mvmt=(0.0000,0.1709,0.1768) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.0989,0.9377) mvmt=(0.0000,0.1709,0.1768) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.1124,-0.4123) mvmt=(-0.0000,0.1709,0.1768) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4869,-0.5625) mvmt=(0.0000,0.1709,0.1768) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3324,4.4751,-0.5947) mvmt=(-0.2861,0.1591,0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3324,4.4751,-0.5947) mvmt=(-0.2861,0.1591,0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.832,7.025,93.425) lpos=(-11.332,4.475,-0.595) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.3324,4.4751,-0.5947) mvmt=(-0.2861,0.1591,0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5074,0.3270,1.0305) mvmt=(-0.2861,0.1591,0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5324,0.0870,0.9255) mvmt=(-0.2861,0.1591,0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5324,-2.1242,-0.4245) mvmt=(-0.2861,0.1591,0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3324,4.4751,-0.5747) mvmt=(-0.2861,0.1591,0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.832,7.025,93.425) lpos=(-11.332,4.475,-0.595) lprev=(-11.046,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4751,-0.5947) mvmt=(0.0000,0.1591,0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.025,93.425) lpos=(-11.046,4.475,-0.595) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4751,-0.5947) mvmt=(0.0000,0.1591,0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3270,1.0305) mvmt=(0.0000,0.1591,0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.0870,0.9255) mvmt=(0.0000,0.1591,0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.1242,-0.4245) mvmt=(-0.0000,0.1591,0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4751,-0.5747) mvmt=(0.0000,0.1591,0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4751,-0.5947) mvmt=(0.0000,0.1591,0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.025,93.425) lpos=(-11.046,4.475,-0.595) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4751,-0.5947) mvmt=(0.0000,0.1591,0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3270,1.0305) mvmt=(0.0000,0.1591,0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.0870,0.9255) mvmt=(0.0000,0.1591,0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.1242,-0.4245) mvmt=(-0.0000,0.1591,0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4751,-0.5747) mvmt=(0.0000,0.1591,0.1646) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3707,4.4668,-0.6033) mvmt=(-0.3244,0.1508,0.1560) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3707,4.4668,-0.6033) mvmt=(-0.3244,0.1508,0.1560) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.871,7.033,93.417) lpos=(-11.371,4.467,-0.603) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.3707,4.4668,-0.6033) mvmt=(-0.3244,0.1508,0.1560) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5457,0.3187,1.0219) mvmt=(-0.3244,0.1508,0.1560) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5707,0.0787,0.9169) mvmt=(-0.3244,0.1508,0.1560) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5707,-2.1325,-0.4331) mvmt=(-0.3244,0.1508,0.1560) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3707,4.4668,-0.5833) mvmt=(-0.3244,0.1508,0.1560) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.871,7.033,93.417) lpos=(-11.371,4.467,-0.603) lprev=(-11.046,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4668,-0.6033) mvmt=(0.0000,0.1508,0.1560) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.033,93.417) lpos=(-11.046,4.467,-0.603) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4668,-0.6033) mvmt=(0.0000,0.1508,0.1560) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3187,1.0219) mvmt=(0.0000,0.1508,0.1560) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.0787,0.9169) mvmt=(0.0000,0.1508,0.1560) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.1325,-0.4331) mvmt=(-0.0000,0.1508,0.1560) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4668,-0.5833) mvmt=(0.0000,0.1508,0.1560) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4668,-0.6033) mvmt=(0.0000,0.1508,0.1560) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.033,93.417) lpos=(-11.046,4.467,-0.603) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4668,-0.6033) mvmt=(0.0000,0.1508,0.1560) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3187,1.0219) mvmt=(0.0000,0.1508,0.1560) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.0787,0.9169) mvmt=(0.0000,0.1508,0.1560) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.1325,-0.4331) mvmt=(-0.0000,0.1508,0.1560) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4668,-0.5833) mvmt=(0.0000,0.1508,0.1560) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3714,4.4607,-0.6096) mvmt=(-0.3251,0.1447,0.1497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3714,4.4607,-0.6096) mvmt=(-0.3251,0.1447,0.1497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.871,7.039,93.410) lpos=(-11.371,4.461,-0.610) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.3714,4.4607,-0.6096) mvmt=(-0.3251,0.1447,0.1497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5464,0.3126,1.0156) mvmt=(-0.3251,0.1447,0.1497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5714,0.0726,0.9106) mvmt=(-0.3251,0.1447,0.1497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5714,-2.1386,-0.4394) mvmt=(-0.3251,0.1447,0.1497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3714,4.4607,-0.5896) mvmt=(-0.3251,0.1447,0.1497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.871,7.039,93.410) lpos=(-11.371,4.461,-0.610) lprev=(-11.046,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4607,-0.6096) mvmt=(0.0000,0.1447,0.1497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.039,93.410) lpos=(-11.046,4.461,-0.610) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4607,-0.6096) mvmt=(0.0000,0.1447,0.1497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3126,1.0156) mvmt=(0.0000,0.1447,0.1497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.0726,0.9106) mvmt=(0.0000,0.1447,0.1497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.1386,-0.4394) mvmt=(-0.0000,0.1447,0.1497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4607,-0.5896) mvmt=(0.0000,0.1447,0.1497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4607,-0.6096) mvmt=(0.0000,0.1447,0.1497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.039,93.410) lpos=(-11.046,4.461,-0.610) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4607,-0.6096) mvmt=(0.0000,0.1447,0.1497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3126,1.0156) mvmt=(0.0000,0.1447,0.1497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.0726,0.9106) mvmt=(0.0000,0.1447,0.1497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.1386,-0.4394) mvmt=(-0.0000,0.1447,0.1497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4607,-0.5896) mvmt=(0.0000,0.1447,0.1497) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3740,4.4618,-0.6084) mvmt=(-0.3277,0.1458,0.1509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3740,4.4618,-0.6084) mvmt=(-0.3277,0.1458,0.1509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.874,7.038,93.412) lpos=(-11.374,4.462,-0.608) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.3740,4.4618,-0.6084) mvmt=(-0.3277,0.1458,0.1509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5490,0.3138,1.0168) mvmt=(-0.3277,0.1458,0.1509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5740,0.0738,0.9118) mvmt=(-0.3277,0.1458,0.1509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5740,-2.1375,-0.4382) mvmt=(-0.3277,0.1458,0.1509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3740,4.4618,-0.5884) mvmt=(-0.3277,0.1458,0.1509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.874,7.038,93.412) lpos=(-11.374,4.462,-0.608) lprev=(-11.046,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4618,-0.6084) mvmt=(0.0000,0.1458,0.1509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.038,93.412) lpos=(-11.046,4.462,-0.608) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4618,-0.6084) mvmt=(0.0000,0.1458,0.1509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3138,1.0168) mvmt=(0.0000,0.1458,0.1509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.0738,0.9118) mvmt=(0.0000,0.1458,0.1509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.1375,-0.4382) mvmt=(-0.0000,0.1458,0.1509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4618,-0.5884) mvmt=(0.0000,0.1458,0.1509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4618,-0.6084) mvmt=(0.0000,0.1458,0.1509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.038,93.412) lpos=(-11.046,4.462,-0.608) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4618,-0.6084) mvmt=(0.0000,0.1458,0.1509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3138,1.0168) mvmt=(0.0000,0.1458,0.1509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.0738,0.9118) mvmt=(0.0000,0.1458,0.1509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.1375,-0.4382) mvmt=(-0.0000,0.1458,0.1509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4618,-0.5884) mvmt=(0.0000,0.1458,0.1509) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3517,4.4641,-0.6060) mvmt=(-0.3054,0.1482,0.1533) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3517,4.4641,-0.6060) mvmt=(-0.3054,0.1482,0.1533) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.852,7.036,93.414) lpos=(-11.352,4.464,-0.606) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.3517,4.4641,-0.6060) mvmt=(-0.3054,0.1482,0.1533) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5267,0.3161,1.0192) mvmt=(-0.3054,0.1482,0.1533) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5517,0.0761,0.9142) mvmt=(-0.3054,0.1482,0.1533) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5517,-2.1352,-0.4358) mvmt=(-0.3054,0.1482,0.1533) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3517,4.4641,-0.5860) mvmt=(-0.3054,0.1482,0.1533) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.852,7.036,93.414) lpos=(-11.352,4.464,-0.606) lprev=(-11.046,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4641,-0.6060) mvmt=(0.0000,0.1482,0.1533) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.036,93.414) lpos=(-11.046,4.464,-0.606) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4641,-0.6060) mvmt=(0.0000,0.1482,0.1533) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3161,1.0192) mvmt=(0.0000,0.1482,0.1533) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.0761,0.9142) mvmt=(0.0000,0.1482,0.1533) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.1352,-0.4358) mvmt=(-0.0000,0.1482,0.1533) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4641,-0.5860) mvmt=(0.0000,0.1482,0.1533) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4641,-0.6060) mvmt=(0.0000,0.1482,0.1533) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.036,93.414) lpos=(-11.046,4.464,-0.606) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4641,-0.6060) mvmt=(0.0000,0.1482,0.1533) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3161,1.0192) mvmt=(0.0000,0.1482,0.1533) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.0761,0.9142) mvmt=(0.0000,0.1482,0.1533) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.1352,-0.4358) mvmt=(-0.0000,0.1482,0.1533) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4641,-0.5860) mvmt=(0.0000,0.1482,0.1533) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3278,4.4787,-0.5909) mvmt=(-0.2815,0.1628,0.1684) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3278,4.4787,-0.5909) mvmt=(-0.2815,0.1628,0.1684) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.828,7.021,93.429) lpos=(-11.328,4.479,-0.591) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.3278,4.4787,-0.5909) mvmt=(-0.2815,0.1628,0.1684) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.5028,0.3307,1.0343) mvmt=(-0.2815,0.1628,0.1684) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5278,0.0907,0.9293) mvmt=(-0.2815,0.1628,0.1684) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5278,-2.1206,-0.4207) mvmt=(-0.2815,0.1628,0.1684) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3278,4.4787,-0.5709) mvmt=(-0.2815,0.1628,0.1684) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.828,7.021,93.429) lpos=(-11.328,4.479,-0.591) lprev=(-11.046,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4787,-0.5909) mvmt=(0.0000,0.1628,0.1684) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.021,93.429) lpos=(-11.046,4.479,-0.591) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4787,-0.5909) mvmt=(0.0000,0.1628,0.1684) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3307,1.0343) mvmt=(0.0000,0.1628,0.1684) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.0907,0.9293) mvmt=(0.0000,0.1628,0.1684) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.1206,-0.4207) mvmt=(-0.0000,0.1628,0.1684) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4787,-0.5709) mvmt=(0.0000,0.1628,0.1684) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4787,-0.5909) mvmt=(0.0000,0.1628,0.1684) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.021,93.429) lpos=(-11.046,4.479,-0.591) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4787,-0.5909) mvmt=(0.0000,0.1628,0.1684) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3307,1.0343) mvmt=(0.0000,0.1628,0.1684) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.0907,0.9293) mvmt=(0.0000,0.1628,0.1684) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.1206,-0.4207) mvmt=(-0.0000,0.1628,0.1684) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4787,-0.5709) mvmt=(0.0000,0.1628,0.1684) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2798,4.4755,-0.5943) mvmt=(-0.2336,0.1595,0.1650) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2798,4.4755,-0.5943) mvmt=(-0.2336,0.1595,0.1650) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.780,7.024,93.426) lpos=(-11.280,4.476,-0.594) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2798,4.4755,-0.5943) mvmt=(-0.2336,0.1595,0.1650) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4548,0.3275,1.0309) mvmt=(-0.2336,0.1595,0.1650) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4798,0.0875,0.9259) mvmt=(-0.2336,0.1595,0.1650) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4798,-2.1238,-0.4241) mvmt=(-0.2336,0.1595,0.1650) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2798,4.4755,-0.5743) mvmt=(-0.2336,0.1595,0.1650) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.780,7.024,93.426) lpos=(-11.280,4.476,-0.594) lprev=(-11.046,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4755,-0.5943) mvmt=(0.0000,0.1595,0.1650) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.024,93.426) lpos=(-11.046,4.476,-0.594) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4755,-0.5943) mvmt=(0.0000,0.1595,0.1650) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3275,1.0309) mvmt=(0.0000,0.1595,0.1650) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.0875,0.9259) mvmt=(0.0000,0.1595,0.1650) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.1238,-0.4241) mvmt=(-0.0000,0.1595,0.1650) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4755,-0.5743) mvmt=(0.0000,0.1595,0.1650) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4755,-0.5943) mvmt=(0.0000,0.1595,0.1650) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.024,93.426) lpos=(-11.046,4.476,-0.594) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4755,-0.5943) mvmt=(0.0000,0.1595,0.1650) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3275,1.0309) mvmt=(0.0000,0.1595,0.1650) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.0875,0.9259) mvmt=(0.0000,0.1595,0.1650) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.1238,-0.4241) mvmt=(-0.0000,0.1595,0.1650) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4755,-0.5743) mvmt=(0.0000,0.1595,0.1650) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2560,4.4875,-0.5819) mvmt=(-0.2097,0.1715,0.1774) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2560,4.4875,-0.5819) mvmt=(-0.2097,0.1715,0.1774) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.756,7.012,93.438) lpos=(-11.256,4.488,-0.582) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2560,4.4875,-0.5819) mvmt=(-0.2097,0.1715,0.1774) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4310,0.3395,1.0433) mvmt=(-0.2097,0.1715,0.1774) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4560,0.0995,0.9383) mvmt=(-0.2097,0.1715,0.1774) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4560,-2.1118,-0.4117) mvmt=(-0.2097,0.1715,0.1774) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2560,4.4875,-0.5619) mvmt=(-0.2097,0.1715,0.1774) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.756,7.012,93.438) lpos=(-11.256,4.488,-0.582) lprev=(-11.046,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4875,-0.5819) mvmt=(0.0000,0.1715,0.1774) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.012,93.438) lpos=(-11.046,4.488,-0.582) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4875,-0.5819) mvmt=(0.0000,0.1715,0.1774) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3395,1.0433) mvmt=(0.0000,0.1715,0.1774) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.0995,0.9383) mvmt=(0.0000,0.1715,0.1774) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.1118,-0.4117) mvmt=(-0.0000,0.1715,0.1774) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4875,-0.5619) mvmt=(0.0000,0.1715,0.1774) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4875,-0.5819) mvmt=(0.0000,0.1715,0.1774) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.012,93.438) lpos=(-11.046,4.488,-0.582) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.4875,-0.5819) mvmt=(0.0000,0.1715,0.1774) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3395,1.0433) mvmt=(0.0000,0.1715,0.1774) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.0995,0.9383) mvmt=(0.0000,0.1715,0.1774) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.1118,-0.4117) mvmt=(-0.0000,0.1715,0.1774) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.4875,-0.5619) mvmt=(0.0000,0.1715,0.1774) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2363,4.5080,-0.5606) mvmt=(-0.1900,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2363,4.5080,-0.5606) mvmt=(-0.1900,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.736,6.992,93.459) lpos=(-11.236,4.508,-0.561) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2363,4.5080,-0.5606) mvmt=(-0.1900,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4113,0.3600,1.0646) mvmt=(-0.1900,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4363,0.1200,0.9596) mvmt=(-0.1900,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4363,-2.0913,-0.3904) mvmt=(-0.1900,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2363,4.5080,-0.5406) mvmt=(-0.1900,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.736,6.992,93.459) lpos=(-11.236,4.508,-0.561) lprev=(-11.046,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.5080,-0.5606) mvmt=(0.0000,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,6.992,93.459) lpos=(-11.046,4.508,-0.561) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.5080,-0.5606) mvmt=(0.0000,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3600,1.0646) mvmt=(0.0000,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.1200,0.9596) mvmt=(0.0000,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.0913,-0.3904) mvmt=(-0.0000,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.5080,-0.5406) mvmt=(0.0000,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.5080,-0.5606) mvmt=(0.0000,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,6.992,93.459) lpos=(-11.046,4.508,-0.561) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.5080,-0.5606) mvmt=(0.0000,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3600,1.0646) mvmt=(0.0000,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.1200,0.9596) mvmt=(0.0000,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.0913,-0.3904) mvmt=(-0.0000,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.5080,-0.5406) mvmt=(0.0000,0.1920,0.1987) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1953,4.5059,-0.5628) mvmt=(-0.1490,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1953,4.5059,-0.5628) mvmt=(-0.1490,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.695,6.994,93.457) lpos=(-11.195,4.506,-0.563) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1953,4.5059,-0.5628) mvmt=(-0.1490,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3703,0.3578,1.0624) mvmt=(-0.1490,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3953,0.1178,0.9574) mvmt=(-0.1490,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3953,-2.0934,-0.3926) mvmt=(-0.1490,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1953,4.5059,-0.5428) mvmt=(-0.1490,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.695,6.994,93.457) lpos=(-11.195,4.506,-0.563) lprev=(-11.046,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.5059,-0.5628) mvmt=(0.0000,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,6.994,93.457) lpos=(-11.046,4.506,-0.563) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.5059,-0.5628) mvmt=(0.0000,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3578,1.0624) mvmt=(0.0000,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.1178,0.9574) mvmt=(0.0000,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.0934,-0.3926) mvmt=(-0.0000,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.5059,-0.5428) mvmt=(0.0000,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.5059,-0.5628) mvmt=(0.0000,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,6.994,93.457) lpos=(-11.046,4.506,-0.563) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.5059,-0.5628) mvmt=(0.0000,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3578,1.0624) mvmt=(0.0000,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.1178,0.9574) mvmt=(0.0000,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.0934,-0.3926) mvmt=(-0.0000,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.5059,-0.5428) mvmt=(0.0000,0.1899,0.1965) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1624,4.5125,-0.5560) mvmt=(-0.1162,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1624,4.5125,-0.5560) mvmt=(-0.1162,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.662,6.988,93.464) lpos=(-11.162,4.512,-0.556) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1624,4.5125,-0.5560) mvmt=(-0.1162,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3374,0.3644,1.0692) mvmt=(-0.1162,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3624,0.1244,0.9642) mvmt=(-0.1162,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3624,-2.0868,-0.3858) mvmt=(-0.1162,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1624,4.5125,-0.5360) mvmt=(-0.1162,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.662,6.988,93.464) lpos=(-11.162,4.512,-0.556) lprev=(-11.046,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.5125,-0.5560) mvmt=(0.0000,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,6.988,93.464) lpos=(-11.046,4.512,-0.556) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.5125,-0.5560) mvmt=(0.0000,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3644,1.0692) mvmt=(0.0000,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.1244,0.9642) mvmt=(0.0000,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.0868,-0.3858) mvmt=(-0.0000,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.5125,-0.5360) mvmt=(0.0000,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.5125,-0.5560) mvmt=(0.0000,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,6.988,93.464) lpos=(-11.046,4.512,-0.556) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.5125,-0.5560) mvmt=(0.0000,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3644,1.0692) mvmt=(0.0000,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.1244,0.9642) mvmt=(0.0000,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.0868,-0.3858) mvmt=(-0.0000,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.5125,-0.5360) mvmt=(0.0000,0.1965,0.2033) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1273,4.5143,-0.5542) mvmt=(-0.0811,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1273,4.5143,-0.5542) mvmt=(-0.0811,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.627,6.986,93.466) lpos=(-11.127,4.514,-0.554) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1273,4.5143,-0.5542) mvmt=(-0.0811,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3023,0.3662,1.0710) mvmt=(-0.0811,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3273,0.1262,0.9660) mvmt=(-0.0811,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3273,-2.0851,-0.3840) mvmt=(-0.0811,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1273,4.5143,-0.5342) mvmt=(-0.0811,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.627,6.986,93.466) lpos=(-11.127,4.514,-0.554) lprev=(-11.046,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.5142,-0.5542) mvmt=(0.0000,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,6.986,93.466) lpos=(-11.046,4.514,-0.554) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.5142,-0.5542) mvmt=(0.0000,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3662,1.0710) mvmt=(0.0000,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.1262,0.9660) mvmt=(0.0000,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.0851,-0.3840) mvmt=(-0.0000,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.5142,-0.5342) mvmt=(0.0000,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.5142,-0.5542) mvmt=(0.0000,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,6.986,93.466) lpos=(-11.046,4.514,-0.554) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0463,4.5142,-0.5542) mvmt=(0.0000,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2213,0.3662,1.0710) mvmt=(0.0000,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,0.1262,0.9660) mvmt=(0.0000,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2463,-2.0851,-0.3840) mvmt=(-0.0000,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0463,4.5142,-0.5342) mvmt=(0.0000,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0934,4.5252,-0.5429) mvmt=(-0.0471,0.2092,0.2164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.593,6.975,93.477) lpos=(-11.093,4.525,-0.543) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0934,4.5252,-0.5429) mvmt=(-0.0471,0.2092,0.2164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2684,0.3771,1.0823) mvmt=(-0.0471,0.2092,0.2164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2934,0.1371,0.9773) mvmt=(-0.0471,0.2092,0.2164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2934,-2.0741,-0.3727) mvmt=(-0.0471,0.2092,0.2164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0934,4.5252,-0.5229) mvmt=(-0.0471,0.2092,0.2164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0934,4.5252,-0.5429) mvmt=(-0.0471,0.2092,0.2164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.593,6.975,93.477) lpos=(-11.093,4.525,-0.543) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0934,4.5252,-0.5429) mvmt=(-0.0471,0.2092,0.2164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2684,0.3771,1.0823) mvmt=(-0.0471,0.2092,0.2164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2934,0.1371,0.9773) mvmt=(-0.0471,0.2092,0.2164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2934,-2.0741,-0.3727) mvmt=(-0.0471,0.2092,0.2164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0934,4.5252,-0.5229) mvmt=(-0.0471,0.2092,0.2164) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0934,4.3160,-0.7593) mvmt=(-0.0471,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.593,7.184,93.261) lpos=(-11.093,4.316,-0.759) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2684,0.1679,0.8659) mvmt=(-0.0471,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2934,-0.0721,0.7609) mvmt=(-0.0471,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2934,-2.2833,-0.5891) mvmt=(-0.0471,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0934,4.3160,-0.7393) mvmt=(-0.0471,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0934,4.3160,-1.5093) mvmt=(-0.0471,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.593,7.184,92.511) lpos=(-11.093,4.316,-1.509) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2684,0.1679,0.1159) mvmt=(-0.0471,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2934,-0.0721,0.0109) mvmt=(-0.0471,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2934,-0.0721,0.0109) out=(-0.2934,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0934,4.3160,-0.7593) mvmt=(-0.0471,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.593,7.184,93.261) lpos=(-11.093,4.316,-0.759) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2684,0.1679,0.8659) mvmt=(-0.0471,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2934,-0.0721,0.7609) mvmt=(-0.0471,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2934,-2.2833,-0.5891) mvmt=(-0.0471,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0934,4.3160,-0.7393) mvmt=(-0.0471,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1031,4.5243,-0.5438) mvmt=(-0.0097,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.603,6.976,93.476) lpos=(-11.103,4.524,-0.544) lprev=(-11.093,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1031,4.5243,-0.5438) mvmt=(-0.0097,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2781,0.3762,1.0814) mvmt=(-0.0097,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3031,0.1362,0.9764) mvmt=(-0.0097,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3031,-2.0750,-0.3736) mvmt=(-0.0097,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1031,4.5243,-0.5238) mvmt=(-0.0097,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1031,4.5243,-0.5438) mvmt=(-0.0097,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.603,6.976,93.476) lpos=(-11.103,4.524,-0.544) lprev=(-11.093,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1031,4.5243,-0.5438) mvmt=(-0.0097,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2781,0.3762,1.0814) mvmt=(-0.0097,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3031,0.1362,0.9764) mvmt=(-0.0097,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3031,-2.0750,-0.3736) mvmt=(-0.0097,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1031,4.5243,-0.5238) mvmt=(-0.0097,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1031,4.3160,-0.7593) mvmt=(-0.0097,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.603,7.184,93.261) lpos=(-11.103,4.316,-0.759) lprev=(-11.093,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2781,0.1679,0.8659) mvmt=(-0.0097,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3031,-0.0721,0.7609) mvmt=(-0.0097,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3031,-2.2833,-0.5891) mvmt=(-0.0097,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1031,4.3160,-0.7393) mvmt=(-0.0097,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1031,4.3160,-1.5093) mvmt=(-0.0097,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.603,7.184,92.511) lpos=(-11.103,4.316,-1.509) lprev=(-11.093,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2781,0.1679,0.1159) mvmt=(-0.0097,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3031,-0.0721,0.0109) mvmt=(-0.0097,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3031,-0.0721,0.0109) out=(-0.3031,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.1031,4.3160,-0.7593) mvmt=(-0.0097,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.603,7.184,93.261) lpos=(-11.103,4.316,-0.759) lprev=(-11.093,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2781,0.1679,0.8659) mvmt=(-0.0097,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3031,-0.0721,0.7609) mvmt=(-0.0097,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3031,-2.2833,-0.5891) mvmt=(-0.0097,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1031,4.3160,-0.7393) mvmt=(-0.0097,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0753,4.5256,-0.5425) mvmt=(0.0278,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.575,6.974,93.478) lpos=(-11.075,4.526,-0.542) lprev=(-11.103,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0753,4.5256,-0.5425) mvmt=(0.0278,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2503,0.3775,1.0827) mvmt=(0.0278,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2753,0.1375,0.9777) mvmt=(0.0278,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2753,-2.0737,-0.3723) mvmt=(0.0278,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0753,4.5256,-0.5225) mvmt=(0.0278,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0753,4.5256,-0.5425) mvmt=(0.0278,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.575,6.974,93.478) lpos=(-11.075,4.526,-0.542) lprev=(-11.103,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0753,4.5256,-0.5425) mvmt=(0.0278,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2503,0.3775,1.0827) mvmt=(0.0278,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2753,0.1375,0.9777) mvmt=(0.0278,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2753,-2.0737,-0.3723) mvmt=(0.0278,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0753,4.5256,-0.5225) mvmt=(0.0278,0.2096,0.2168) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0753,4.3160,-0.7593) mvmt=(0.0278,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.575,7.184,93.261) lpos=(-11.075,4.316,-0.759) lprev=(-11.103,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2503,0.1679,0.8659) mvmt=(0.0278,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2753,-0.0721,0.7609) mvmt=(0.0278,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2753,-2.2833,-0.5891) mvmt=(0.0278,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0753,4.3160,-0.7393) mvmt=(0.0278,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0753,4.3160,-1.5093) mvmt=(0.0278,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.575,7.184,92.511) lpos=(-11.075,4.316,-1.509) lprev=(-11.103,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2503,0.1679,0.1159) mvmt=(0.0278,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2753,-0.0721,0.0109) mvmt=(0.0278,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2753,-0.0721,0.0109) out=(-0.2753,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0753,4.3160,-0.7593) mvmt=(0.0278,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.575,7.184,93.261) lpos=(-11.075,4.316,-0.759) lprev=(-11.103,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2503,0.1679,0.8659) mvmt=(0.0278,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2753,-0.0721,0.7609) mvmt=(0.0278,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2753,-2.2833,-0.5891) mvmt=(0.0278,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0753,4.3160,-0.7393) mvmt=(0.0278,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0124,4.5192,-0.5490) mvmt=(0.0629,0.2032,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.512,6.981,93.471) lpos=(-11.012,4.519,-0.549) lprev=(-11.075,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0124,4.5192,-0.5490) mvmt=(0.0629,0.2032,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1874,0.3712,1.0761) mvmt=(0.0629,0.2032,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2124,0.1312,0.9712) mvmt=(0.0629,0.2032,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2124,-2.0801,-0.3789) mvmt=(0.0629,0.2032,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0124,4.5192,-0.5291) mvmt=(0.0629,0.2032,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0124,4.5192,-0.5490) mvmt=(0.0629,0.2032,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.512,6.981,93.471) lpos=(-11.012,4.519,-0.549) lprev=(-11.075,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0124,4.5192,-0.5490) mvmt=(0.0629,0.2032,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1874,0.3712,1.0761) mvmt=(0.0629,0.2032,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2124,0.1312,0.9712) mvmt=(0.0629,0.2032,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2124,-2.0801,-0.3789) mvmt=(0.0629,0.2032,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0124,4.5192,-0.5291) mvmt=(0.0629,0.2032,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0124,4.3160,-0.7593) mvmt=(0.0629,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.512,7.184,93.261) lpos=(-11.012,4.316,-0.759) lprev=(-11.075,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1874,0.1679,0.8659) mvmt=(0.0629,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2124,-0.0721,0.7609) mvmt=(0.0629,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2124,-2.2833,-0.5891) mvmt=(0.0629,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0124,4.3160,-0.7393) mvmt=(0.0629,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0124,4.3160,-1.5093) mvmt=(0.0629,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.512,7.184,92.511) lpos=(-11.012,4.316,-1.509) lprev=(-11.075,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1874,0.1679,0.1159) mvmt=(0.0629,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2124,-0.0721,0.0109) mvmt=(0.0629,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2124,-0.0721,0.0109) out=(-0.2124,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0124,4.3160,-0.7593) mvmt=(0.0629,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.512,7.184,93.261) lpos=(-11.012,4.316,-0.759) lprev=(-11.075,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1874,0.1679,0.8659) mvmt=(0.0629,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2124,-0.0721,0.7609) mvmt=(0.0629,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2124,-2.2833,-0.5891) mvmt=(0.0629,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0124,4.3160,-0.7393) mvmt=(0.0629,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9142,4.5157,-0.5527) mvmt=(0.0981,0.1997,0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.414,6.984,93.467) lpos=(-10.914,4.516,-0.553) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9142,4.5157,-0.5527) mvmt=(0.0981,0.1997,0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0892,0.3677,1.0725) mvmt=(0.0981,0.1997,0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1142,0.1277,0.9675) mvmt=(0.0981,0.1997,0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1142,-2.0836,-0.3825) mvmt=(0.0981,0.1997,0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9142,4.5157,-0.5327) mvmt=(0.0981,0.1997,0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9142,4.5157,-0.5527) mvmt=(0.0981,0.1997,0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.414,6.984,93.467) lpos=(-10.914,4.516,-0.553) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9142,4.5157,-0.5527) mvmt=(0.0981,0.1997,0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0892,0.3677,1.0725) mvmt=(0.0981,0.1997,0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1142,0.1277,0.9675) mvmt=(0.0981,0.1997,0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1142,-2.0836,-0.3825) mvmt=(0.0981,0.1997,0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9142,4.5157,-0.5327) mvmt=(0.0981,0.1997,0.2066) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9142,4.3160,-0.7593) mvmt=(0.0981,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.414,7.184,93.261) lpos=(-10.914,4.316,-0.759) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0892,0.1679,0.8659) mvmt=(0.0981,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1142,-0.0721,0.7609) mvmt=(0.0981,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1142,-2.2833,-0.5891) mvmt=(0.0981,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9142,4.3160,-0.7393) mvmt=(0.0981,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9142,4.3160,-1.5093) mvmt=(0.0981,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.414,7.184,92.511) lpos=(-10.914,4.316,-1.509) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0892,0.1679,0.1159) mvmt=(0.0981,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1142,-0.0721,0.0109) mvmt=(0.0981,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1142,-0.0721,0.0109) out=(-0.1142,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.9142,4.3160,-0.7593) mvmt=(0.0981,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.414,7.184,93.261) lpos=(-10.914,4.316,-0.759) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0892,0.1679,0.8659) mvmt=(0.0981,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1142,-0.0721,0.7609) mvmt=(0.0981,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1142,-2.2833,-0.5891) mvmt=(0.0981,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9142,4.3160,-0.7393) mvmt=(0.0981,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7894,4.5020,-0.5669) mvmt=(0.1248,0.1860,0.1924) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.289,6.998,93.453) lpos=(-10.789,4.502,-0.567) lprev=(-10.914,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7894,4.5020,-0.5669) mvmt=(0.1248,0.1860,0.1924) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9644,0.3539,1.0583) mvmt=(0.1248,0.1860,0.1924) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0106,0.1139,0.9533) mvmt=(0.1248,0.1860,0.1924) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0106,-2.0973,-0.3967) mvmt=(0.1248,0.1860,0.1924) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7894,4.5020,-0.5469) mvmt=(0.1248,0.1860,0.1924) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7894,4.5020,-0.5669) mvmt=(0.1248,0.1860,0.1924) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.289,6.998,93.453) lpos=(-10.789,4.502,-0.567) lprev=(-10.914,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7894,4.5020,-0.5669) mvmt=(0.1248,0.1860,0.1924) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9644,0.3539,1.0583) mvmt=(0.1248,0.1860,0.1924) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0106,0.1139,0.9533) mvmt=(0.1248,0.1860,0.1924) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0106,-2.0973,-0.3967) mvmt=(0.1248,0.1860,0.1924) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7894,4.5020,-0.5469) mvmt=(0.1248,0.1860,0.1924) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7894,4.3160,-0.7593) mvmt=(0.1248,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.289,7.184,93.261) lpos=(-10.789,4.316,-0.759) lprev=(-10.914,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9644,0.1679,0.8659) mvmt=(0.1248,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0106,-0.0721,0.7609) mvmt=(0.1248,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0106,-2.2833,-0.5891) mvmt=(0.1248,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7894,4.3160,-0.7393) mvmt=(0.1248,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7894,4.3160,-1.5093) mvmt=(0.1248,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.289,7.184,92.511) lpos=(-10.789,4.316,-1.509) lprev=(-10.914,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9644,0.1679,0.1159) mvmt=(0.1248,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0106,-0.0721,0.0109) mvmt=(0.1248,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0106,-0.0721,0.0109) out=(0.0106,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.7894,4.3160,-0.7593) mvmt=(0.1248,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.289,7.184,93.261) lpos=(-10.789,4.316,-0.759) lprev=(-10.914,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9644,0.1679,0.8659) mvmt=(0.1248,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0106,-0.0721,0.7609) mvmt=(0.1248,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0106,-2.2833,-0.5891) mvmt=(0.1248,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7894,4.3160,-0.7393) mvmt=(0.1248,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6492,4.4994,-0.5695) mvmt=(0.1402,0.1834,0.1898) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.149,7.001,93.450) lpos=(-10.649,4.499,-0.570) lprev=(-10.789,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6492,4.4994,-0.5695) mvmt=(0.1402,0.1834,0.1898) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8242,0.3514,1.0557) mvmt=(0.1402,0.1834,0.1898) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1508,0.1114,0.9507) mvmt=(0.1402,0.1834,0.1898) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1508,-2.0999,-0.3993) mvmt=(0.1402,0.1834,0.1898) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6492,4.4994,-0.5495) mvmt=(0.1402,0.1834,0.1898) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6492,4.4994,-0.5695) mvmt=(0.1402,0.1834,0.1898) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.149,7.001,93.450) lpos=(-10.649,4.499,-0.570) lprev=(-10.789,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6492,4.4994,-0.5695) mvmt=(0.1402,0.1834,0.1898) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8242,0.3514,1.0557) mvmt=(0.1402,0.1834,0.1898) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1508,0.1114,0.9507) mvmt=(0.1402,0.1834,0.1898) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1508,-2.0999,-0.3993) mvmt=(0.1402,0.1834,0.1898) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6492,4.4994,-0.5495) mvmt=(0.1402,0.1834,0.1898) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6492,4.3160,-0.7593) mvmt=(0.1402,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.149,7.184,93.261) lpos=(-10.649,4.316,-0.759) lprev=(-10.789,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8242,0.1679,0.8659) mvmt=(0.1402,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1508,-0.0721,0.7609) mvmt=(0.1402,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1508,-2.2833,-0.5891) mvmt=(0.1402,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6492,4.3160,-0.7393) mvmt=(0.1402,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6492,4.3160,-1.5093) mvmt=(0.1402,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.149,7.184,92.511) lpos=(-10.649,4.316,-1.509) lprev=(-10.789,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8242,0.1679,0.1159) mvmt=(0.1402,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1508,-0.0721,0.0109) mvmt=(0.1402,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1508,-0.0721,0.0109) out=(0.1508,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6492,4.3160,-0.7593) mvmt=(0.1402,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.149,7.184,93.261) lpos=(-10.649,4.316,-0.759) lprev=(-10.789,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8242,0.1679,0.8659) mvmt=(0.1402,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1508,-0.0721,0.7609) mvmt=(0.1402,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1508,-2.2833,-0.5891) mvmt=(0.1402,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6492,4.3160,-0.7393) mvmt=(0.1402,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5139,4.5175,-0.5508) mvmt=(0.1353,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.014,6.982,93.469) lpos=(-10.514,4.518,-0.551) lprev=(-10.649,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5139,4.5175,-0.5508) mvmt=(0.1353,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6889,0.3695,1.0744) mvmt=(0.1353,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2861,0.1295,0.9694) mvmt=(0.1353,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2861,-2.0818,-0.3806) mvmt=(0.1353,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2630,-2.8560,2.4737) mvmt=(-0.1323,0.2036,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5139,4.5175,-0.5308) mvmt=(0.1353,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5139,4.5175,-0.5508) mvmt=(0.1353,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.014,6.982,93.469) lpos=(-10.514,4.518,-0.551) lprev=(-10.649,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5139,4.5175,-0.5508) mvmt=(0.1353,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6889,0.3695,1.0744) mvmt=(0.1353,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2861,0.1295,0.9694) mvmt=(0.1353,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2861,-2.0818,-0.3806) mvmt=(0.1353,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2630,-2.8560,2.4737) mvmt=(-0.1323,0.2036,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5139,4.5175,-0.5308) mvmt=(0.1353,0.2016,0.2085) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5139,4.3160,-0.7593) mvmt=(0.1353,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.014,7.184,93.261) lpos=(-10.514,4.316,-0.759) lprev=(-10.649,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6889,0.1679,0.8659) mvmt=(0.1353,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2861,-0.0721,0.7609) mvmt=(0.1353,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2861,-2.2833,-0.5891) mvmt=(0.1353,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5139,4.3160,-0.7393) mvmt=(0.1353,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5139,4.3160,-1.5093) mvmt=(0.1353,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.014,7.184,92.511) lpos=(-10.514,4.316,-1.509) lprev=(-10.649,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6889,0.1679,0.1159) mvmt=(0.1353,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2861,-0.0721,0.0109) mvmt=(0.1353,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2861,-0.0721,0.0109) out=(0.2861,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.5139,4.3160,-0.7593) mvmt=(0.1353,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.014,7.184,93.261) lpos=(-10.514,4.316,-0.759) lprev=(-10.649,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6889,0.1679,0.8659) mvmt=(0.1353,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2861,-0.0721,0.7609) mvmt=(0.1353,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2861,-2.2833,-0.5891) mvmt=(0.1353,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5139,4.3160,-0.7393) mvmt=(0.1353,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4173,4.5160,-0.5524) mvmt=(0.0966,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4173,4.5160,-0.5524) mvmt=(0.0966,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.917,6.984,93.468) lpos=(-10.417,4.516,-0.552) lprev=(-10.514,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4173,4.5160,-0.5524) mvmt=(0.0966,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5923,0.3680,1.0728) mvmt=(0.0966,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3827,0.1280,0.9678) mvmt=(0.0966,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3827,-2.0833,-0.3822) mvmt=(0.0966,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3023,-2.7678,2.4721) mvmt=(-0.1461,0.1673,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4173,4.5160,-0.5324) mvmt=(0.0966,0.2000,0.2069) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.917,6.984,93.468) lpos=(-10.417,4.516,-0.552) lprev=(-10.514,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4173,4.3160,-0.7593) mvmt=(0.0966,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.917,7.184,93.261) lpos=(-10.417,4.316,-0.759) lprev=(-10.514,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5923,0.1679,0.8659) mvmt=(0.0966,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3827,-0.0721,0.7609) mvmt=(0.0966,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3827,-2.2833,-0.5891) mvmt=(0.0966,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4173,4.3160,-0.7393) mvmt=(0.0966,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4173,4.3160,-1.5093) mvmt=(0.0966,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.917,7.184,92.511) lpos=(-10.417,4.316,-1.509) lprev=(-10.514,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5923,0.1679,0.1159) mvmt=(0.0966,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3827,-0.0721,0.0109) mvmt=(0.0966,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3827,-0.0721,0.0109) out=(0.3827,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4173,4.3160,-0.7593) mvmt=(0.0966,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.917,7.184,93.261) lpos=(-10.417,4.316,-0.759) lprev=(-10.514,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5923,0.1679,0.8659) mvmt=(0.0966,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3827,-0.0721,0.7609) mvmt=(0.0966,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3827,-2.2833,-0.5891) mvmt=(0.0966,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4173,4.3160,-0.7393) mvmt=(0.0966,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3555,4.5243,-0.5438) mvmt=(0.0618,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3555,4.5243,-0.5438) mvmt=(0.0618,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.855,6.976,93.476) lpos=(-10.355,4.524,-0.544) lprev=(-10.417,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3555,4.5243,-0.5438) mvmt=(0.0618,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5305,0.3762,1.0814) mvmt=(0.0618,0.2083,0.2155) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5305,0.3762,1.0814) out=(-0.5305,0.3762,1.4051) delta=(0.0000,0.0000,0.3237) deltaMag=0.3237 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4605 dpPos=0.2511 dpMove=-0.4243 iDist=0.5395 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3555,4.5243,-0.2201) mvmt=(0.0618,0.2083,0.5392) collide=False insertType=0 objState=0x303 winterp=0.4605 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.855,6.976,93.800) lpos=(-10.355,4.524,-0.220) lprev=(-10.417,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3555,4.5243,-0.2201) mvmt=(0.0618,0.2083,0.5392) collide=False insertType=0 objState=0x303 winterp=0.4605 return=-1 +[push-back] site=adjust_sphere in=(-10.3555,4.5243,-0.2201) out=(-10.3555,4.5243,-0.2201) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=0.4605->0.4605 dpPos=-0.2201 dpMove=-0.2763 iDist=2.5337 applied=False +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.3555,4.5243,-0.2201) mvmt=(0.0618,0.2083,0.5392) collide=False insertType=0 objState=0x303 winterp=0.4605 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5305,0.3762,1.4051) mvmt=(0.0618,0.2083,0.5392) collide=False insertType=0 objState=0x303 winterp=0.4605 return=-1 +[push-back-disp] site=dispatch center=(0.4445,0.1362,1.3001) mvmt=(0.0618,0.2083,0.5392) collide=False insertType=0 objState=0x303 winterp=0.4605 return=-1 +[push-back-disp] site=dispatch center=(0.4445,-2.0750,-0.0499) mvmt=(0.0618,0.2083,0.5392) collide=False insertType=0 objState=0x303 winterp=0.4605 return=-1 +[push-back-disp] site=dispatch center=(0.3189,-2.7077,2.8044) mvmt=(-0.1673,0.1386,0.5392) collide=False insertType=0 objState=0x303 winterp=0.4605 return=-1 +[push-back-disp] site=dispatch center=(-10.3555,4.5243,-0.2001) mvmt=(0.0618,0.2083,0.5392) collide=False insertType=0 objState=0x303 winterp=0.4605 return=-1 +[push-back-disp] site=dispatch center=(-10.3555,4.5243,-0.2201) mvmt=(0.0618,0.2083,0.5392) collide=False insertType=1 objState=0x303 winterp=0.4605 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.855,6.976,93.800) lpos=(-10.355,4.524,-0.220) lprev=(-10.417,4.316,-0.759) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.855,6.976,93.476) lpos=(-10.355,4.524,-0.544) lprev=(-10.417,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3555,4.3160,-0.7593) mvmt=(0.0618,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4605 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.855,7.184,93.261) lpos=(-10.355,4.316,-0.759) lprev=(-10.417,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5305,0.1679,0.8659) mvmt=(0.0618,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4605 return=-1 +[push-back-disp] site=dispatch center=(-10.3555,4.3160,-0.7593) mvmt=(0.0618,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.855,7.184,93.261) lpos=(-10.355,4.316,-0.759) lprev=(-10.417,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5305,0.1679,0.8659) mvmt=(0.0618,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5305,0.1679,0.8659) out=(-0.5305,0.1679,1.1968) delta=(0.0000,0.0000,0.3309) deltaMag=0.3309 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4486 dpPos=0.2460 dpMove=-0.4243 iDist=0.5514 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3555,4.3160,-0.4284) mvmt=(0.0618,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.855,7.184,93.592) lpos=(-10.355,4.316,-0.428) lprev=(-10.417,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3555,4.3160,-0.4284) mvmt=(0.0618,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.3555,4.3160,-0.4284) mvmt=(0.0618,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5305,0.1679,1.1968) mvmt=(0.0618,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.4445,-0.0721,1.0918) mvmt=(0.0618,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.4445,-2.2833,-0.2582) mvmt=(0.0618,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.5106,-2.7894,2.5961) mvmt=(0.0243,0.0569,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(-10.3555,4.3160,-0.4084) mvmt=(0.0618,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(-10.3555,4.3160,-0.4284) mvmt=(0.0618,0.0000,0.3309) collide=False insertType=1 objState=0x303 winterp=0.4486 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.855,7.184,93.592) lpos=(-10.355,4.316,-0.428) lprev=(-10.417,4.316,-0.759) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4173,4.5254,-0.4178) mvmt=(0.0000,0.2094,0.3415) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4173,4.5254,-0.4178) mvmt=(0.0000,0.2094,0.3415) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.917,6.975,93.602) lpos=(-10.417,4.525,-0.418) lprev=(-10.417,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4173,4.5254,-0.4178) mvmt=(0.0000,0.2094,0.3415) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4173,4.5254,-0.4178) mvmt=(0.0000,0.2094,0.3415) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5923,0.3773,1.2074) mvmt=(0.0000,0.2094,0.3415) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3827,0.1373,1.1024) mvmt=(0.0000,0.2094,0.3415) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3827,-2.0739,-0.2477) mvmt=(0.0000,0.2094,0.3415) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2937,-2.7642,2.6067) mvmt=(-0.1926,0.0822,0.3415) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4173,4.5254,-0.3979) mvmt=(0.0000,0.2094,0.3415) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.917,6.975,93.602) lpos=(-10.417,4.525,-0.418) lprev=(-10.417,4.316,-0.759) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4267,4.5216,-0.4217) mvmt=(-0.0094,0.2056,0.3376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4267,4.5216,-0.4217) mvmt=(-0.0094,0.2056,0.3376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.927,6.978,93.598) lpos=(-10.427,4.522,-0.422) lprev=(-10.417,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4267,4.5216,-0.4217) mvmt=(-0.0094,0.2056,0.3376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4267,4.5216,-0.4217) mvmt=(-0.0094,0.2056,0.3376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6017,0.3735,1.2035) mvmt=(-0.0094,0.2056,0.3376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3733,0.1335,1.0985) mvmt=(-0.0094,0.2056,0.3376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3733,-2.0778,-0.2515) mvmt=(-0.0094,0.2056,0.3376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2935,-2.7743,2.6028) mvmt=(-0.1928,0.0720,0.3376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4267,4.5216,-0.4017) mvmt=(-0.0094,0.2056,0.3376) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.927,6.978,93.598) lpos=(-10.427,4.522,-0.422) lprev=(-10.417,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4267,4.3160,-0.7593) mvmt=(-0.0094,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.927,7.184,93.261) lpos=(-10.427,4.316,-0.759) lprev=(-10.417,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6017,0.1679,0.8659) mvmt=(-0.0094,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3733,-0.0721,0.7609) mvmt=(-0.0094,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3733,-2.2833,-0.5891) mvmt=(-0.0094,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4267,4.3160,-0.7393) mvmt=(-0.0094,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4267,4.3160,-1.5093) mvmt=(-0.0094,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.927,7.184,92.511) lpos=(-10.427,4.316,-1.509) lprev=(-10.417,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6017,0.1679,0.1159) mvmt=(-0.0094,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3733,-0.0721,0.0109) mvmt=(-0.0094,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3733,-0.0721,0.0109) out=(0.3733,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4267,4.3160,-0.7593) mvmt=(-0.0094,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.927,7.184,93.261) lpos=(-10.427,4.316,-0.759) lprev=(-10.417,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6017,0.1679,0.8659) mvmt=(-0.0094,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3733,-0.0721,0.7609) mvmt=(-0.0094,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3733,-2.2833,-0.5891) mvmt=(-0.0094,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4267,4.3160,-0.7393) mvmt=(-0.0094,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4724,4.5206,-0.5476) mvmt=(-0.0457,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.979,93.472) lpos=(-10.472,4.521,-0.548) lprev=(-10.427,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4724,4.5206,-0.5476) mvmt=(-0.0457,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6474,0.3725,1.0776) mvmt=(-0.0457,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3276,0.1325,0.9726) mvmt=(-0.0457,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3276,-2.0787,-0.3774) mvmt=(-0.0457,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2765,-2.8167,2.4769) mvmt=(-0.2061,0.0382,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4724,4.5206,-0.5276) mvmt=(-0.0457,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4724,4.5206,-0.5476) mvmt=(-0.0457,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,6.979,93.472) lpos=(-10.472,4.521,-0.548) lprev=(-10.427,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4724,4.5206,-0.5476) mvmt=(-0.0457,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6474,0.3725,1.0776) mvmt=(-0.0457,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3276,0.1325,0.9726) mvmt=(-0.0457,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3276,-2.0787,-0.3774) mvmt=(-0.0457,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2765,-2.8167,2.4769) mvmt=(-0.2061,0.0382,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4724,4.5206,-0.5276) mvmt=(-0.0457,0.2046,0.2117) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4724,4.3160,-0.7593) mvmt=(-0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,7.184,93.261) lpos=(-10.472,4.316,-0.759) lprev=(-10.427,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6474,0.1679,0.8659) mvmt=(-0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3276,-0.0721,0.7609) mvmt=(-0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3276,-2.2833,-0.5891) mvmt=(-0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4724,4.3160,-0.7393) mvmt=(-0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4724,4.3160,-1.5093) mvmt=(-0.0457,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,7.184,92.511) lpos=(-10.472,4.316,-1.509) lprev=(-10.427,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6474,0.1679,0.1159) mvmt=(-0.0457,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3276,-0.0721,0.0109) mvmt=(-0.0457,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3276,-0.0721,0.0109) out=(0.3276,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4724,4.3160,-0.7593) mvmt=(-0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.972,7.184,93.261) lpos=(-10.472,4.316,-0.759) lprev=(-10.427,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6474,0.1679,0.8659) mvmt=(-0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3276,-0.0721,0.7609) mvmt=(-0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3276,-2.2833,-0.5891) mvmt=(-0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4724,4.3160,-0.7393) mvmt=(-0.0457,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5520,4.5150,-0.5534) mvmt=(-0.0797,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.052,6.985,93.467) lpos=(-10.552,4.515,-0.553) lprev=(-10.472,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5520,4.5150,-0.5534) mvmt=(-0.0797,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7271,0.3670,1.0718) mvmt=(-0.0797,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2480,0.1270,0.9668) mvmt=(-0.0797,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2480,-2.0843,-0.3832) mvmt=(-0.0797,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2504,-2.8922,2.4711) mvmt=(-0.2143,0.0048,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5520,4.5150,-0.5334) mvmt=(-0.0797,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5520,4.5150,-0.5534) mvmt=(-0.0797,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.052,6.985,93.467) lpos=(-10.552,4.515,-0.553) lprev=(-10.472,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5520,4.5150,-0.5534) mvmt=(-0.0797,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7271,0.3670,1.0718) mvmt=(-0.0797,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2480,0.1270,0.9668) mvmt=(-0.0797,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2480,-2.0843,-0.3832) mvmt=(-0.0797,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2504,-2.8922,2.4711) mvmt=(-0.2143,0.0048,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5520,4.5150,-0.5334) mvmt=(-0.0797,0.1990,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5520,4.3160,-0.7593) mvmt=(-0.0797,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.052,7.184,93.261) lpos=(-10.552,4.316,-0.759) lprev=(-10.472,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7271,0.1679,0.8659) mvmt=(-0.0797,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2480,-0.0721,0.7609) mvmt=(-0.0797,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2480,-2.2833,-0.5891) mvmt=(-0.0797,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5520,4.3160,-0.7393) mvmt=(-0.0797,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5520,4.3160,-1.5093) mvmt=(-0.0797,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.052,7.184,92.511) lpos=(-10.552,4.316,-1.509) lprev=(-10.472,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7271,0.1679,0.1159) mvmt=(-0.0797,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2480,-0.0721,0.0109) mvmt=(-0.0797,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2480,-0.0721,0.0109) out=(0.2480,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.5520,4.3160,-0.7593) mvmt=(-0.0797,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.052,7.184,93.261) lpos=(-10.552,4.316,-0.759) lprev=(-10.472,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7271,0.1679,0.8659) mvmt=(-0.0797,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2480,-0.0721,0.7609) mvmt=(-0.0797,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2480,-2.2833,-0.5891) mvmt=(-0.0797,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5520,4.3160,-0.7393) mvmt=(-0.0797,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6644,4.5094,-0.5593) mvmt=(-0.1124,0.1934,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.164,6.991,93.461) lpos=(-10.664,4.509,-0.559) lprev=(-10.552,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6644,4.5094,-0.5593) mvmt=(-0.1124,0.1934,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8394,0.3613,1.0659) mvmt=(-0.1124,0.1934,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1356,0.1213,0.9609) mvmt=(-0.1124,0.1934,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1356,-2.0900,-0.3891) mvmt=(-0.1124,0.1934,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2115,-2.9977,2.4652) mvmt=(-0.2220,-0.0275,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6644,4.5094,-0.5393) mvmt=(-0.1124,0.1934,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6644,4.5094,-0.5593) mvmt=(-0.1124,0.1934,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.164,6.991,93.461) lpos=(-10.664,4.509,-0.559) lprev=(-10.552,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6644,4.5094,-0.5593) mvmt=(-0.1124,0.1934,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8394,0.3613,1.0659) mvmt=(-0.1124,0.1934,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1356,0.1213,0.9609) mvmt=(-0.1124,0.1934,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1356,-2.0900,-0.3891) mvmt=(-0.1124,0.1934,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2115,-2.9977,2.4652) mvmt=(-0.2220,-0.0275,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6644,4.5094,-0.5393) mvmt=(-0.1124,0.1934,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6644,4.3160,-0.7593) mvmt=(-0.1124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.164,7.184,93.261) lpos=(-10.664,4.316,-0.759) lprev=(-10.552,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8394,0.1679,0.8659) mvmt=(-0.1124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1356,-0.0721,0.7609) mvmt=(-0.1124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1356,-2.2833,-0.5891) mvmt=(-0.1124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6644,4.3160,-0.7393) mvmt=(-0.1124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6644,4.3160,-1.5093) mvmt=(-0.1124,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.164,7.184,92.511) lpos=(-10.664,4.316,-1.509) lprev=(-10.552,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8394,0.1679,0.1159) mvmt=(-0.1124,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1356,-0.0721,0.0109) mvmt=(-0.1124,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1356,-0.0721,0.0109) out=(0.1356,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6644,4.3160,-0.7593) mvmt=(-0.1124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.164,7.184,93.261) lpos=(-10.664,4.316,-0.759) lprev=(-10.552,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8394,0.1679,0.8659) mvmt=(-0.1124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1356,-0.0721,0.7609) mvmt=(-0.1124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1356,-2.2833,-0.5891) mvmt=(-0.1124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6644,4.3160,-0.7393) mvmt=(-0.1124,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8144,4.5093,-0.5594) mvmt=(-0.1500,0.1933,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.314,6.991,93.461) lpos=(-10.814,4.509,-0.559) lprev=(-10.664,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8144,4.5093,-0.5594) mvmt=(-0.1500,0.1933,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9894,0.3612,1.0658) mvmt=(-0.1500,0.1933,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0144,0.1212,0.9608) mvmt=(-0.1500,0.1933,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0144,-2.0901,-0.3892) mvmt=(-0.1500,0.1933,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1527,-3.1357,2.4651) mvmt=(-0.2366,-0.0621,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8144,4.5093,-0.5394) mvmt=(-0.1500,0.1933,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8144,4.5093,-0.5594) mvmt=(-0.1500,0.1933,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.314,6.991,93.461) lpos=(-10.814,4.509,-0.559) lprev=(-10.664,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8144,4.5093,-0.5594) mvmt=(-0.1500,0.1933,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9894,0.3612,1.0658) mvmt=(-0.1500,0.1933,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0144,0.1212,0.9608) mvmt=(-0.1500,0.1933,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0144,-2.0901,-0.3892) mvmt=(-0.1500,0.1933,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1527,-3.1357,2.4651) mvmt=(-0.2366,-0.0621,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8144,4.5093,-0.5394) mvmt=(-0.1500,0.1933,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8144,4.3160,-0.7593) mvmt=(-0.1500,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.314,7.184,93.261) lpos=(-10.814,4.316,-0.759) lprev=(-10.664,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9894,0.1679,0.8659) mvmt=(-0.1500,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0144,-0.0721,0.7609) mvmt=(-0.1500,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0144,-2.2833,-0.5891) mvmt=(-0.1500,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8144,4.3160,-0.7393) mvmt=(-0.1500,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8144,4.3160,-1.5093) mvmt=(-0.1500,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.314,7.184,92.511) lpos=(-10.814,4.316,-1.509) lprev=(-10.664,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9894,0.1679,0.1159) mvmt=(-0.1500,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0144,-0.0721,0.0109) mvmt=(-0.1500,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0144,-0.0721,0.0109) out=(-0.0144,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.8144,4.3160,-0.7593) mvmt=(-0.1500,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.314,7.184,93.261) lpos=(-10.814,4.316,-0.759) lprev=(-10.664,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9894,0.1679,0.8659) mvmt=(-0.1500,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0144,-0.0721,0.7609) mvmt=(-0.1500,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0144,-2.2833,-0.5891) mvmt=(-0.1500,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8144,4.3160,-0.7393) mvmt=(-0.1500,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0123,4.5143,-0.5542) mvmt=(-0.1979,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.512,6.986,93.466) lpos=(-11.012,4.514,-0.554) lprev=(-10.814,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0123,4.5143,-0.5542) mvmt=(-0.1979,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1873,0.3662,1.0710) mvmt=(-0.1979,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,0.1262,0.9660) mvmt=(-0.1979,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,-2.0850,-0.3840) mvmt=(-0.1979,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0123,4.5143,-0.5342) mvmt=(-0.1979,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0123,4.5143,-0.5542) mvmt=(-0.1979,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.512,6.986,93.466) lpos=(-11.012,4.514,-0.554) lprev=(-10.814,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0123,4.5143,-0.5542) mvmt=(-0.1979,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1873,0.3662,1.0710) mvmt=(-0.1979,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,0.1262,0.9660) mvmt=(-0.1979,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,-2.0850,-0.3840) mvmt=(-0.1979,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0123,4.5143,-0.5342) mvmt=(-0.1979,0.1983,0.2051) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0123,4.3160,-0.7593) mvmt=(-0.1979,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.512,7.184,93.261) lpos=(-11.012,4.316,-0.759) lprev=(-10.814,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1873,0.1679,0.8659) mvmt=(-0.1979,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,-0.0721,0.7609) mvmt=(-0.1979,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,-2.2833,-0.5891) mvmt=(-0.1979,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0123,4.3160,-0.7393) mvmt=(-0.1979,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0123,4.3160,-1.5093) mvmt=(-0.1979,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.512,7.184,92.511) lpos=(-11.012,4.316,-1.509) lprev=(-10.814,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1873,0.1679,0.1159) mvmt=(-0.1979,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,-0.0721,0.0109) mvmt=(-0.1979,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2123,-0.0721,0.0109) out=(-0.2123,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0123,4.3160,-0.7593) mvmt=(-0.1979,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.512,7.184,93.261) lpos=(-11.012,4.316,-0.759) lprev=(-10.814,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1873,0.1679,0.8659) mvmt=(-0.1979,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,-0.0721,0.7609) mvmt=(-0.1979,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,-2.2833,-0.5891) mvmt=(-0.1979,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0123,4.3160,-0.7393) mvmt=(-0.1979,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2146,4.4832,-0.5864) mvmt=(-0.2023,0.1672,0.1729) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2146,4.4832,-0.5864) mvmt=(-0.2023,0.1672,0.1729) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.715,7.017,93.434) lpos=(-11.215,4.483,-0.586) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2146,4.4832,-0.5864) mvmt=(-0.2023,0.1672,0.1729) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3896,0.3351,1.0388) mvmt=(-0.2023,0.1672,0.1729) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4146,0.0951,0.9338) mvmt=(-0.2023,0.1672,0.1729) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4146,-2.1162,-0.4162) mvmt=(-0.2023,0.1672,0.1729) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2146,4.4832,-0.5664) mvmt=(-0.2023,0.1672,0.1729) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.715,7.017,93.434) lpos=(-11.215,4.483,-0.586) lprev=(-11.012,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0123,4.4832,-0.5864) mvmt=(0.0000,0.1672,0.1729) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.512,7.017,93.434) lpos=(-11.012,4.483,-0.586) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0123,4.4832,-0.5864) mvmt=(0.0000,0.1672,0.1729) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1873,0.3351,1.0388) mvmt=(0.0000,0.1672,0.1729) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,0.0951,0.9338) mvmt=(0.0000,0.1672,0.1729) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,-2.1162,-0.4162) mvmt=(-0.0000,0.1672,0.1729) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0123,4.4832,-0.5664) mvmt=(0.0000,0.1672,0.1729) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0123,4.4832,-0.5864) mvmt=(0.0000,0.1672,0.1729) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.512,7.017,93.434) lpos=(-11.012,4.483,-0.586) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0123,4.4832,-0.5864) mvmt=(0.0000,0.1672,0.1729) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1873,0.3351,1.0388) mvmt=(0.0000,0.1672,0.1729) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,0.0951,0.9338) mvmt=(0.0000,0.1672,0.1729) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,-2.1162,-0.4162) mvmt=(-0.0000,0.1672,0.1729) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0123,4.4832,-0.5664) mvmt=(0.0000,0.1672,0.1729) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2454,4.4805,-0.5891) mvmt=(-0.2330,0.1646,0.1702) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2454,4.4805,-0.5891) mvmt=(-0.2330,0.1646,0.1702) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.745,7.019,93.431) lpos=(-11.245,4.481,-0.589) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2454,4.4805,-0.5891) mvmt=(-0.2330,0.1646,0.1702) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4204,0.3325,1.0361) mvmt=(-0.2330,0.1646,0.1702) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4454,0.0925,0.9311) mvmt=(-0.2330,0.1646,0.1702) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4454,-2.1188,-0.4189) mvmt=(-0.2330,0.1646,0.1702) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2454,4.4805,-0.5691) mvmt=(-0.2330,0.1646,0.1702) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.745,7.019,93.431) lpos=(-11.245,4.481,-0.589) lprev=(-11.012,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0123,4.4805,-0.5891) mvmt=(0.0000,0.1646,0.1702) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.512,7.019,93.431) lpos=(-11.012,4.481,-0.589) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0123,4.4805,-0.5891) mvmt=(0.0000,0.1646,0.1702) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1873,0.3325,1.0361) mvmt=(0.0000,0.1646,0.1702) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,0.0925,0.9311) mvmt=(0.0000,0.1646,0.1702) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,-2.1188,-0.4189) mvmt=(-0.0000,0.1646,0.1702) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0123,4.4805,-0.5691) mvmt=(0.0000,0.1646,0.1702) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0123,4.4805,-0.5891) mvmt=(0.0000,0.1646,0.1702) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.512,7.019,93.431) lpos=(-11.012,4.481,-0.589) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0123,4.4805,-0.5891) mvmt=(0.0000,0.1646,0.1702) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1873,0.3325,1.0361) mvmt=(0.0000,0.1646,0.1702) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,0.0925,0.9311) mvmt=(0.0000,0.1646,0.1702) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,-2.1188,-0.4189) mvmt=(-0.0000,0.1646,0.1702) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0123,4.4805,-0.5691) mvmt=(0.0000,0.1646,0.1702) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2269,4.5000,-0.5689) mvmt=(-0.2146,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2269,4.5000,-0.5689) mvmt=(-0.2146,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.727,7.000,93.451) lpos=(-11.227,4.500,-0.569) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2269,4.5000,-0.5689) mvmt=(-0.2146,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4019,0.3520,1.0563) mvmt=(-0.2146,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4269,0.1120,0.9513) mvmt=(-0.2146,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4269,-2.0993,-0.3987) mvmt=(-0.2146,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2269,4.5000,-0.5489) mvmt=(-0.2146,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.727,7.000,93.451) lpos=(-11.227,4.500,-0.569) lprev=(-11.012,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0123,4.5000,-0.5689) mvmt=(0.0000,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.512,7.000,93.451) lpos=(-11.012,4.500,-0.569) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0123,4.5000,-0.5689) mvmt=(0.0000,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1873,0.3520,1.0563) mvmt=(0.0000,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,0.1120,0.9513) mvmt=(0.0000,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,-2.0993,-0.3987) mvmt=(-0.0000,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0123,4.5000,-0.5489) mvmt=(0.0000,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0123,4.5000,-0.5689) mvmt=(0.0000,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.512,7.000,93.451) lpos=(-11.012,4.500,-0.569) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0123,4.5000,-0.5689) mvmt=(0.0000,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1873,0.3520,1.0563) mvmt=(0.0000,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,0.1120,0.9513) mvmt=(0.0000,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,-2.0993,-0.3987) mvmt=(-0.0000,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0123,4.5000,-0.5489) mvmt=(0.0000,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1889,4.5027,-0.5662) mvmt=(-0.1766,0.1867,0.1931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1889,4.5027,-0.5662) mvmt=(-0.1766,0.1867,0.1931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.689,6.997,93.454) lpos=(-11.189,4.503,-0.566) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1889,4.5027,-0.5662) mvmt=(-0.1766,0.1867,0.1931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3639,0.3546,1.0590) mvmt=(-0.1766,0.1867,0.1931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3889,0.1146,0.9540) mvmt=(-0.1766,0.1867,0.1931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3889,-2.0966,-0.3960) mvmt=(-0.1766,0.1867,0.1931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1889,4.5027,-0.5462) mvmt=(-0.1766,0.1867,0.1931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.689,6.997,93.454) lpos=(-11.189,4.503,-0.566) lprev=(-11.012,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0123,4.5027,-0.5662) mvmt=(0.0000,0.1867,0.1931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.512,6.997,93.454) lpos=(-11.012,4.503,-0.566) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0123,4.5027,-0.5662) mvmt=(0.0000,0.1867,0.1931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1873,0.3546,1.0590) mvmt=(0.0000,0.1867,0.1931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,0.1146,0.9540) mvmt=(0.0000,0.1867,0.1931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,-2.0966,-0.3960) mvmt=(-0.0000,0.1867,0.1931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0123,4.5027,-0.5462) mvmt=(0.0000,0.1867,0.1931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0123,4.5027,-0.5662) mvmt=(0.0000,0.1867,0.1931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.512,6.997,93.454) lpos=(-11.012,4.503,-0.566) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0123,4.5027,-0.5662) mvmt=(0.0000,0.1867,0.1931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1873,0.3546,1.0590) mvmt=(0.0000,0.1867,0.1931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,0.1146,0.9540) mvmt=(0.0000,0.1867,0.1931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,-2.0966,-0.3960) mvmt=(-0.0000,0.1867,0.1931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0123,4.5027,-0.5462) mvmt=(0.0000,0.1867,0.1931) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1597,4.5166,-0.5517) mvmt=(-0.1474,0.2007,0.2076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1597,4.5166,-0.5517) mvmt=(-0.1474,0.2007,0.2076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.660,6.983,93.468) lpos=(-11.160,4.517,-0.552) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1597,4.5166,-0.5517) mvmt=(-0.1474,0.2007,0.2076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3347,0.3686,1.0735) mvmt=(-0.1474,0.2007,0.2076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3597,0.1286,0.9685) mvmt=(-0.1474,0.2007,0.2076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3597,-2.0827,-0.3815) mvmt=(-0.1474,0.2007,0.2076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1597,4.5166,-0.5317) mvmt=(-0.1474,0.2007,0.2076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.660,6.983,93.468) lpos=(-11.160,4.517,-0.552) lprev=(-11.012,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0123,4.5166,-0.5517) mvmt=(0.0000,0.2007,0.2076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.512,6.983,93.468) lpos=(-11.012,4.517,-0.552) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0123,4.5166,-0.5517) mvmt=(0.0000,0.2007,0.2076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1873,0.3686,1.0735) mvmt=(0.0000,0.2007,0.2076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,0.1286,0.9685) mvmt=(0.0000,0.2007,0.2076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,-2.0827,-0.3815) mvmt=(-0.0000,0.2007,0.2076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0123,4.5166,-0.5317) mvmt=(0.0000,0.2007,0.2076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0123,4.5166,-0.5517) mvmt=(0.0000,0.2007,0.2076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.512,6.983,93.468) lpos=(-11.012,4.517,-0.552) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0123,4.5166,-0.5517) mvmt=(0.0000,0.2007,0.2076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1873,0.3686,1.0735) mvmt=(0.0000,0.2007,0.2076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,0.1286,0.9685) mvmt=(0.0000,0.2007,0.2076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,-2.0827,-0.3815) mvmt=(-0.0000,0.2007,0.2076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0123,4.5166,-0.5317) mvmt=(0.0000,0.2007,0.2076) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1216,4.5189,-0.5494) mvmt=(-0.1093,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1216,4.5189,-0.5494) mvmt=(-0.1093,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.622,6.981,93.471) lpos=(-11.122,4.519,-0.549) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1216,4.5189,-0.5494) mvmt=(-0.1093,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2966,0.3708,1.0758) mvmt=(-0.1093,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3216,0.1308,0.9708) mvmt=(-0.1093,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3216,-2.0805,-0.3792) mvmt=(-0.1093,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1216,4.5189,-0.5294) mvmt=(-0.1093,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.622,6.981,93.471) lpos=(-11.122,4.519,-0.549) lprev=(-11.012,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0123,4.5189,-0.5494) mvmt=(0.0000,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.512,6.981,93.471) lpos=(-11.012,4.519,-0.549) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0123,4.5189,-0.5494) mvmt=(0.0000,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1873,0.3708,1.0758) mvmt=(0.0000,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,0.1308,0.9708) mvmt=(0.0000,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,-2.0805,-0.3792) mvmt=(-0.0000,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0123,4.5189,-0.5294) mvmt=(0.0000,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0123,4.5189,-0.5494) mvmt=(0.0000,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.512,6.981,93.471) lpos=(-11.012,4.519,-0.549) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0123,4.5189,-0.5494) mvmt=(0.0000,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1873,0.3708,1.0758) mvmt=(0.0000,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,0.1308,0.9708) mvmt=(0.0000,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2123,-2.0805,-0.3792) mvmt=(-0.0000,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0123,4.5189,-0.5294) mvmt=(0.0000,0.2029,0.2099) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0844,4.5191,-0.5492) mvmt=(-0.0721,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.584,6.981,93.471) lpos=(-11.084,4.519,-0.549) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0844,4.5191,-0.5492) mvmt=(-0.0721,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2594,0.3710,1.0760) mvmt=(-0.0721,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2844,0.1310,0.9710) mvmt=(-0.0721,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2844,-2.0803,-0.3790) mvmt=(-0.0721,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0844,4.5191,-0.5292) mvmt=(-0.0721,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0844,4.5191,-0.5492) mvmt=(-0.0721,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.584,6.981,93.471) lpos=(-11.084,4.519,-0.549) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0844,4.5191,-0.5492) mvmt=(-0.0721,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2594,0.3710,1.0760) mvmt=(-0.0721,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2844,0.1310,0.9710) mvmt=(-0.0721,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2844,-2.0803,-0.3790) mvmt=(-0.0721,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0844,4.5191,-0.5292) mvmt=(-0.0721,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0844,4.3160,-0.7593) mvmt=(-0.0721,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.584,7.184,93.261) lpos=(-11.084,4.316,-0.759) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2594,0.1679,0.8659) mvmt=(-0.0721,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2844,-0.0721,0.7609) mvmt=(-0.0721,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2844,-2.2833,-0.5891) mvmt=(-0.0721,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0844,4.3160,-0.7393) mvmt=(-0.0721,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0844,4.3160,-1.5093) mvmt=(-0.0721,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.584,7.184,92.511) lpos=(-11.084,4.316,-1.509) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2594,0.1679,0.1159) mvmt=(-0.0721,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2844,-0.0721,0.0109) mvmt=(-0.0721,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2844,-0.0721,0.0109) out=(-0.2844,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0844,4.3160,-0.7593) mvmt=(-0.0721,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.584,7.184,93.261) lpos=(-11.084,4.316,-0.759) lprev=(-11.012,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2594,0.1679,0.8659) mvmt=(-0.0721,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2844,-0.0721,0.7609) mvmt=(-0.0721,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2844,-2.2833,-0.5891) mvmt=(-0.0721,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0844,4.3160,-0.7393) mvmt=(-0.0721,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1206,4.5191,-0.5492) mvmt=(-0.0362,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1206,4.5191,-0.5492) mvmt=(-0.0362,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.621,6.981,93.471) lpos=(-11.121,4.519,-0.549) lprev=(-11.084,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1206,4.5191,-0.5492) mvmt=(-0.0362,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2956,0.3710,1.0760) mvmt=(-0.0362,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3206,0.1310,0.9710) mvmt=(-0.0362,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3206,-2.0802,-0.3790) mvmt=(-0.0362,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1206,4.5191,-0.5292) mvmt=(-0.0362,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.621,6.981,93.471) lpos=(-11.121,4.519,-0.549) lprev=(-11.084,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0844,4.5191,-0.5492) mvmt=(0.0000,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.584,6.981,93.471) lpos=(-11.084,4.519,-0.549) lprev=(-11.084,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0844,4.5191,-0.5492) mvmt=(0.0000,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2594,0.3710,1.0760) mvmt=(0.0000,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2844,0.1310,0.9710) mvmt=(0.0000,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2844,-2.0802,-0.3790) mvmt=(0.0000,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0844,4.5191,-0.5292) mvmt=(0.0000,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0844,4.5191,-0.5492) mvmt=(0.0000,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.584,6.981,93.471) lpos=(-11.084,4.519,-0.549) lprev=(-11.084,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0844,4.5191,-0.5492) mvmt=(0.0000,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2594,0.3710,1.0760) mvmt=(0.0000,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2844,0.1310,0.9710) mvmt=(0.0000,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2844,-2.0802,-0.3790) mvmt=(0.0000,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0844,4.5191,-0.5292) mvmt=(0.0000,0.2031,0.2101) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0845,4.5236,-0.5445) mvmt=(-0.0002,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.585,6.976,93.475) lpos=(-11.085,4.524,-0.545) lprev=(-11.084,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0845,4.5236,-0.5445) mvmt=(-0.0002,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2595,0.3755,1.0807) mvmt=(-0.0002,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2845,0.1355,0.9757) mvmt=(-0.0002,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2845,-2.0757,-0.3743) mvmt=(-0.0002,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0845,4.5236,-0.5245) mvmt=(-0.0002,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0845,4.5236,-0.5445) mvmt=(-0.0002,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.585,6.976,93.475) lpos=(-11.085,4.524,-0.545) lprev=(-11.084,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0845,4.5236,-0.5445) mvmt=(-0.0002,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2595,0.3755,1.0807) mvmt=(-0.0002,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2845,0.1355,0.9757) mvmt=(-0.0002,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2845,-2.0757,-0.3743) mvmt=(-0.0002,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0845,4.5236,-0.5245) mvmt=(-0.0002,0.2076,0.2148) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0624,4.5234,-0.5447) mvmt=(0.0219,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.562,6.977,93.475) lpos=(-11.062,4.523,-0.545) lprev=(-11.084,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0624,4.5234,-0.5447) mvmt=(0.0219,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2374,0.3754,1.0805) mvmt=(0.0219,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2624,0.1354,0.9755) mvmt=(0.0219,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2624,-2.0759,-0.3745) mvmt=(0.0219,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0624,4.5234,-0.5247) mvmt=(0.0219,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0624,4.5234,-0.5447) mvmt=(0.0219,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.562,6.977,93.475) lpos=(-11.062,4.523,-0.545) lprev=(-11.084,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0624,4.5234,-0.5447) mvmt=(0.0219,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2374,0.3754,1.0805) mvmt=(0.0219,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2624,0.1354,0.9755) mvmt=(0.0219,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2624,-2.0759,-0.3745) mvmt=(0.0219,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0624,4.5234,-0.5247) mvmt=(0.0219,0.2074,0.2146) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0624,4.3160,-0.7593) mvmt=(0.0219,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.562,7.184,93.261) lpos=(-11.062,4.316,-0.759) lprev=(-11.084,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2374,0.1679,0.8659) mvmt=(0.0219,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2624,-0.0721,0.7609) mvmt=(0.0219,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2624,-2.2833,-0.5891) mvmt=(0.0219,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0624,4.3160,-0.7393) mvmt=(0.0219,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0624,4.3160,-1.5093) mvmt=(0.0219,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.562,7.184,92.511) lpos=(-11.062,4.316,-1.509) lprev=(-11.084,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2374,0.1679,0.1159) mvmt=(0.0219,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2624,-0.0721,0.0109) mvmt=(0.0219,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2624,-0.0721,0.0109) out=(-0.2624,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0624,4.3160,-0.7593) mvmt=(0.0219,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.562,7.184,93.261) lpos=(-11.062,4.316,-0.759) lprev=(-11.084,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2374,0.1679,0.8659) mvmt=(0.0219,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2624,-0.0721,0.7609) mvmt=(0.0219,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2624,-2.2833,-0.5891) mvmt=(0.0219,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0624,4.3160,-0.7393) mvmt=(0.0219,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0461,4.5141,-0.5544) mvmt=(0.0163,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,6.986,93.466) lpos=(-11.046,4.514,-0.554) lprev=(-11.062,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0461,4.5141,-0.5544) mvmt=(0.0163,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2211,0.3660,1.0708) mvmt=(0.0163,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2461,0.1260,0.9658) mvmt=(0.0163,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2461,-2.0852,-0.3842) mvmt=(0.0163,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0461,4.5141,-0.5344) mvmt=(0.0163,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0461,4.5141,-0.5544) mvmt=(0.0163,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,6.986,93.466) lpos=(-11.046,4.514,-0.554) lprev=(-11.062,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0461,4.5141,-0.5544) mvmt=(0.0163,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2211,0.3660,1.0708) mvmt=(0.0163,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2461,0.1260,0.9658) mvmt=(0.0163,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2461,-2.0852,-0.3842) mvmt=(0.0163,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0461,4.5141,-0.5344) mvmt=(0.0163,0.1981,0.2049) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0461,4.3160,-0.7593) mvmt=(0.0163,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.184,93.261) lpos=(-11.046,4.316,-0.759) lprev=(-11.062,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2211,0.1679,0.8659) mvmt=(0.0163,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2461,-0.0721,0.7609) mvmt=(0.0163,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2461,-2.2833,-0.5891) mvmt=(0.0163,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0461,4.3160,-0.7393) mvmt=(0.0163,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0461,4.3160,-1.5093) mvmt=(0.0163,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.184,92.511) lpos=(-11.046,4.316,-1.509) lprev=(-11.062,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2211,0.1679,0.1159) mvmt=(0.0163,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2461,-0.0721,0.0109) mvmt=(0.0163,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2461,-0.0721,0.0109) out=(-0.2461,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0461,4.3160,-0.7593) mvmt=(0.0163,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.546,7.184,93.261) lpos=(-11.046,4.316,-0.759) lprev=(-11.062,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2211,0.1679,0.8659) mvmt=(0.0163,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2461,-0.0721,0.7609) mvmt=(0.0163,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2461,-2.2833,-0.5891) mvmt=(0.0163,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0461,4.3160,-0.7393) mvmt=(0.0163,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0623,4.5101,-0.5585) mvmt=(-0.0162,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.562,6.990,93.462) lpos=(-11.062,4.510,-0.558) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0623,4.5101,-0.5585) mvmt=(-0.0162,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2374,0.3621,1.0667) mvmt=(-0.0162,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2623,0.1221,0.9617) mvmt=(-0.0162,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2623,-2.0892,-0.3883) mvmt=(-0.0162,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0623,4.5101,-0.5385) mvmt=(-0.0162,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0623,4.5101,-0.5585) mvmt=(-0.0162,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.562,6.990,93.462) lpos=(-11.062,4.510,-0.558) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0623,4.5101,-0.5585) mvmt=(-0.0162,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2374,0.3621,1.0667) mvmt=(-0.0162,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2623,0.1221,0.9617) mvmt=(-0.0162,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2623,-2.0892,-0.3883) mvmt=(-0.0162,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0623,4.5101,-0.5385) mvmt=(-0.0162,0.1941,0.2008) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0623,4.3160,-0.7593) mvmt=(-0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.562,7.184,93.261) lpos=(-11.062,4.316,-0.759) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2374,0.1679,0.8659) mvmt=(-0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2623,-0.0721,0.7609) mvmt=(-0.0162,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2623,-2.2833,-0.5891) mvmt=(-0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0623,4.3160,-0.7393) mvmt=(-0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0623,4.3160,-1.5093) mvmt=(-0.0162,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.562,7.184,92.511) lpos=(-11.062,4.316,-1.509) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2374,0.1679,0.1159) mvmt=(-0.0162,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2623,-0.0721,0.0109) mvmt=(-0.0162,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2623,-0.0721,0.0109) out=(-0.2623,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0623,4.3160,-0.7593) mvmt=(-0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.562,7.184,93.261) lpos=(-11.062,4.316,-0.759) lprev=(-11.046,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2374,0.1679,0.8659) mvmt=(-0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2623,-0.0721,0.7609) mvmt=(-0.0162,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2623,-2.2833,-0.5891) mvmt=(-0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0623,4.3160,-0.7393) mvmt=(-0.0162,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1111,4.5099,-0.5586) mvmt=(-0.0487,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,6.990,93.461) lpos=(-11.111,4.510,-0.559) lprev=(-11.062,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.5099,-0.5586) mvmt=(-0.0487,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2861,0.3619,1.0666) mvmt=(-0.0487,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,0.1219,0.9616) mvmt=(-0.0487,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.0894,-0.3885) mvmt=(-0.0487,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.5099,-0.5387) mvmt=(-0.0487,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.5099,-0.5586) mvmt=(-0.0487,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,6.990,93.461) lpos=(-11.111,4.510,-0.559) lprev=(-11.062,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.5099,-0.5586) mvmt=(-0.0487,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2861,0.3619,1.0666) mvmt=(-0.0487,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,0.1219,0.9616) mvmt=(-0.0487,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.0894,-0.3885) mvmt=(-0.0487,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.5099,-0.5387) mvmt=(-0.0487,0.1940,0.2007) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.3160,-0.7593) mvmt=(-0.0487,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,7.184,93.261) lpos=(-11.111,4.316,-0.759) lprev=(-11.062,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2861,0.1679,0.8659) mvmt=(-0.0487,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-0.0721,0.7609) mvmt=(-0.0487,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.2833,-0.5891) mvmt=(-0.0487,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.3160,-0.7393) mvmt=(-0.0487,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.3160,-1.5093) mvmt=(-0.0487,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,7.184,92.511) lpos=(-11.111,4.316,-1.509) lprev=(-11.062,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2861,0.1679,0.1159) mvmt=(-0.0487,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-0.0721,0.0109) mvmt=(-0.0487,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3111,-0.0721,0.0109) out=(-0.3111,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.1111,4.3160,-0.7593) mvmt=(-0.0487,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,7.184,93.261) lpos=(-11.111,4.316,-0.759) lprev=(-11.062,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2861,0.1679,0.8659) mvmt=(-0.0487,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-0.0721,0.7609) mvmt=(-0.0487,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.2833,-0.5891) mvmt=(-0.0487,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.3160,-0.7393) mvmt=(-0.0487,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2014,4.5229,-0.5452) mvmt=(-0.0903,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2014,4.5229,-0.5452) mvmt=(-0.0903,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.701,6.977,93.475) lpos=(-11.201,4.523,-0.545) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2014,4.5229,-0.5452) mvmt=(-0.0903,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3764,0.3749,1.0800) mvmt=(-0.0903,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4014,0.1349,0.9750) mvmt=(-0.0903,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4014,-2.0764,-0.3750) mvmt=(-0.0903,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2014,4.5229,-0.5252) mvmt=(-0.0903,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.701,6.977,93.475) lpos=(-11.201,4.523,-0.545) lprev=(-11.111,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.5229,-0.5452) mvmt=(0.0000,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,6.977,93.475) lpos=(-11.111,4.523,-0.545) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.5229,-0.5452) mvmt=(0.0000,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2861,0.3749,1.0800) mvmt=(0.0000,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,0.1349,0.9750) mvmt=(0.0000,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.0764,-0.3750) mvmt=(0.0000,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.5229,-0.5252) mvmt=(0.0000,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.5229,-0.5452) mvmt=(0.0000,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,6.977,93.475) lpos=(-11.111,4.523,-0.545) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.5229,-0.5452) mvmt=(0.0000,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2861,0.3749,1.0800) mvmt=(0.0000,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,0.1349,0.9750) mvmt=(0.0000,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.0764,-0.3750) mvmt=(0.0000,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.5229,-0.5252) mvmt=(0.0000,0.2070,0.2141) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2397,4.5201,-0.5481) mvmt=(-0.1287,0.2041,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2397,4.5201,-0.5481) mvmt=(-0.1287,0.2041,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.740,6.980,93.472) lpos=(-11.240,4.520,-0.548) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2397,4.5201,-0.5481) mvmt=(-0.1287,0.2041,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4147,0.3720,1.0770) mvmt=(-0.1287,0.2041,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4397,0.1320,0.9721) mvmt=(-0.1287,0.2041,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4397,-2.0792,-0.3780) mvmt=(-0.1287,0.2041,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2397,4.5201,-0.5282) mvmt=(-0.1287,0.2041,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.740,6.980,93.472) lpos=(-11.240,4.520,-0.548) lprev=(-11.111,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.5201,-0.5481) mvmt=(0.0000,0.2041,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,6.980,93.472) lpos=(-11.111,4.520,-0.548) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.5201,-0.5481) mvmt=(0.0000,0.2041,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2861,0.3720,1.0770) mvmt=(0.0000,0.2041,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,0.1320,0.9721) mvmt=(0.0000,0.2041,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.0792,-0.3780) mvmt=(0.0000,0.2041,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.5201,-0.5282) mvmt=(0.0000,0.2041,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.5201,-0.5481) mvmt=(0.0000,0.2041,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,6.980,93.472) lpos=(-11.111,4.520,-0.548) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.5201,-0.5481) mvmt=(0.0000,0.2041,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2861,0.3720,1.0770) mvmt=(0.0000,0.2041,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,0.1320,0.9721) mvmt=(0.0000,0.2041,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.0792,-0.3780) mvmt=(0.0000,0.2041,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.5201,-0.5282) mvmt=(0.0000,0.2041,0.2112) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2563,4.4945,-0.5747) mvmt=(-0.1453,0.1785,0.1846) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2563,4.4945,-0.5747) mvmt=(-0.1453,0.1785,0.1846) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.756,7.006,93.445) lpos=(-11.256,4.494,-0.575) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2563,4.4945,-0.5747) mvmt=(-0.1453,0.1785,0.1846) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4313,0.3464,1.0505) mvmt=(-0.1453,0.1785,0.1846) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4563,0.1064,0.9455) mvmt=(-0.1453,0.1785,0.1846) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4563,-2.1048,-0.4045) mvmt=(-0.1453,0.1785,0.1846) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2563,4.4945,-0.5547) mvmt=(-0.1453,0.1785,0.1846) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.756,7.006,93.445) lpos=(-11.256,4.494,-0.575) lprev=(-11.111,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.4945,-0.5747) mvmt=(0.0000,0.1785,0.1846) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,7.006,93.445) lpos=(-11.111,4.494,-0.575) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.4945,-0.5747) mvmt=(0.0000,0.1785,0.1846) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2861,0.3464,1.0505) mvmt=(0.0000,0.1785,0.1846) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,0.1064,0.9455) mvmt=(0.0000,0.1785,0.1846) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.1048,-0.4045) mvmt=(0.0000,0.1785,0.1846) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.4945,-0.5547) mvmt=(0.0000,0.1785,0.1846) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.4945,-0.5747) mvmt=(0.0000,0.1785,0.1846) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,7.006,93.445) lpos=(-11.111,4.494,-0.575) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.4945,-0.5747) mvmt=(0.0000,0.1785,0.1846) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2861,0.3464,1.0505) mvmt=(0.0000,0.1785,0.1846) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,0.1064,0.9455) mvmt=(0.0000,0.1785,0.1846) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.1048,-0.4045) mvmt=(0.0000,0.1785,0.1846) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.4945,-0.5547) mvmt=(0.0000,0.1785,0.1846) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2993,4.4999,-0.5690) mvmt=(-0.1882,0.1839,0.1903) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2993,4.4999,-0.5690) mvmt=(-0.1882,0.1839,0.1903) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.799,7.000,93.451) lpos=(-11.299,4.500,-0.569) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2993,4.4999,-0.5690) mvmt=(-0.1882,0.1839,0.1903) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4743,0.3519,1.0562) mvmt=(-0.1882,0.1839,0.1903) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4993,0.1119,0.9512) mvmt=(-0.1882,0.1839,0.1903) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4993,-2.0994,-0.3988) mvmt=(-0.1882,0.1839,0.1903) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2993,4.4999,-0.5490) mvmt=(-0.1882,0.1839,0.1903) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.799,7.000,93.451) lpos=(-11.299,4.500,-0.569) lprev=(-11.111,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.4999,-0.5690) mvmt=(0.0000,0.1839,0.1903) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,7.000,93.451) lpos=(-11.111,4.500,-0.569) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.4999,-0.5690) mvmt=(0.0000,0.1839,0.1903) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2861,0.3519,1.0562) mvmt=(0.0000,0.1839,0.1903) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,0.1119,0.9512) mvmt=(0.0000,0.1839,0.1903) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.0994,-0.3988) mvmt=(0.0000,0.1839,0.1903) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.4999,-0.5490) mvmt=(0.0000,0.1839,0.1903) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.4999,-0.5690) mvmt=(0.0000,0.1839,0.1903) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,7.000,93.451) lpos=(-11.111,4.500,-0.569) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.4999,-0.5690) mvmt=(0.0000,0.1839,0.1903) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2861,0.3519,1.0562) mvmt=(0.0000,0.1839,0.1903) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,0.1119,0.9512) mvmt=(0.0000,0.1839,0.1903) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.0994,-0.3988) mvmt=(0.0000,0.1839,0.1903) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.4999,-0.5490) mvmt=(0.0000,0.1839,0.1903) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3141,4.4953,-0.5738) mvmt=(-0.2030,0.1794,0.1855) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3141,4.4953,-0.5738) mvmt=(-0.2030,0.1794,0.1855) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.814,7.005,93.446) lpos=(-11.314,4.495,-0.574) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.3141,4.4953,-0.5738) mvmt=(-0.2030,0.1794,0.1855) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4891,0.3473,1.0514) mvmt=(-0.2030,0.1794,0.1855) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5141,0.1073,0.9464) mvmt=(-0.2030,0.1794,0.1855) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5141,-2.1040,-0.4036) mvmt=(-0.2030,0.1794,0.1855) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3141,4.4953,-0.5538) mvmt=(-0.2030,0.1794,0.1855) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.814,7.005,93.446) lpos=(-11.314,4.495,-0.574) lprev=(-11.111,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.4953,-0.5738) mvmt=(0.0000,0.1794,0.1855) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,7.005,93.446) lpos=(-11.111,4.495,-0.574) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.4953,-0.5738) mvmt=(0.0000,0.1794,0.1855) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2861,0.3473,1.0514) mvmt=(0.0000,0.1794,0.1855) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,0.1073,0.9464) mvmt=(0.0000,0.1794,0.1855) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.1040,-0.4036) mvmt=(0.0000,0.1794,0.1855) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.4953,-0.5538) mvmt=(0.0000,0.1794,0.1855) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.4953,-0.5738) mvmt=(0.0000,0.1794,0.1855) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,7.005,93.446) lpos=(-11.111,4.495,-0.574) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.4953,-0.5738) mvmt=(0.0000,0.1794,0.1855) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2861,0.3473,1.0514) mvmt=(0.0000,0.1794,0.1855) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,0.1073,0.9464) mvmt=(0.0000,0.1794,0.1855) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.1040,-0.4036) mvmt=(0.0000,0.1794,0.1855) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.4953,-0.5538) mvmt=(0.0000,0.1794,0.1855) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.3105,4.4922,-0.5770) mvmt=(-0.1995,0.1762,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3105,4.4922,-0.5770) mvmt=(-0.1995,0.1762,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.811,7.008,93.443) lpos=(-11.311,4.492,-0.577) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.3105,4.4922,-0.5770) mvmt=(-0.1995,0.1762,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4855,0.3442,1.0482) mvmt=(-0.1995,0.1762,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5105,0.1042,0.9432) mvmt=(-0.1995,0.1762,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.5105,-2.1071,-0.4068) mvmt=(-0.1995,0.1762,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.3105,4.4922,-0.5570) mvmt=(-0.1995,0.1762,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.811,7.008,93.443) lpos=(-11.311,4.492,-0.577) lprev=(-11.111,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.4922,-0.5770) mvmt=(0.0000,0.1762,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,7.008,93.443) lpos=(-11.111,4.492,-0.577) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.4922,-0.5770) mvmt=(0.0000,0.1762,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2861,0.3442,1.0482) mvmt=(0.0000,0.1762,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,0.1042,0.9432) mvmt=(0.0000,0.1762,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.1071,-0.4068) mvmt=(0.0000,0.1762,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.4922,-0.5570) mvmt=(0.0000,0.1762,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.4922,-0.5770) mvmt=(0.0000,0.1762,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,7.008,93.443) lpos=(-11.111,4.492,-0.577) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.4922,-0.5770) mvmt=(0.0000,0.1762,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2861,0.3442,1.0482) mvmt=(0.0000,0.1762,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,0.1042,0.9432) mvmt=(0.0000,0.1762,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.1071,-0.4068) mvmt=(0.0000,0.1762,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.4922,-0.5570) mvmt=(0.0000,0.1762,0.1823) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2893,4.5062,-0.5625) mvmt=(-0.1783,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2893,4.5062,-0.5625) mvmt=(-0.1783,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.789,6.994,93.458) lpos=(-11.289,4.506,-0.562) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2893,4.5062,-0.5625) mvmt=(-0.1783,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4643,0.3582,1.0627) mvmt=(-0.1783,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4893,0.1182,0.9577) mvmt=(-0.1783,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4893,-2.0931,-0.3923) mvmt=(-0.1783,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2893,4.5062,-0.5425) mvmt=(-0.1783,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.789,6.994,93.458) lpos=(-11.289,4.506,-0.562) lprev=(-11.111,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.5063,-0.5625) mvmt=(0.0000,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,6.994,93.458) lpos=(-11.111,4.506,-0.562) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.5063,-0.5625) mvmt=(0.0000,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2861,0.3582,1.0627) mvmt=(0.0000,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,0.1182,0.9577) mvmt=(0.0000,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.0931,-0.3923) mvmt=(0.0000,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.5063,-0.5425) mvmt=(0.0000,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.5063,-0.5625) mvmt=(0.0000,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,6.994,93.458) lpos=(-11.111,4.506,-0.562) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.5063,-0.5625) mvmt=(0.0000,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2861,0.3582,1.0627) mvmt=(0.0000,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,0.1182,0.9577) mvmt=(0.0000,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.0931,-0.3923) mvmt=(0.0000,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.5063,-0.5425) mvmt=(0.0000,0.1903,0.1968) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2533,4.5101,-0.5584) mvmt=(-0.1423,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2533,4.5101,-0.5584) mvmt=(-0.1423,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.753,6.990,93.462) lpos=(-11.253,4.510,-0.558) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2533,4.5101,-0.5584) mvmt=(-0.1423,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4283,0.3621,1.0667) mvmt=(-0.1423,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4533,0.1221,0.9618) mvmt=(-0.1423,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4533,-2.0892,-0.3883) mvmt=(-0.1423,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2533,4.5101,-0.5385) mvmt=(-0.1423,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.753,6.990,93.462) lpos=(-11.253,4.510,-0.558) lprev=(-11.111,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.5101,-0.5584) mvmt=(0.0000,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,6.990,93.462) lpos=(-11.111,4.510,-0.558) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.5101,-0.5584) mvmt=(0.0000,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2861,0.3621,1.0667) mvmt=(0.0000,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,0.1221,0.9618) mvmt=(0.0000,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.0892,-0.3883) mvmt=(0.0000,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.5101,-0.5385) mvmt=(0.0000,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.5101,-0.5584) mvmt=(0.0000,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,6.990,93.462) lpos=(-11.111,4.510,-0.558) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.5101,-0.5584) mvmt=(0.0000,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2861,0.3621,1.0667) mvmt=(0.0000,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,0.1221,0.9618) mvmt=(0.0000,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.0892,-0.3883) mvmt=(0.0000,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.5101,-0.5385) mvmt=(0.0000,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2205,4.5200,-0.5483) mvmt=(-0.1094,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2205,4.5200,-0.5483) mvmt=(-0.1094,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.720,6.980,93.472) lpos=(-11.220,4.520,-0.548) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2205,4.5200,-0.5483) mvmt=(-0.1094,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3955,0.3719,1.0769) mvmt=(-0.1094,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4205,0.1319,0.9719) mvmt=(-0.1094,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4205,-2.0793,-0.3781) mvmt=(-0.1094,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2205,4.5200,-0.5283) mvmt=(-0.1094,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.720,6.980,93.472) lpos=(-11.220,4.520,-0.548) lprev=(-11.111,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.5200,-0.5483) mvmt=(0.0000,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,6.980,93.472) lpos=(-11.111,4.520,-0.548) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.5200,-0.5483) mvmt=(0.0000,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2861,0.3719,1.0769) mvmt=(0.0000,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,0.1319,0.9719) mvmt=(0.0000,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.0793,-0.3781) mvmt=(0.0000,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.5200,-0.5283) mvmt=(0.0000,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.5200,-0.5483) mvmt=(0.0000,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,6.980,93.472) lpos=(-11.111,4.520,-0.548) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.5200,-0.5483) mvmt=(0.0000,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2861,0.3719,1.0769) mvmt=(0.0000,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,0.1319,0.9719) mvmt=(0.0000,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.0793,-0.3781) mvmt=(0.0000,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.5200,-0.5283) mvmt=(0.0000,0.2040,0.2110) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1826,4.5186,-0.5497) mvmt=(-0.0715,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1826,4.5186,-0.5497) mvmt=(-0.0715,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.683,6.981,93.470) lpos=(-11.183,4.519,-0.550) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1826,4.5186,-0.5497) mvmt=(-0.0715,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3576,0.3705,1.0755) mvmt=(-0.0715,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3826,0.1305,0.9705) mvmt=(-0.0715,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3826,-2.0807,-0.3795) mvmt=(-0.0715,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1826,4.5186,-0.5297) mvmt=(-0.0715,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.683,6.981,93.470) lpos=(-11.183,4.519,-0.550) lprev=(-11.111,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.5186,-0.5497) mvmt=(0.0000,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,6.981,93.470) lpos=(-11.111,4.519,-0.550) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.5186,-0.5497) mvmt=(0.0000,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2861,0.3705,1.0755) mvmt=(0.0000,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,0.1305,0.9705) mvmt=(0.0000,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.0807,-0.3795) mvmt=(0.0000,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.5186,-0.5297) mvmt=(0.0000,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.5186,-0.5497) mvmt=(0.0000,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,6.981,93.470) lpos=(-11.111,4.519,-0.550) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.5186,-0.5497) mvmt=(0.0000,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2861,0.3705,1.0755) mvmt=(0.0000,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,0.1305,0.9705) mvmt=(0.0000,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.0807,-0.3795) mvmt=(0.0000,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.5186,-0.5297) mvmt=(0.0000,0.2026,0.2096) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1469,4.5179,-0.5504) mvmt=(-0.0358,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1469,4.5179,-0.5504) mvmt=(-0.0358,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.647,6.982,93.470) lpos=(-11.147,4.518,-0.550) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1469,4.5179,-0.5504) mvmt=(-0.0358,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3219,0.3699,1.0748) mvmt=(-0.0358,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3468,0.1299,0.9698) mvmt=(-0.0358,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3468,-2.0814,-0.3802) mvmt=(-0.0358,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1469,4.5179,-0.5304) mvmt=(-0.0358,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.647,6.982,93.470) lpos=(-11.147,4.518,-0.550) lprev=(-11.111,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.5179,-0.5504) mvmt=(0.0000,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,6.982,93.470) lpos=(-11.111,4.518,-0.550) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.5179,-0.5504) mvmt=(0.0000,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2861,0.3699,1.0748) mvmt=(0.0000,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,0.1299,0.9698) mvmt=(0.0000,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.0814,-0.3802) mvmt=(0.0000,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.5179,-0.5304) mvmt=(0.0000,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.5179,-0.5504) mvmt=(0.0000,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.611,6.982,93.470) lpos=(-11.111,4.518,-0.550) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1111,4.5179,-0.5504) mvmt=(0.0000,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2861,0.3699,1.0748) mvmt=(0.0000,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,0.1299,0.9698) mvmt=(0.0000,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3111,-2.0814,-0.3802) mvmt=(0.0000,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1111,4.5179,-0.5304) mvmt=(0.0000,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1121,4.5172,-0.5511) mvmt=(-0.0011,0.2013,0.2082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.612,6.983,93.469) lpos=(-11.112,4.517,-0.551) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1121,4.5172,-0.5511) mvmt=(-0.0011,0.2013,0.2082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2871,0.3692,1.0741) mvmt=(-0.0011,0.2013,0.2082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3121,0.1292,0.9691) mvmt=(-0.0011,0.2013,0.2082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3121,-2.0821,-0.3809) mvmt=(-0.0011,0.2013,0.2082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1121,4.5172,-0.5311) mvmt=(-0.0011,0.2013,0.2082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1121,4.5172,-0.5511) mvmt=(-0.0011,0.2013,0.2082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.612,6.983,93.469) lpos=(-11.112,4.517,-0.551) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1121,4.5172,-0.5511) mvmt=(-0.0011,0.2013,0.2082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2871,0.3692,1.0741) mvmt=(-0.0011,0.2013,0.2082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3121,0.1292,0.9691) mvmt=(-0.0011,0.2013,0.2082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3121,-2.0821,-0.3809) mvmt=(-0.0011,0.2013,0.2082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1121,4.5172,-0.5311) mvmt=(-0.0011,0.2013,0.2082) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1121,4.3160,-0.7593) mvmt=(-0.0011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.612,7.184,93.261) lpos=(-11.112,4.316,-0.759) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2871,0.1679,0.8659) mvmt=(-0.0011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3121,-0.0721,0.7609) mvmt=(-0.0011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3121,-2.2833,-0.5891) mvmt=(-0.0011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1121,4.3160,-0.7393) mvmt=(-0.0011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1121,4.3160,-1.5093) mvmt=(-0.0011,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.612,7.184,92.511) lpos=(-11.112,4.316,-1.509) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2871,0.1679,0.1159) mvmt=(-0.0011,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3121,-0.0721,0.0109) mvmt=(-0.0011,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3121,-0.0721,0.0109) out=(-0.3121,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.1121,4.3160,-0.7593) mvmt=(-0.0011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.612,7.184,93.261) lpos=(-11.112,4.316,-0.759) lprev=(-11.111,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2871,0.1679,0.8659) mvmt=(-0.0011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3121,-0.0721,0.7609) mvmt=(-0.0011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3121,-2.2833,-0.5891) mvmt=(-0.0011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1121,4.3160,-0.7393) mvmt=(-0.0011,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0764,4.5232,-0.5450) mvmt=(0.0357,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.576,6.977,93.475) lpos=(-11.076,4.523,-0.545) lprev=(-11.112,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0764,4.5232,-0.5450) mvmt=(0.0357,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2514,0.3751,1.0802) mvmt=(0.0357,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2764,0.1351,0.9752) mvmt=(0.0357,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2764,-2.0761,-0.3748) mvmt=(0.0357,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0764,4.5232,-0.5250) mvmt=(0.0357,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0764,4.5232,-0.5450) mvmt=(0.0357,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.576,6.977,93.475) lpos=(-11.076,4.523,-0.545) lprev=(-11.112,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0764,4.5232,-0.5450) mvmt=(0.0357,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2514,0.3751,1.0802) mvmt=(0.0357,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2764,0.1351,0.9752) mvmt=(0.0357,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2764,-2.0761,-0.3748) mvmt=(0.0357,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0764,4.5232,-0.5250) mvmt=(0.0357,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0764,4.3160,-0.7593) mvmt=(0.0357,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.576,7.184,93.261) lpos=(-11.076,4.316,-0.759) lprev=(-11.112,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2514,0.1679,0.8659) mvmt=(0.0357,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2764,-0.0721,0.7609) mvmt=(0.0357,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2764,-2.2833,-0.5891) mvmt=(0.0357,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0764,4.3160,-0.7393) mvmt=(0.0357,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0764,4.3160,-1.5093) mvmt=(0.0357,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.576,7.184,92.511) lpos=(-11.076,4.316,-1.509) lprev=(-11.112,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2514,0.1679,0.1159) mvmt=(0.0357,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2764,-0.0721,0.0109) mvmt=(0.0357,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2764,-0.0721,0.0109) out=(-0.2764,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0764,4.3160,-0.7593) mvmt=(0.0357,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.576,7.184,93.261) lpos=(-11.076,4.316,-0.759) lprev=(-11.112,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2514,0.1679,0.8659) mvmt=(0.0357,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2764,-0.0721,0.7609) mvmt=(0.0357,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2764,-2.2833,-0.5891) mvmt=(0.0357,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0764,4.3160,-0.7393) mvmt=(0.0357,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0422,4.5145,-0.5539) mvmt=(0.0342,0.1985,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.542,6.985,93.466) lpos=(-11.042,4.515,-0.554) lprev=(-11.076,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0422,4.5145,-0.5539) mvmt=(0.0342,0.1985,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2172,0.3665,1.0713) mvmt=(0.0342,0.1985,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2422,0.1265,0.9663) mvmt=(0.0342,0.1985,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2422,-2.0848,-0.3837) mvmt=(0.0342,0.1985,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0422,4.5145,-0.5339) mvmt=(0.0342,0.1985,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0422,4.5145,-0.5539) mvmt=(0.0342,0.1985,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.542,6.985,93.466) lpos=(-11.042,4.515,-0.554) lprev=(-11.076,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0422,4.5145,-0.5539) mvmt=(0.0342,0.1985,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2172,0.3665,1.0713) mvmt=(0.0342,0.1985,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2422,0.1265,0.9663) mvmt=(0.0342,0.1985,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2422,-2.0848,-0.3837) mvmt=(0.0342,0.1985,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0422,4.5145,-0.5339) mvmt=(0.0342,0.1985,0.2054) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0422,4.3160,-0.7593) mvmt=(0.0342,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.542,7.184,93.261) lpos=(-11.042,4.316,-0.759) lprev=(-11.076,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2172,0.1679,0.8659) mvmt=(0.0342,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2422,-0.0721,0.7609) mvmt=(0.0342,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2422,-2.2833,-0.5891) mvmt=(0.0342,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0422,4.3160,-0.7393) mvmt=(0.0342,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0422,4.3160,-1.5093) mvmt=(0.0342,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.542,7.184,92.511) lpos=(-11.042,4.316,-1.509) lprev=(-11.076,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2172,0.1679,0.1159) mvmt=(0.0342,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2422,-0.0721,0.0109) mvmt=(0.0342,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2422,-0.0721,0.0109) out=(-0.2422,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0422,4.3160,-0.7593) mvmt=(0.0342,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.542,7.184,93.261) lpos=(-11.042,4.316,-0.759) lprev=(-11.076,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2172,0.1679,0.8659) mvmt=(0.0342,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2422,-0.0721,0.7609) mvmt=(0.0342,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2422,-2.2833,-0.5891) mvmt=(0.0342,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0422,4.3160,-0.7393) mvmt=(0.0342,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0329,4.5107,-0.5578) mvmt=(0.0093,0.1948,0.2015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.533,6.989,93.462) lpos=(-11.033,4.511,-0.558) lprev=(-11.042,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0329,4.5107,-0.5578) mvmt=(0.0093,0.1948,0.2015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2079,0.3627,1.0674) mvmt=(0.0093,0.1948,0.2015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2329,0.1227,0.9624) mvmt=(0.0093,0.1948,0.2015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2329,-2.0886,-0.3876) mvmt=(0.0093,0.1948,0.2015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0329,4.5107,-0.5378) mvmt=(0.0093,0.1948,0.2015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0329,4.5107,-0.5578) mvmt=(0.0093,0.1948,0.2015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.533,6.989,93.462) lpos=(-11.033,4.511,-0.558) lprev=(-11.042,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0329,4.5107,-0.5578) mvmt=(0.0093,0.1948,0.2015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2079,0.3627,1.0674) mvmt=(0.0093,0.1948,0.2015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2329,0.1227,0.9624) mvmt=(0.0093,0.1948,0.2015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2329,-2.0886,-0.3876) mvmt=(0.0093,0.1948,0.2015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0329,4.5107,-0.5378) mvmt=(0.0093,0.1948,0.2015) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0329,4.3160,-0.7593) mvmt=(0.0093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.533,7.184,93.261) lpos=(-11.033,4.316,-0.759) lprev=(-11.042,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2079,0.1679,0.8659) mvmt=(0.0093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2329,-0.0721,0.7609) mvmt=(0.0093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2329,-2.2833,-0.5891) mvmt=(0.0093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0329,4.3160,-0.7393) mvmt=(0.0093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0329,4.3160,-1.5093) mvmt=(0.0093,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.533,7.184,92.511) lpos=(-11.033,4.316,-1.509) lprev=(-11.042,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2079,0.1679,0.1159) mvmt=(0.0093,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2329,-0.0721,0.0109) mvmt=(0.0093,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2329,-0.0721,0.0109) out=(-0.2329,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0329,4.3160,-0.7593) mvmt=(0.0093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.533,7.184,93.261) lpos=(-11.033,4.316,-0.759) lprev=(-11.042,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2079,0.1679,0.8659) mvmt=(0.0093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2329,-0.0721,0.7609) mvmt=(0.0093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2329,-2.2833,-0.5891) mvmt=(0.0093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0329,4.3160,-0.7393) mvmt=(0.0093,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0597,4.5229,-0.5453) mvmt=(-0.0267,0.2069,0.2140) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.560,6.977,93.475) lpos=(-11.060,4.523,-0.545) lprev=(-11.033,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0597,4.5229,-0.5453) mvmt=(-0.0267,0.2069,0.2140) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2347,0.3748,1.0799) mvmt=(-0.0267,0.2069,0.2140) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2597,0.1348,0.9749) mvmt=(-0.0267,0.2069,0.2140) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2597,-2.0765,-0.3751) mvmt=(-0.0267,0.2069,0.2140) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0597,4.5229,-0.5253) mvmt=(-0.0267,0.2069,0.2140) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0597,4.5229,-0.5453) mvmt=(-0.0267,0.2069,0.2140) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.560,6.977,93.475) lpos=(-11.060,4.523,-0.545) lprev=(-11.033,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0597,4.5229,-0.5453) mvmt=(-0.0267,0.2069,0.2140) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2347,0.3748,1.0799) mvmt=(-0.0267,0.2069,0.2140) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2597,0.1348,0.9749) mvmt=(-0.0267,0.2069,0.2140) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2597,-2.0765,-0.3751) mvmt=(-0.0267,0.2069,0.2140) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0597,4.5229,-0.5253) mvmt=(-0.0267,0.2069,0.2140) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0597,4.3160,-0.7593) mvmt=(-0.0267,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.560,7.184,93.261) lpos=(-11.060,4.316,-0.759) lprev=(-11.033,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2347,0.1679,0.8659) mvmt=(-0.0267,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2597,-0.0721,0.7609) mvmt=(-0.0267,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2597,-2.2833,-0.5891) mvmt=(-0.0267,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0597,4.3160,-0.7393) mvmt=(-0.0267,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0597,4.3160,-1.5093) mvmt=(-0.0267,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.560,7.184,92.511) lpos=(-11.060,4.316,-1.509) lprev=(-11.033,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2347,0.1679,0.1159) mvmt=(-0.0267,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2597,-0.0721,0.0109) mvmt=(-0.0267,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2597,-0.0721,0.0109) out=(-0.2597,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0597,4.3160,-0.7593) mvmt=(-0.0267,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.560,7.184,93.261) lpos=(-11.060,4.316,-0.759) lprev=(-11.033,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2347,0.1679,0.8659) mvmt=(-0.0267,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2597,-0.0721,0.7609) mvmt=(-0.0267,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2597,-2.2833,-0.5891) mvmt=(-0.0267,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0597,4.3160,-0.7393) mvmt=(-0.0267,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1164,4.5076,-0.5611) mvmt=(-0.0567,0.1916,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,6.992,93.459) lpos=(-11.116,4.508,-0.561) lprev=(-11.060,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.5076,-0.5611) mvmt=(-0.0567,0.1916,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2914,0.3596,1.0641) mvmt=(-0.0567,0.1916,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,0.1196,0.9591) mvmt=(-0.0567,0.1916,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,-2.0917,-0.3909) mvmt=(-0.0567,0.1916,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.5076,-0.5411) mvmt=(-0.0567,0.1916,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.5076,-0.5611) mvmt=(-0.0567,0.1916,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,6.992,93.459) lpos=(-11.116,4.508,-0.561) lprev=(-11.060,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.5076,-0.5611) mvmt=(-0.0567,0.1916,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2914,0.3596,1.0641) mvmt=(-0.0567,0.1916,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,0.1196,0.9591) mvmt=(-0.0567,0.1916,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,-2.0917,-0.3909) mvmt=(-0.0567,0.1916,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.5076,-0.5411) mvmt=(-0.0567,0.1916,0.1982) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.3160,-0.7593) mvmt=(-0.0567,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.184,93.261) lpos=(-11.116,4.316,-0.759) lprev=(-11.060,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2914,0.1679,0.8659) mvmt=(-0.0567,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,-0.0721,0.7609) mvmt=(-0.0567,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,-2.2833,-0.5891) mvmt=(-0.0567,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.3160,-0.7393) mvmt=(-0.0567,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.3160,-1.5093) mvmt=(-0.0567,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.184,92.511) lpos=(-11.116,4.316,-1.509) lprev=(-11.060,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2914,0.1679,0.1159) mvmt=(-0.0567,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,-0.0721,0.0109) mvmt=(-0.0567,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3164,-0.0721,0.0109) out=(-0.3164,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.1164,4.3160,-0.7593) mvmt=(-0.0567,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.184,93.261) lpos=(-11.116,4.316,-0.759) lprev=(-11.060,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2914,0.1679,0.8659) mvmt=(-0.0567,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,-0.0721,0.7609) mvmt=(-0.0567,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,-2.2833,-0.5891) mvmt=(-0.0567,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.3160,-0.7393) mvmt=(-0.0567,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2119,4.5162,-0.5522) mvmt=(-0.0956,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2119,4.5162,-0.5522) mvmt=(-0.0956,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.712,6.984,93.468) lpos=(-11.212,4.516,-0.552) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2119,4.5162,-0.5522) mvmt=(-0.0956,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3869,0.3682,1.0730) mvmt=(-0.0956,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4119,0.1282,0.9680) mvmt=(-0.0956,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4119,-2.0831,-0.3820) mvmt=(-0.0956,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2119,4.5162,-0.5322) mvmt=(-0.0956,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.712,6.984,93.468) lpos=(-11.212,4.516,-0.552) lprev=(-11.116,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.5162,-0.5522) mvmt=(0.0000,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,6.984,93.468) lpos=(-11.116,4.516,-0.552) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.5162,-0.5522) mvmt=(0.0000,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2914,0.3682,1.0730) mvmt=(0.0000,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,0.1282,0.9680) mvmt=(0.0000,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,-2.0831,-0.3820) mvmt=(0.0000,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.5162,-0.5322) mvmt=(0.0000,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.5162,-0.5522) mvmt=(0.0000,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,6.984,93.468) lpos=(-11.116,4.516,-0.552) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.5162,-0.5522) mvmt=(0.0000,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2914,0.3682,1.0730) mvmt=(0.0000,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,0.1282,0.9680) mvmt=(0.0000,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,-2.0831,-0.3820) mvmt=(0.0000,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.5162,-0.5322) mvmt=(0.0000,0.2002,0.2071) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2527,4.5185,-0.5498) mvmt=(-0.1363,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2527,4.5185,-0.5498) mvmt=(-0.1363,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.753,6.981,93.470) lpos=(-11.253,4.519,-0.550) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2527,4.5185,-0.5498) mvmt=(-0.1363,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4277,0.3705,1.0754) mvmt=(-0.1363,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4527,0.1305,0.9704) mvmt=(-0.1363,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4527,-2.0808,-0.3796) mvmt=(-0.1363,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2527,4.5185,-0.5298) mvmt=(-0.1363,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.753,6.981,93.470) lpos=(-11.253,4.519,-0.550) lprev=(-11.116,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.5185,-0.5498) mvmt=(0.0000,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,6.981,93.470) lpos=(-11.116,4.519,-0.550) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.5185,-0.5498) mvmt=(0.0000,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2914,0.3705,1.0754) mvmt=(0.0000,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,0.1305,0.9704) mvmt=(0.0000,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,-2.0808,-0.3796) mvmt=(0.0000,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.5185,-0.5298) mvmt=(0.0000,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.5185,-0.5498) mvmt=(0.0000,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,6.981,93.470) lpos=(-11.116,4.519,-0.550) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.5185,-0.5498) mvmt=(0.0000,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2914,0.3705,1.0754) mvmt=(0.0000,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,0.1305,0.9704) mvmt=(0.0000,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,-2.0808,-0.3796) mvmt=(0.0000,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.5185,-0.5298) mvmt=(0.0000,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2402,4.5000,-0.5689) mvmt=(-0.1238,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2402,4.5000,-0.5689) mvmt=(-0.1238,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.740,7.000,93.451) lpos=(-11.240,4.500,-0.569) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.2402,4.5000,-0.5689) mvmt=(-0.1238,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.4152,0.3520,1.0563) mvmt=(-0.1238,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4402,0.1120,0.9513) mvmt=(-0.1238,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4402,-2.0993,-0.3987) mvmt=(-0.1238,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2402,4.5000,-0.5489) mvmt=(-0.1238,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.740,7.000,93.451) lpos=(-11.240,4.500,-0.569) lprev=(-11.116,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.5000,-0.5689) mvmt=(0.0000,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.000,93.451) lpos=(-11.116,4.500,-0.569) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.5000,-0.5689) mvmt=(0.0000,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2914,0.3520,1.0563) mvmt=(0.0000,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,0.1120,0.9513) mvmt=(0.0000,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,-2.0993,-0.3987) mvmt=(0.0000,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.5000,-0.5489) mvmt=(0.0000,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.5000,-0.5689) mvmt=(0.0000,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.000,93.451) lpos=(-11.116,4.500,-0.569) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.5000,-0.5689) mvmt=(0.0000,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2914,0.3520,1.0563) mvmt=(0.0000,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,0.1120,0.9513) mvmt=(0.0000,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,-2.0993,-0.3987) mvmt=(0.0000,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.5000,-0.5489) mvmt=(0.0000,0.1840,0.1904) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1878,4.4377,-0.6334) mvmt=(-0.0715,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1878,4.4377,-0.6334) mvmt=(-0.0715,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.688,7.062,93.387) lpos=(-11.188,4.438,-0.633) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1878,4.4377,-0.6334) mvmt=(-0.0715,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3628,0.2896,0.9918) mvmt=(-0.0715,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3878,0.0496,0.8868) mvmt=(-0.0715,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3878,-2.1616,-0.4632) mvmt=(-0.0715,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1878,4.4377,-0.6134) mvmt=(-0.0715,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.688,7.062,93.387) lpos=(-11.188,4.438,-0.633) lprev=(-11.116,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.4377,-0.6334) mvmt=(0.0000,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.062,93.387) lpos=(-11.116,4.438,-0.633) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.4377,-0.6334) mvmt=(0.0000,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2914,0.2896,0.9918) mvmt=(0.0000,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,0.0496,0.8868) mvmt=(0.0000,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,-2.1616,-0.4632) mvmt=(0.0000,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.4377,-0.6134) mvmt=(0.0000,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.4377,-0.6334) mvmt=(0.0000,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.062,93.387) lpos=(-11.116,4.438,-0.633) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.4377,-0.6334) mvmt=(0.0000,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2914,0.2896,0.9918) mvmt=(0.0000,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,0.0496,0.8868) mvmt=(0.0000,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,-2.1616,-0.4632) mvmt=(0.0000,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.4377,-0.6134) mvmt=(0.0000,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1878,4.4377,-0.6334) mvmt=(-0.0715,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1878,4.4377,-0.6334) mvmt=(-0.0715,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.688,7.062,93.387) lpos=(-11.188,4.438,-0.633) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1878,4.4377,-0.6334) mvmt=(-0.0715,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3628,0.2896,0.9918) mvmt=(-0.0715,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3878,0.0496,0.8868) mvmt=(-0.0715,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3878,-2.1616,-0.4632) mvmt=(-0.0715,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1878,4.4377,-0.6134) mvmt=(-0.0715,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.688,7.062,93.387) lpos=(-11.188,4.438,-0.633) lprev=(-11.116,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.4377,-0.6334) mvmt=(0.0000,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.062,93.387) lpos=(-11.116,4.438,-0.633) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.4377,-0.6334) mvmt=(0.0000,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2914,0.2896,0.9918) mvmt=(0.0000,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,0.0496,0.8868) mvmt=(0.0000,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,-2.1616,-0.4632) mvmt=(0.0000,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.4377,-0.6134) mvmt=(0.0000,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.4377,-0.6334) mvmt=(0.0000,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,7.062,93.387) lpos=(-11.116,4.438,-0.633) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.4377,-0.6334) mvmt=(0.0000,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2914,0.2896,0.9918) mvmt=(0.0000,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,0.0496,0.8868) mvmt=(0.0000,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,-2.1616,-0.4632) mvmt=(0.0000,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.4377,-0.6134) mvmt=(0.0000,0.1217,0.1259) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1969,4.5151,-0.5534) mvmt=(-0.0805,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1969,4.5151,-0.5534) mvmt=(-0.0805,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.697,6.985,93.467) lpos=(-11.197,4.515,-0.553) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1969,4.5151,-0.5534) mvmt=(-0.0805,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3719,0.3670,1.0718) mvmt=(-0.0805,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3969,0.1270,0.9669) mvmt=(-0.0805,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3969,-2.0842,-0.3832) mvmt=(-0.0805,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1969,4.5151,-0.5334) mvmt=(-0.0805,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.697,6.985,93.467) lpos=(-11.197,4.515,-0.553) lprev=(-11.116,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.5151,-0.5534) mvmt=(0.0000,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,6.985,93.467) lpos=(-11.116,4.515,-0.553) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.5151,-0.5534) mvmt=(0.0000,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2914,0.3670,1.0718) mvmt=(0.0000,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,0.1270,0.9669) mvmt=(0.0000,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,-2.0842,-0.3832) mvmt=(0.0000,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.5151,-0.5334) mvmt=(0.0000,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.5151,-0.5534) mvmt=(0.0000,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,6.985,93.467) lpos=(-11.116,4.515,-0.553) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.5151,-0.5534) mvmt=(0.0000,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2914,0.3670,1.0718) mvmt=(0.0000,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,0.1270,0.9669) mvmt=(0.0000,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,-2.0842,-0.3832) mvmt=(0.0000,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.5151,-0.5334) mvmt=(0.0000,0.1991,0.2059) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1622,4.5177,-0.5506) mvmt=(-0.0458,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1622,4.5177,-0.5506) mvmt=(-0.0458,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.662,6.982,93.469) lpos=(-11.162,4.518,-0.551) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1622,4.5177,-0.5506) mvmt=(-0.0458,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3372,0.3696,1.0746) mvmt=(-0.0458,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3622,0.1296,0.9696) mvmt=(-0.0458,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3622,-2.0816,-0.3804) mvmt=(-0.0458,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1622,4.5177,-0.5306) mvmt=(-0.0458,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.662,6.982,93.469) lpos=(-11.162,4.518,-0.551) lprev=(-11.116,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.5177,-0.5506) mvmt=(0.0000,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,6.982,93.469) lpos=(-11.116,4.518,-0.551) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.5177,-0.5506) mvmt=(0.0000,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2914,0.3696,1.0746) mvmt=(0.0000,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,0.1296,0.9696) mvmt=(0.0000,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,-2.0816,-0.3804) mvmt=(0.0000,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.5177,-0.5306) mvmt=(0.0000,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.5177,-0.5506) mvmt=(0.0000,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,6.982,93.469) lpos=(-11.116,4.518,-0.551) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.5177,-0.5506) mvmt=(0.0000,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2914,0.3696,1.0746) mvmt=(0.0000,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,0.1296,0.9696) mvmt=(0.0000,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,-2.0816,-0.3804) mvmt=(0.0000,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.5177,-0.5306) mvmt=(0.0000,0.2017,0.2087) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1283,4.5088,-0.5598) mvmt=(-0.0119,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1283,4.5088,-0.5598) mvmt=(-0.0119,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.628,6.991,93.460) lpos=(-11.128,4.509,-0.560) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1283,4.5088,-0.5598) mvmt=(-0.0119,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3033,0.3608,1.0654) mvmt=(-0.0119,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3283,0.1208,0.9604) mvmt=(-0.0119,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3283,-2.0905,-0.3896) mvmt=(-0.0119,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1283,4.5088,-0.5398) mvmt=(-0.0119,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.628,6.991,93.460) lpos=(-11.128,4.509,-0.560) lprev=(-11.116,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.5088,-0.5598) mvmt=(0.0000,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,6.991,93.460) lpos=(-11.116,4.509,-0.560) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.5088,-0.5598) mvmt=(0.0000,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2914,0.3608,1.0654) mvmt=(0.0000,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,0.1208,0.9604) mvmt=(0.0000,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,-2.0905,-0.3896) mvmt=(0.0000,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.5088,-0.5398) mvmt=(0.0000,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.5088,-0.5598) mvmt=(0.0000,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.616,6.991,93.460) lpos=(-11.116,4.509,-0.560) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1164,4.5088,-0.5598) mvmt=(0.0000,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2914,0.3608,1.0654) mvmt=(0.0000,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,0.1208,0.9604) mvmt=(0.0000,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3164,-2.0905,-0.3896) mvmt=(0.0000,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1164,4.5088,-0.5398) mvmt=(0.0000,0.1929,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0907,4.5293,-0.5386) mvmt=(0.0257,0.2133,0.2207) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.591,6.971,93.481) lpos=(-11.091,4.529,-0.539) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0907,4.5293,-0.5386) mvmt=(0.0257,0.2133,0.2207) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2657,0.3812,1.0866) mvmt=(0.0257,0.2133,0.2207) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2907,0.1412,0.9816) mvmt=(0.0257,0.2133,0.2207) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2907,-2.0700,-0.3684) mvmt=(0.0257,0.2133,0.2207) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0907,4.5293,-0.5186) mvmt=(0.0257,0.2133,0.2207) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0907,4.5293,-0.5386) mvmt=(0.0257,0.2133,0.2207) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.591,6.971,93.481) lpos=(-11.091,4.529,-0.539) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0907,4.5293,-0.5386) mvmt=(0.0257,0.2133,0.2207) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2657,0.3812,1.0866) mvmt=(0.0257,0.2133,0.2207) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2907,0.1412,0.9816) mvmt=(0.0257,0.2133,0.2207) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2907,-2.0700,-0.3684) mvmt=(0.0257,0.2133,0.2207) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0907,4.5293,-0.5186) mvmt=(0.0257,0.2133,0.2207) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0907,4.3160,-0.7593) mvmt=(0.0257,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.591,7.184,93.261) lpos=(-11.091,4.316,-0.759) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2657,0.1679,0.8659) mvmt=(0.0257,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2907,-0.0721,0.7609) mvmt=(0.0257,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2907,-2.2833,-0.5891) mvmt=(0.0257,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0907,4.3160,-0.7393) mvmt=(0.0257,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0907,4.3160,-1.5093) mvmt=(0.0257,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.591,7.184,92.511) lpos=(-11.091,4.316,-1.509) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2657,0.1679,0.1159) mvmt=(0.0257,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2907,-0.0721,0.0109) mvmt=(0.0257,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2907,-0.0721,0.0109) out=(-0.2907,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0907,4.3160,-0.7593) mvmt=(0.0257,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.591,7.184,93.261) lpos=(-11.091,4.316,-0.759) lprev=(-11.116,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2657,0.1679,0.8659) mvmt=(0.0257,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2907,-0.0721,0.7609) mvmt=(0.0257,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2907,-2.2833,-0.5891) mvmt=(0.0257,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0907,4.3160,-0.7393) mvmt=(0.0257,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0364,4.5061,-0.5626) mvmt=(0.0543,0.1902,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.536,6.994,93.457) lpos=(-11.036,4.506,-0.563) lprev=(-11.091,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0364,4.5061,-0.5626) mvmt=(0.0543,0.1902,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2114,0.3581,1.0626) mvmt=(0.0543,0.1902,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2364,0.1181,0.9576) mvmt=(0.0543,0.1902,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2364,-2.0932,-0.3924) mvmt=(0.0543,0.1902,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0364,4.5061,-0.5426) mvmt=(0.0543,0.1902,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0364,4.5061,-0.5626) mvmt=(0.0543,0.1902,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.536,6.994,93.457) lpos=(-11.036,4.506,-0.563) lprev=(-11.091,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0364,4.5061,-0.5626) mvmt=(0.0543,0.1902,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2114,0.3581,1.0626) mvmt=(0.0543,0.1902,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2364,0.1181,0.9576) mvmt=(0.0543,0.1902,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2364,-2.0932,-0.3924) mvmt=(0.0543,0.1902,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0364,4.5061,-0.5426) mvmt=(0.0543,0.1902,0.1967) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0364,4.3160,-0.7593) mvmt=(0.0543,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.536,7.184,93.261) lpos=(-11.036,4.316,-0.759) lprev=(-11.091,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2114,0.1679,0.8659) mvmt=(0.0543,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2364,-0.0721,0.7609) mvmt=(0.0543,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2364,-2.2833,-0.5891) mvmt=(0.0543,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0364,4.3160,-0.7393) mvmt=(0.0543,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0364,4.3160,-1.5093) mvmt=(0.0543,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.536,7.184,92.511) lpos=(-11.036,4.316,-1.509) lprev=(-11.091,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2114,0.1679,0.1159) mvmt=(0.0543,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2364,-0.0721,0.0109) mvmt=(0.0543,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2364,-0.0721,0.0109) out=(-0.2364,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0364,4.3160,-0.7593) mvmt=(0.0543,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.536,7.184,93.261) lpos=(-11.036,4.316,-0.759) lprev=(-11.091,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2114,0.1679,0.8659) mvmt=(0.0543,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2364,-0.0721,0.7609) mvmt=(0.0543,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2364,-2.2833,-0.5891) mvmt=(0.0543,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0364,4.3160,-0.7393) mvmt=(0.0543,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9439,4.5149,-0.5536) mvmt=(0.0925,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.444,6.985,93.466) lpos=(-10.944,4.515,-0.554) lprev=(-11.036,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9439,4.5149,-0.5536) mvmt=(0.0925,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1189,0.3668,1.0716) mvmt=(0.0925,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1439,0.1268,0.9667) mvmt=(0.0925,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1439,-2.0844,-0.3834) mvmt=(0.0925,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9439,4.5149,-0.5336) mvmt=(0.0925,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9439,4.5149,-0.5536) mvmt=(0.0925,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.444,6.985,93.466) lpos=(-10.944,4.515,-0.554) lprev=(-11.036,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9439,4.5149,-0.5536) mvmt=(0.0925,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1189,0.3668,1.0716) mvmt=(0.0925,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1439,0.1268,0.9667) mvmt=(0.0925,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1439,-2.0844,-0.3834) mvmt=(0.0925,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9439,4.5149,-0.5336) mvmt=(0.0925,0.1989,0.2057) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9439,4.3160,-0.7593) mvmt=(0.0925,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.444,7.184,93.261) lpos=(-10.944,4.316,-0.759) lprev=(-11.036,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1189,0.1679,0.8659) mvmt=(0.0925,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1439,-0.0721,0.7609) mvmt=(0.0925,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1439,-2.2833,-0.5891) mvmt=(0.0925,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9439,4.3160,-0.7393) mvmt=(0.0925,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9439,4.3160,-1.5093) mvmt=(0.0925,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.444,7.184,92.511) lpos=(-10.944,4.316,-1.509) lprev=(-11.036,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1189,0.1679,0.1159) mvmt=(0.0925,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1439,-0.0721,0.0109) mvmt=(0.0925,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1439,-0.0721,0.0109) out=(-0.1439,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.9439,4.3160,-0.7593) mvmt=(0.0925,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.444,7.184,93.261) lpos=(-10.944,4.316,-0.759) lprev=(-11.036,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1189,0.1679,0.8659) mvmt=(0.0925,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1439,-0.0721,0.7609) mvmt=(0.0925,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1439,-2.2833,-0.5891) mvmt=(0.0925,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9439,4.3160,-0.7393) mvmt=(0.0925,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8170,4.5107,-0.5579) mvmt=(0.1269,0.1947,0.2014) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.317,6.989,93.462) lpos=(-10.817,4.511,-0.558) lprev=(-10.944,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8170,4.5107,-0.5579) mvmt=(0.1269,0.1947,0.2014) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9920,0.3626,1.0673) mvmt=(0.1269,0.1947,0.2014) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0170,0.1226,0.9623) mvmt=(0.1269,0.1947,0.2014) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0170,-2.0887,-0.3877) mvmt=(0.1269,0.1947,0.2014) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8170,4.5107,-0.5379) mvmt=(0.1269,0.1947,0.2014) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8170,4.5107,-0.5579) mvmt=(0.1269,0.1947,0.2014) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.317,6.989,93.462) lpos=(-10.817,4.511,-0.558) lprev=(-10.944,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8170,4.5107,-0.5579) mvmt=(0.1269,0.1947,0.2014) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9920,0.3626,1.0673) mvmt=(0.1269,0.1947,0.2014) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0170,0.1226,0.9623) mvmt=(0.1269,0.1947,0.2014) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0170,-2.0887,-0.3877) mvmt=(0.1269,0.1947,0.2014) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8170,4.5107,-0.5379) mvmt=(0.1269,0.1947,0.2014) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8170,4.3160,-0.7593) mvmt=(0.1269,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.317,7.184,93.261) lpos=(-10.817,4.316,-0.759) lprev=(-10.944,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9920,0.1679,0.8659) mvmt=(0.1269,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0170,-0.0721,0.7609) mvmt=(0.1269,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0170,-2.2833,-0.5891) mvmt=(0.1269,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8170,4.3160,-0.7393) mvmt=(0.1269,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8170,4.3160,-1.5093) mvmt=(0.1269,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.317,7.184,92.511) lpos=(-10.817,4.316,-1.509) lprev=(-10.944,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9920,0.1679,0.1159) mvmt=(0.1269,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0170,-0.0721,0.0109) mvmt=(0.1269,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0170,-0.0721,0.0109) out=(-0.0170,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.8170,4.3160,-0.7593) mvmt=(0.1269,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.317,7.184,93.261) lpos=(-10.817,4.316,-0.759) lprev=(-10.944,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9920,0.1679,0.8659) mvmt=(0.1269,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0170,-0.0721,0.7609) mvmt=(0.1269,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0170,-2.2833,-0.5891) mvmt=(0.1269,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8170,4.3160,-0.7393) mvmt=(0.1269,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6668,4.4952,-0.5739) mvmt=(0.1502,0.1793,0.1854) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.167,7.005,93.446) lpos=(-10.667,4.495,-0.574) lprev=(-10.817,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6668,4.4952,-0.5739) mvmt=(0.1502,0.1793,0.1854) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8418,0.3472,1.0513) mvmt=(0.1502,0.1793,0.1854) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1332,0.1072,0.9463) mvmt=(0.1502,0.1793,0.1854) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1332,-2.1041,-0.4037) mvmt=(0.1502,0.1793,0.1854) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6668,4.4952,-0.5539) mvmt=(0.1502,0.1793,0.1854) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6668,4.4952,-0.5739) mvmt=(0.1502,0.1793,0.1854) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.167,7.005,93.446) lpos=(-10.667,4.495,-0.574) lprev=(-10.817,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6668,4.4952,-0.5739) mvmt=(0.1502,0.1793,0.1854) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8418,0.3472,1.0513) mvmt=(0.1502,0.1793,0.1854) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1332,0.1072,0.9463) mvmt=(0.1502,0.1793,0.1854) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1332,-2.1041,-0.4037) mvmt=(0.1502,0.1793,0.1854) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6668,4.4952,-0.5539) mvmt=(0.1502,0.1793,0.1854) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6668,4.3160,-0.7593) mvmt=(0.1502,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.167,7.184,93.261) lpos=(-10.667,4.316,-0.759) lprev=(-10.817,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8418,0.1679,0.8659) mvmt=(0.1502,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1332,-0.0721,0.7609) mvmt=(0.1502,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1332,-2.2833,-0.5891) mvmt=(0.1502,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6668,4.3160,-0.7393) mvmt=(0.1502,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6668,4.3160,-1.5093) mvmt=(0.1502,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.167,7.184,92.511) lpos=(-10.667,4.316,-1.509) lprev=(-10.817,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8418,0.1679,0.1159) mvmt=(0.1502,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1332,-0.0721,0.0109) mvmt=(0.1502,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1332,-0.0721,0.0109) out=(0.1332,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6668,4.3160,-0.7593) mvmt=(0.1502,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.167,7.184,93.261) lpos=(-10.667,4.316,-0.759) lprev=(-10.817,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8418,0.1679,0.8659) mvmt=(0.1502,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1332,-0.0721,0.7609) mvmt=(0.1502,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1332,-2.2833,-0.5891) mvmt=(0.1502,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6668,4.3160,-0.7393) mvmt=(0.1502,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4763,4.4978,-0.5712) mvmt=(0.1906,0.1819,0.1881) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.976,7.002,93.449) lpos=(-10.476,4.498,-0.571) lprev=(-10.667,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4763,4.4978,-0.5712) mvmt=(0.1906,0.1819,0.1881) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6513,0.3498,1.0540) mvmt=(0.1906,0.1819,0.1881) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3237,0.1098,0.9490) mvmt=(0.1906,0.1819,0.1881) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3237,-2.1015,-0.4010) mvmt=(0.1906,0.1819,0.1881) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2959,-2.8292,2.4533) mvmt=(-0.0925,0.2466,0.1881) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4763,4.4978,-0.5512) mvmt=(0.1906,0.1819,0.1881) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4763,4.4978,-0.5712) mvmt=(0.1906,0.1819,0.1881) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.976,7.002,93.449) lpos=(-10.476,4.498,-0.571) lprev=(-10.667,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4763,4.4978,-0.5712) mvmt=(0.1906,0.1819,0.1881) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6513,0.3498,1.0540) mvmt=(0.1906,0.1819,0.1881) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3237,0.1098,0.9490) mvmt=(0.1906,0.1819,0.1881) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3237,-2.1015,-0.4010) mvmt=(0.1906,0.1819,0.1881) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2959,-2.8292,2.4533) mvmt=(-0.0925,0.2466,0.1881) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4763,4.4978,-0.5512) mvmt=(0.1906,0.1819,0.1881) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4763,4.3160,-0.7593) mvmt=(0.1906,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.976,7.184,93.261) lpos=(-10.476,4.316,-0.759) lprev=(-10.667,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6513,0.1679,0.8659) mvmt=(0.1906,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3237,-0.0721,0.7609) mvmt=(0.1906,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3237,-2.2833,-0.5891) mvmt=(0.1906,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4763,4.3160,-0.7393) mvmt=(0.1906,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4763,4.3160,-1.5093) mvmt=(0.1906,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.976,7.184,92.511) lpos=(-10.476,4.316,-1.509) lprev=(-10.667,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6513,0.1679,0.1159) mvmt=(0.1906,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3237,-0.0721,0.0109) mvmt=(0.1906,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3237,-0.0721,0.0109) out=(0.3237,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4763,4.3160,-0.7593) mvmt=(0.1906,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.976,7.184,93.261) lpos=(-10.476,4.316,-0.759) lprev=(-10.667,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6513,0.1679,0.8659) mvmt=(0.1906,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3237,-0.0721,0.7609) mvmt=(0.1906,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3237,-2.2833,-0.5891) mvmt=(0.1906,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4763,4.3160,-0.7393) mvmt=(0.1906,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.2594,4.4865,-0.5829) mvmt=(0.2169,0.1705,0.1764) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.2594,4.4865,-0.5829) mvmt=(0.2169,0.1705,0.1764) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.759,7.014,93.437) lpos=(-10.259,4.486,-0.583) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2594,4.4865,-0.5829) mvmt=(0.2169,0.1705,0.1764) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4344,0.3384,1.0423) mvmt=(0.2169,0.1705,0.1764) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4344,0.3384,1.0423) out=(-0.4344,0.3384,1.3673) delta=(0.0000,0.0000,0.3250) deltaMag=0.3250 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4584 dpPos=0.2502 dpMove=-0.4243 iDist=0.5416 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.2594,4.4865,-0.2579) mvmt=(0.2169,0.1705,0.5014) collide=False insertType=0 objState=0x303 winterp=0.4584 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.759,7.014,93.762) lpos=(-10.259,4.486,-0.258) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2594,4.4865,-0.2579) mvmt=(0.2169,0.1705,0.5014) collide=False insertType=0 objState=0x303 winterp=0.4584 return=-1 +[push-back] site=adjust_sphere in=(-10.2594,4.4865,-0.2579) out=(-10.2594,4.4865,-0.2579) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=0.4584->0.4584 dpPos=-0.2579 dpMove=-0.2750 iDist=2.6832 applied=False +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.2594,4.4865,-0.2579) mvmt=(0.2169,0.1705,0.5014) collide=False insertType=0 objState=0x303 winterp=0.4584 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4344,0.3384,1.3673) mvmt=(0.2169,0.1705,0.5014) collide=False insertType=0 objState=0x303 winterp=0.4584 return=-1 +[push-back-disp] site=dispatch center=(0.5406,0.0984,1.2623) mvmt=(0.2169,0.1705,0.5014) collide=False insertType=0 objState=0x303 winterp=0.4584 return=-1 +[push-back-disp] site=dispatch center=(0.5406,-2.1128,-0.0877) mvmt=(0.2169,0.1705,0.5014) collide=False insertType=0 objState=0x303 winterp=0.4584 return=-1 +[push-back-disp] site=dispatch center=(0.3914,-2.6342,2.7666) mvmt=(-0.0717,0.2664,0.5014) collide=False insertType=0 objState=0x303 winterp=0.4584 return=-1 +[push-back-disp] site=dispatch center=(-10.2594,4.4865,-0.2379) mvmt=(0.2169,0.1705,0.5014) collide=False insertType=0 objState=0x303 winterp=0.4584 return=-1 +[push-back-disp] site=dispatch center=(-10.2594,4.4865,-0.2579) mvmt=(0.2169,0.1705,0.5014) collide=False insertType=1 objState=0x303 winterp=0.4584 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.759,7.014,93.762) lpos=(-10.259,4.486,-0.258) lprev=(-10.476,4.316,-0.759) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.759,7.014,93.437) lpos=(-10.259,4.486,-0.583) lprev=(-10.476,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.2594,4.3160,-0.7593) mvmt=(0.2169,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4584 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.759,7.184,93.261) lpos=(-10.259,4.316,-0.759) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4344,0.1679,0.8659) mvmt=(0.2169,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4584 return=-1 +[push-back-disp] site=dispatch center=(-10.2594,4.3160,-0.7593) mvmt=(0.2169,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.759,7.184,93.261) lpos=(-10.259,4.316,-0.759) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.4344,0.1679,0.8659) mvmt=(0.2169,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.4344,0.1679,0.8659) out=(-0.4344,0.1679,1.1968) delta=(0.0000,0.0000,0.3309) deltaMag=0.3309 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4486 dpPos=0.2460 dpMove=-0.4243 iDist=0.5514 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.2594,4.3160,-0.4284) mvmt=(0.2169,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.759,7.184,93.592) lpos=(-10.259,4.316,-0.428) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.2594,4.3160,-0.4284) mvmt=(0.2169,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.2594,4.3160,-0.4284) mvmt=(0.2169,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.4344,0.1679,1.1968) mvmt=(0.2169,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.5406,-0.0721,1.0918) mvmt=(0.2169,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.5406,-2.2833,-0.2582) mvmt=(0.2169,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.5483,-2.7010,2.5961) mvmt=(0.0851,0.1995,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(-10.2594,4.3160,-0.4084) mvmt=(0.2169,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(-10.2594,4.3160,-0.4284) mvmt=(0.2169,0.0000,0.3309) collide=False insertType=1 objState=0x303 winterp=0.4486 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.759,7.184,93.592) lpos=(-10.259,4.316,-0.428) lprev=(-10.476,4.316,-0.759) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4763,4.4770,-0.4663) mvmt=(0.0000,0.1610,0.2930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4763,4.4770,-0.4663) mvmt=(0.0000,0.1610,0.2930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.976,7.023,93.554) lpos=(-10.476,4.477,-0.466) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4763,4.4770,-0.4663) mvmt=(0.0000,0.1610,0.2930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4763,4.4770,-0.4663) mvmt=(0.0000,0.1610,0.2930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6513,0.3289,1.1589) mvmt=(0.0000,0.1610,0.2930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3237,0.0889,1.0539) mvmt=(0.0000,0.1610,0.2930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3237,-2.1223,-0.2961) mvmt=(0.0000,0.1610,0.2930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3151,-2.8374,2.5582) mvmt=(-0.1481,0.0632,0.2930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4763,4.4770,-0.4463) mvmt=(0.0000,0.1610,0.2930) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.976,7.023,93.554) lpos=(-10.476,4.477,-0.466) lprev=(-10.476,4.316,-0.759) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.1913,4.4796,-0.4636) mvmt=(0.2850,0.1636,0.2957) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1913,4.4796,-0.4636) mvmt=(0.2850,0.1636,0.2957) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.691,7.020,93.556) lpos=(-10.191,4.480,-0.464) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.1913,4.4796,-0.4636) mvmt=(0.2850,0.1636,0.2957) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.1913,4.4796,-0.4636) mvmt=(0.2850,0.1636,0.2957) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.3663,0.3315,1.1616) mvmt=(0.2850,0.1636,0.2957) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3663,0.3315,1.1616) out=(-0.3663,0.3315,1.3604) delta=(0.0000,0.0000,0.1988) deltaMag=0.1988 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.6687 dpPos=0.3394 dpMove=-0.4243 iDist=0.3313 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.1913,4.4796,-0.2648) mvmt=(0.2850,0.1636,0.4945) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.691,7.020,93.755) lpos=(-10.191,4.480,-0.265) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.1913,4.4796,-0.2648) mvmt=(0.2850,0.1636,0.4945) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back] site=adjust_sphere in=(-10.1913,4.4796,-0.2648) out=(-10.1913,4.4796,-0.2648) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=0.6687->0.6687 dpPos=-0.2648 dpMove=-0.4012 iDist=1.8565 applied=False +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.1913,4.4796,-0.2648) mvmt=(0.2850,0.1636,0.4945) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.3663,0.3315,1.3604) mvmt=(0.2850,0.1636,0.4945) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(0.6087,0.0915,1.2554) mvmt=(0.2850,0.1636,0.4945) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(0.6087,-2.1197,-0.0946) mvmt=(0.2850,0.1636,0.4945) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(0.4245,-2.5742,2.7597) mvmt=(-0.0387,0.3263,0.4945) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(-10.1913,4.4796,-0.2448) mvmt=(0.2850,0.1636,0.4945) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(-10.1913,4.4796,-0.2648) mvmt=(0.2850,0.1636,0.4945) collide=False insertType=1 objState=0x303 winterp=0.6687 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.691,7.020,93.755) lpos=(-10.191,4.480,-0.265) lprev=(-10.476,4.316,-0.759) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.691,7.020,93.556) lpos=(-10.191,4.480,-0.464) lprev=(-10.476,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.1913,4.3160,-0.7593) mvmt=(0.2850,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.691,7.184,93.261) lpos=(-10.191,4.316,-0.759) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3663,0.1679,0.8659) mvmt=(0.2850,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(-10.1913,4.3160,-0.7593) mvmt=(0.2850,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.691,7.184,93.261) lpos=(-10.191,4.316,-0.759) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3663,0.1679,0.8659) mvmt=(0.2850,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3663,0.1679,0.8659) out=(-0.3663,0.1679,1.1968) delta=(0.0000,0.0000,0.3309) deltaMag=0.3309 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4486 dpPos=0.2460 dpMove=-0.4243 iDist=0.5514 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.1913,4.3160,-0.4284) mvmt=(0.2850,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.691,7.184,93.592) lpos=(-10.191,4.316,-0.428) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.1913,4.3160,-0.4284) mvmt=(0.2850,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back] site=adjust_sphere in=(-10.1913,4.3160,-0.4284) out=(-10.1913,4.3160,-0.4284) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=0.4486->0.4486 dpPos=-0.4284 dpMove=-0.2691 iDist=3.3753 applied=False +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.1913,4.3160,-0.4284) mvmt=(0.2850,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.3663,0.1679,1.1968) mvmt=(0.2850,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.6087,-0.0721,1.0918) mvmt=(0.2850,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.6087,-2.2833,-0.2582) mvmt=(0.2850,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.5750,-2.6384,2.5961) mvmt=(0.1118,0.2621,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(-10.1913,4.3160,-0.4084) mvmt=(0.2850,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(-10.1913,4.3160,-0.4284) mvmt=(0.2850,0.0000,0.3309) collide=False insertType=1 objState=0x303 winterp=0.4486 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.691,7.184,93.592) lpos=(-10.191,4.316,-0.428) lprev=(-10.476,4.316,-0.759) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4763,4.4667,-0.4765) mvmt=(0.0000,0.1507,0.2828) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4763,4.4667,-0.4765) mvmt=(0.0000,0.1507,0.2828) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.976,7.033,93.543) lpos=(-10.476,4.467,-0.477) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4763,4.4667,-0.4765) mvmt=(0.0000,0.1507,0.2828) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4763,4.4667,-0.4765) mvmt=(0.0000,0.1507,0.2828) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6513,0.3187,1.1487) mvmt=(0.0000,0.1507,0.2828) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3237,0.0787,1.0437) mvmt=(0.0000,0.1507,0.2828) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3237,-2.1326,-0.3063) mvmt=(0.0000,0.1507,0.2828) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3245,-2.8414,2.5480) mvmt=(-0.1386,0.0591,0.2828) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4763,4.4667,-0.4565) mvmt=(0.0000,0.1507,0.2828) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.976,7.033,93.543) lpos=(-10.476,4.467,-0.477) lprev=(-10.476,4.316,-0.759) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.1613,4.4452,-0.4980) mvmt=(0.3150,0.1292,0.2613) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1613,4.4452,-0.4980) mvmt=(0.3150,0.1292,0.2613) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.661,7.055,93.522) lpos=(-10.161,4.445,-0.498) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.1613,4.4452,-0.4980) mvmt=(0.3150,0.1292,0.2613) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.1613,4.4452,-0.4980) mvmt=(0.3150,0.1292,0.2613) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.3363,0.2971,1.1272) mvmt=(0.3150,0.1292,0.2613) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3363,0.2971,1.1272) out=(-0.3363,0.2971,1.3260) delta=(0.0000,0.0000,0.1988) deltaMag=0.1988 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.6687 dpPos=0.3394 dpMove=-0.4243 iDist=0.3313 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.1613,4.4452,-0.2992) mvmt=(0.3150,0.1292,0.4601) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.661,7.055,93.721) lpos=(-10.161,4.445,-0.299) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.1613,4.4452,-0.2992) mvmt=(0.3150,0.1292,0.4601) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back] site=adjust_sphere in=(-10.1613,4.4452,-0.2992) out=(-10.1613,4.4452,-0.2992) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=0.6687->0.6687 dpPos=-0.2992 dpMove=-0.4012 iDist=1.9423 applied=False +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.1613,4.4452,-0.2992) mvmt=(0.3150,0.1292,0.4601) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.3363,0.2971,1.3260) mvmt=(0.3150,0.1292,0.4601) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(0.6387,0.0571,1.2210) mvmt=(0.3150,0.1292,0.4601) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(0.6387,-2.1541,-0.1290) mvmt=(0.3150,0.1292,0.4601) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(0.4679,-2.5601,2.7253) mvmt=(0.0047,0.3404,0.4601) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(-10.1613,4.4452,-0.2792) mvmt=(0.3150,0.1292,0.4601) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(-10.1613,4.4452,-0.2992) mvmt=(0.3150,0.1292,0.4601) collide=False insertType=1 objState=0x303 winterp=0.6687 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.661,7.055,93.721) lpos=(-10.161,4.445,-0.299) lprev=(-10.476,4.316,-0.759) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.661,7.055,93.522) lpos=(-10.161,4.445,-0.498) lprev=(-10.476,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.1613,4.3160,-0.7593) mvmt=(0.3150,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.661,7.184,93.261) lpos=(-10.161,4.316,-0.759) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3363,0.1679,0.8659) mvmt=(0.3150,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6687 return=-1 +[push-back-disp] site=dispatch center=(-10.1613,4.3160,-0.7593) mvmt=(0.3150,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.661,7.184,93.261) lpos=(-10.161,4.316,-0.759) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3363,0.1679,0.8659) mvmt=(0.3150,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3363,0.1679,0.8659) out=(-0.3363,0.1679,1.1968) delta=(0.0000,0.0000,0.3309) deltaMag=0.3309 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4486 dpPos=0.2460 dpMove=-0.4243 iDist=0.5514 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.1613,4.3160,-0.4284) mvmt=(0.3150,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.661,7.184,93.592) lpos=(-10.161,4.316,-0.428) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.1613,4.3160,-0.4284) mvmt=(0.3150,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back] site=adjust_sphere in=(-10.1613,4.3160,-0.4284) out=(-10.1613,4.3160,-0.4284) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=0.4486->0.4486 dpPos=-0.4284 dpMove=-0.2691 iDist=3.3753 applied=False +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.1613,4.3160,-0.4284) mvmt=(0.3150,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.3363,0.1679,1.1968) mvmt=(0.3150,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.6387,-0.0721,1.0918) mvmt=(0.3150,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.6387,-2.2833,-0.2582) mvmt=(0.3150,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.5868,-2.6108,2.5961) mvmt=(0.1236,0.2897,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(-10.1613,4.3160,-0.4084) mvmt=(0.3150,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(-10.1613,4.3160,-0.4284) mvmt=(0.3150,0.0000,0.3309) collide=False insertType=1 objState=0x303 winterp=0.4486 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.661,7.184,93.592) lpos=(-10.161,4.316,-0.428) lprev=(-10.476,4.316,-0.759) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4763,4.4437,-0.4995) mvmt=(0.0000,0.1278,0.2598) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.976,7.056,93.521) lpos=(-10.476,4.444,-0.499) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4763,4.4437,-0.4995) mvmt=(0.0000,0.1278,0.2598) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4763,4.4437,-0.4995) mvmt=(0.0000,0.1278,0.2598) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6513,0.2957,1.1257) mvmt=(0.0000,0.1278,0.2598) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3237,0.0557,1.0207) mvmt=(0.0000,0.1278,0.2598) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3237,-2.1556,-0.3293) mvmt=(0.0000,0.1278,0.2598) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3456,-2.8504,2.5250) mvmt=(-0.1175,0.0501,0.2598) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4763,4.4437,-0.4795) mvmt=(0.0000,0.1278,0.2598) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4763,4.4437,-0.4995) mvmt=(0.0000,0.1278,0.2598) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.976,7.056,93.521) lpos=(-10.476,4.444,-0.499) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4763,4.4437,-0.4995) mvmt=(0.0000,0.1278,0.2598) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4763,4.4437,-0.4995) mvmt=(0.0000,0.1278,0.2598) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6513,0.2957,1.1257) mvmt=(0.0000,0.1278,0.2598) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3237,0.0557,1.0207) mvmt=(0.0000,0.1278,0.2598) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3237,-2.1556,-0.3293) mvmt=(0.0000,0.1278,0.2598) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3456,-2.8504,2.5250) mvmt=(-0.1175,0.0501,0.2598) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4763,4.4437,-0.4795) mvmt=(0.0000,0.1278,0.2598) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.1836,4.4504,-0.4928) mvmt=(0.2926,0.1345,0.2665) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.1836,4.4504,-0.4928) mvmt=(0.2926,0.1345,0.2665) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.684,7.050,93.527) lpos=(-10.184,4.450,-0.493) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.1836,4.4504,-0.4928) mvmt=(0.2926,0.1345,0.2665) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.1836,4.4504,-0.4928) mvmt=(0.2926,0.1345,0.2665) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.3586,0.3024,1.1324) mvmt=(0.2926,0.1345,0.2665) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3586,0.3024,1.1324) out=(-0.3586,0.3024,1.3312) delta=(0.0000,0.0000,0.1988) deltaMag=0.1988 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.6686 dpPos=0.3394 dpMove=-0.4243 iDist=0.3314 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.1836,4.4504,-0.2940) mvmt=(0.2926,0.1345,0.4653) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.684,7.050,93.726) lpos=(-10.184,4.450,-0.294) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.1836,4.4504,-0.2940) mvmt=(0.2926,0.1345,0.4653) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back] site=adjust_sphere in=(-10.1836,4.4504,-0.2940) out=(-10.1836,4.4504,-0.2940) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=0.6686->0.6686 dpPos=-0.2940 dpMove=-0.4012 iDist=1.9292 applied=False +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.1836,4.4504,-0.2940) mvmt=(0.2926,0.1345,0.4653) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.3586,0.3024,1.3312) mvmt=(0.2926,0.1345,0.4653) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.6164,0.0624,1.2262) mvmt=(0.2926,0.1345,0.4653) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.6164,-2.1489,-0.1238) mvmt=(0.2926,0.1345,0.4653) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(0.4543,-2.5786,2.7305) mvmt=(-0.0089,0.3219,0.4653) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.1836,4.4504,-0.2740) mvmt=(0.2926,0.1345,0.4653) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.1836,4.4504,-0.2940) mvmt=(0.2926,0.1345,0.4653) collide=False insertType=1 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.684,7.050,93.726) lpos=(-10.184,4.450,-0.294) lprev=(-10.476,4.316,-0.759) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.684,7.050,93.527) lpos=(-10.184,4.450,-0.493) lprev=(-10.476,4.316,-0.759) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.1836,4.3160,-0.7593) mvmt=(0.2926,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.684,7.184,93.261) lpos=(-10.184,4.316,-0.759) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3586,0.1679,0.8659) mvmt=(0.2926,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.6686 return=-1 +[push-back-disp] site=dispatch center=(-10.1836,4.3160,-0.7593) mvmt=(0.2926,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.684,7.184,93.261) lpos=(-10.184,4.316,-0.759) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.3586,0.1679,0.8659) mvmt=(0.2926,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3586,0.1679,0.8659) out=(-0.3586,0.1679,1.1968) delta=(0.0000,0.0000,0.3309) deltaMag=0.3309 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4486 dpPos=0.2460 dpMove=-0.4243 iDist=0.5514 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.1836,4.3160,-0.4284) mvmt=(0.2926,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.684,7.184,93.592) lpos=(-10.184,4.316,-0.428) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.1836,4.3160,-0.4284) mvmt=(0.2926,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back] site=adjust_sphere in=(-10.1836,4.3160,-0.4284) out=(-10.1836,4.3160,-0.4284) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=0.4486->0.4486 dpPos=-0.4284 dpMove=-0.2691 iDist=3.3753 applied=False +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.1836,4.3160,-0.4284) mvmt=(0.2926,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.3586,0.1679,1.1968) mvmt=(0.2926,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.6164,-0.0721,1.0918) mvmt=(0.2926,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.6164,-2.2833,-0.2582) mvmt=(0.2926,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(0.5780,-2.6313,2.5961) mvmt=(0.1148,0.2692,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(-10.1836,4.3160,-0.4084) mvmt=(0.2926,0.0000,0.3309) collide=False insertType=0 objState=0x303 winterp=0.4486 return=-1 +[push-back-disp] site=dispatch center=(-10.1836,4.3160,-0.4284) mvmt=(0.2926,0.0000,0.3309) collide=False insertType=1 objState=0x303 winterp=0.4486 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.684,7.184,93.592) lpos=(-10.184,4.316,-0.428) lprev=(-10.476,4.316,-0.759) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4763,4.4615,-0.4817) mvmt=(0.0000,0.1455,0.2776) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4763,4.4615,-0.4817) mvmt=(0.0000,0.1455,0.2776) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.976,7.038,93.538) lpos=(-10.476,4.462,-0.482) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4763,4.4615,-0.4817) mvmt=(0.0000,0.1455,0.2776) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4763,4.4615,-0.4817) mvmt=(0.0000,0.1455,0.2776) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6513,0.3135,1.1435) mvmt=(0.0000,0.1455,0.2776) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3237,0.0735,1.0385) mvmt=(0.0000,0.1455,0.2776) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3237,-2.1378,-0.3115) mvmt=(0.0000,0.1455,0.2776) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3293,-2.8434,2.5428) mvmt=(-0.1339,0.0571,0.2776) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4763,4.4615,-0.4617) mvmt=(0.0000,0.1455,0.2776) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.976,7.038,93.538) lpos=(-10.476,4.462,-0.482) lprev=(-10.476,4.316,-0.759) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementBackup Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5978,4.2203,-0.7229) mvmt=(-0.1216,-0.0957,0.0364) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.098,7.280,93.297) lpos=(-10.598,4.220,-0.723) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7728,0.0722,0.9023) mvmt=(-0.1216,-0.0957,0.0364) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2022,-0.1678,0.7973) mvmt=(-0.1216,-0.0957,0.0364) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2022,-2.3790,-0.5527) mvmt=(-0.1216,-0.0957,0.0364) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5035,-3.0499,2.3016) mvmt=(0.0403,-0.1493,0.0364) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5978,4.2203,-0.7029) mvmt=(-0.1216,-0.0957,0.0364) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5978,4.2203,-0.7229) mvmt=(-0.1216,-0.0957,0.0364) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.098,7.280,93.297) lpos=(-10.598,4.220,-0.723) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7728,0.0722,0.9023) mvmt=(-0.1216,-0.0957,0.0364) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2022,-0.1678,0.7973) mvmt=(-0.1216,-0.0957,0.0364) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2022,-2.3790,-0.5527) mvmt=(-0.1216,-0.0957,0.0364) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.5035,-3.0499,2.3016) mvmt=(0.0403,-0.1493,0.0364) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5978,4.2203,-0.7029) mvmt=(-0.1216,-0.0957,0.0364) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5978,4.3160,-0.7593) mvmt=(-0.1216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.098,7.184,93.261) lpos=(-10.598,4.316,-0.759) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7728,0.1679,0.8659) mvmt=(-0.1216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2022,-0.0721,0.7609) mvmt=(-0.1216,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2022,-2.2833,-0.5891) mvmt=(-0.1216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5978,4.3160,-0.7393) mvmt=(-0.1216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5978,4.3160,-1.5093) mvmt=(-0.1216,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.098,7.184,92.511) lpos=(-10.598,4.316,-1.509) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7728,0.1679,0.1159) mvmt=(-0.1216,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2022,-0.0721,0.0109) mvmt=(-0.1216,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2022,-0.0721,0.0109) out=(0.2022,-0.0721,0.7609) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.5978,4.3160,-0.7593) mvmt=(-0.1216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.098,7.184,93.261) lpos=(-10.598,4.316,-0.759) lprev=(-10.476,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7728,0.1679,0.8659) mvmt=(-0.1216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2022,-0.0721,0.7609) mvmt=(-0.1216,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2022,-2.2833,-0.5891) mvmt=(-0.1216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5978,4.3160,-0.7393) mvmt=(-0.1216,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7104,4.2304,-0.8479) mvmt=(-0.1126,-0.0856,-0.0886) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.210,7.270,93.172) lpos=(-10.710,4.230,-0.848) lprev=(-10.598,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8854,0.0823,0.7773) mvmt=(-0.1126,-0.0856,-0.0886) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0896,-0.1577,0.6723) mvmt=(-0.1126,-0.0856,-0.0886) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0896,-2.3689,-0.6777) mvmt=(-0.1126,-0.0856,-0.0886) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7104,4.2304,-0.8279) mvmt=(-0.1126,-0.0856,-0.0886) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7104,4.2304,-1.5979) mvmt=(-0.1126,-0.0856,-0.8386) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.210,7.270,92.422) lpos=(-10.710,4.230,-1.598) lprev=(-10.598,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8854,0.0823,0.0273) mvmt=(-0.1126,-0.0856,-0.8386) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0896,-0.1577,-0.0777) mvmt=(-0.1126,-0.0856,-0.8386) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0896,-0.1577,-0.0777) out=(0.0896,-0.1577,0.6723) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.7104,4.2304,-0.8479) mvmt=(-0.1126,-0.0856,-0.0886) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.210,7.270,93.172) lpos=(-10.710,4.230,-0.848) lprev=(-10.598,4.316,-0.759) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8854,0.0823,0.7773) mvmt=(-0.1126,-0.0856,-0.0886) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0896,-0.1577,0.6723) mvmt=(-0.1126,-0.0856,-0.0886) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0896,-2.3689,-0.6777) mvmt=(-0.1126,-0.0856,-0.0886) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7104,4.2304,-0.8279) mvmt=(-0.1126,-0.0856,-0.0886) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8198,4.1471,-0.9340) mvmt=(-0.1094,-0.0832,-0.0861) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.320,7.353,93.086) lpos=(-10.820,4.147,-0.934) lprev=(-10.710,4.230,-0.848) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9948,-0.0009,0.6912) mvmt=(-0.1094,-0.0832,-0.0861) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0198,-0.2409,0.5863) mvmt=(-0.1094,-0.0832,-0.0861) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0198,-2.4522,-0.7638) mvmt=(-0.1094,-0.0832,-0.0861) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8198,4.1471,-0.9140) mvmt=(-0.1094,-0.0832,-0.0861) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8198,4.1471,-1.6840) mvmt=(-0.1094,-0.0832,-0.8361) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.320,7.353,92.336) lpos=(-10.820,4.147,-1.684) lprev=(-10.710,4.230,-0.848) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9948,-0.0009,-0.0588) mvmt=(-0.1094,-0.0832,-0.8361) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0198,-0.2409,-0.1637) mvmt=(-0.1094,-0.0832,-0.8361) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0198,-0.2409,-0.1637) out=(-0.0198,-0.2409,0.5862) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.8198,4.1471,-0.9340) mvmt=(-0.1094,-0.0832,-0.0861) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.320,7.353,93.086) lpos=(-10.820,4.147,-0.934) lprev=(-10.710,4.230,-0.848) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9948,-0.0009,0.6912) mvmt=(-0.1094,-0.0832,-0.0861) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0198,-0.2409,0.5862) mvmt=(-0.1094,-0.0832,-0.0861) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0198,-2.4522,-0.7638) mvmt=(-0.1094,-0.0832,-0.0861) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8198,4.1471,-0.9140) mvmt=(-0.1094,-0.0832,-0.0861) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9274,4.0654,-1.0186) mvmt=(-0.1075,-0.0818,-0.0846) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.427,7.435,93.001) lpos=(-10.927,4.065,-1.019) lprev=(-10.820,4.147,-0.934) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1024,-0.0827,0.6066) mvmt=(-0.1075,-0.0818,-0.0846) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1273,-0.3227,0.5016) mvmt=(-0.1075,-0.0818,-0.0846) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1273,-2.5340,-0.8484) mvmt=(-0.1075,-0.0818,-0.0846) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9274,4.0654,-0.9986) mvmt=(-0.1075,-0.0818,-0.0846) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9274,4.0654,-1.7686) mvmt=(-0.1075,-0.0818,-0.8346) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.427,7.435,92.251) lpos=(-10.927,4.065,-1.769) lprev=(-10.820,4.147,-0.934) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1024,-0.0827,-0.1434) mvmt=(-0.1075,-0.0818,-0.8346) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1273,-0.3227,-0.2484) mvmt=(-0.1075,-0.0818,-0.8346) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1273,-0.3227,-0.2484) out=(-0.1273,-0.3227,0.5016) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.9274,4.0654,-1.0186) mvmt=(-0.1075,-0.0818,-0.0846) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.427,7.435,93.001) lpos=(-10.927,4.065,-1.019) lprev=(-10.820,4.147,-0.934) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1024,-0.0827,0.6066) mvmt=(-0.1075,-0.0818,-0.0846) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1273,-0.3227,0.5016) mvmt=(-0.1075,-0.0818,-0.0846) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1273,-2.5340,-0.8484) mvmt=(-0.1075,-0.0818,-0.0846) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9274,4.0654,-0.9986) mvmt=(-0.1075,-0.0818,-0.0846) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0532,3.9697,-1.1176) mvmt=(-0.1258,-0.0957,-0.0990) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,7.530,92.902) lpos=(-11.053,3.970,-1.118) lprev=(-10.927,4.065,-1.019) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.1784,0.5076) mvmt=(-0.1258,-0.0957,-0.0990) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-0.4184,0.4026) mvmt=(-0.1258,-0.0957,-0.0990) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-2.6296,-0.9474) mvmt=(-0.1258,-0.0957,-0.0990) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.9697,-1.0976) mvmt=(-0.1258,-0.0957,-0.0990) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.9697,-1.8676) mvmt=(-0.1258,-0.0957,-0.8490) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,7.530,92.152) lpos=(-11.053,3.970,-1.868) lprev=(-10.927,4.065,-1.019) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.1784,-0.2424) mvmt=(-0.1258,-0.0957,-0.8490) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-0.4184,-0.3474) mvmt=(-0.1258,-0.0957,-0.8490) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2532,-0.4184,-0.3474) out=(-0.2532,-0.4184,0.4026) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0532,3.9697,-1.1176) mvmt=(-0.1258,-0.0957,-0.0990) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,7.530,92.902) lpos=(-11.053,3.970,-1.118) lprev=(-10.927,4.065,-1.019) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.1784,0.5076) mvmt=(-0.1258,-0.0957,-0.0990) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-0.4184,0.4026) mvmt=(-0.1258,-0.0957,-0.0990) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-2.6296,-0.9474) mvmt=(-0.1258,-0.0957,-0.0990) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.9697,-1.0976) mvmt=(-0.1258,-0.0957,-0.0990) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2193,3.8433,-1.2482) mvmt=(-0.1661,-0.1263,-0.1307) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2193,3.8433,-1.2482) mvmt=(-0.1661,-0.1263,-0.1307) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.719,7.657,92.772) lpos=(-11.219,3.843,-1.248) lprev=(-11.053,3.970,-1.118) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3943,-0.3047,0.3770) mvmt=(-0.1661,-0.1263,-0.1307) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4193,-0.5447,0.2720) mvmt=(-0.1661,-0.1263,-0.1307) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4193,-2.7560,-1.0780) mvmt=(-0.1661,-0.1263,-0.1307) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2193,3.8433,-1.2282) mvmt=(-0.1661,-0.1263,-0.1307) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.719,7.657,92.772) lpos=(-11.219,3.843,-1.248) lprev=(-11.053,3.970,-1.118) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0532,3.8433,-1.2482) mvmt=(0.0000,-0.1263,-0.1307) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,7.657,92.772) lpos=(-11.053,3.843,-1.248) lprev=(-11.053,3.970,-1.118) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.3047,0.3770) mvmt=(0.0000,-0.1263,-0.1307) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-0.5447,0.2720) mvmt=(0.0000,-0.1263,-0.1307) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-2.7560,-1.0780) mvmt=(0.0000,-0.1263,-0.1307) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.8433,-1.2282) mvmt=(0.0000,-0.1263,-0.1307) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.8433,-1.9982) mvmt=(0.0000,-0.1263,-0.8807) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,7.657,92.022) lpos=(-11.053,3.843,-1.998) lprev=(-11.053,3.970,-1.118) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.3047,-0.3730) mvmt=(0.0000,-0.1263,-0.8807) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-0.5447,-0.4780) mvmt=(0.0000,-0.1263,-0.8807) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2532,-0.5447,-0.4780) out=(-0.2532,-0.5447,0.2720) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0532,3.8433,-1.2482) mvmt=(0.0000,-0.1263,-0.1307) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,7.657,92.772) lpos=(-11.053,3.843,-1.248) lprev=(-11.053,3.970,-1.118) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.3047,0.3770) mvmt=(0.0000,-0.1263,-0.1307) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-0.5447,0.2720) mvmt=(0.0000,-0.1263,-0.1307) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-2.7560,-1.0780) mvmt=(0.0000,-0.1263,-0.1307) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.8433,-1.2282) mvmt=(0.0000,-0.1263,-0.1307) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0532,3.7599,-1.3345) mvmt=(0.0000,-0.0834,-0.0863) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,7.740,92.685) lpos=(-11.053,3.760,-1.335) lprev=(-11.053,3.843,-1.248) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.3881,0.2907) mvmt=(0.0000,-0.0834,-0.0863) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-0.6281,0.1857) mvmt=(0.0000,-0.0834,-0.0863) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-2.8394,-1.1643) mvmt=(0.0000,-0.0834,-0.0863) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.7599,-1.3145) mvmt=(0.0000,-0.0834,-0.0863) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.7599,-2.0845) mvmt=(0.0000,-0.0834,-0.8363) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,7.740,91.935) lpos=(-11.053,3.760,-2.085) lprev=(-11.053,3.843,-1.248) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.3881,-0.4593) mvmt=(0.0000,-0.0834,-0.8363) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-0.6281,-0.5643) mvmt=(0.0000,-0.0834,-0.8363) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2532,-0.6281,-0.5643) out=(-0.2532,-0.6281,0.1857) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0532,3.7599,-1.3345) mvmt=(0.0000,-0.0834,-0.0863) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,7.740,92.685) lpos=(-11.053,3.760,-1.335) lprev=(-11.053,3.843,-1.248) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.3881,0.2907) mvmt=(0.0000,-0.0834,-0.0863) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-0.6281,0.1857) mvmt=(0.0000,-0.0834,-0.0863) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-2.8394,-1.1643) mvmt=(0.0000,-0.0834,-0.0863) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.7599,-1.3145) mvmt=(0.0000,-0.0834,-0.0863) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1633,3.6762,-1.4211) mvmt=(-0.1101,-0.0837,-0.0866) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1633,3.6762,-1.4211) mvmt=(-0.1101,-0.0837,-0.0866) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.663,7.824,92.599) lpos=(-11.163,3.676,-1.421) lprev=(-11.053,3.760,-1.335) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3383,-0.4718,0.2041) mvmt=(-0.1101,-0.0837,-0.0866) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3633,-0.7118,0.0991) mvmt=(-0.1101,-0.0837,-0.0866) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3633,-2.9231,-1.2509) mvmt=(-0.1101,-0.0837,-0.0866) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1633,3.6762,-1.4011) mvmt=(-0.1101,-0.0837,-0.0866) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.663,7.824,92.599) lpos=(-11.163,3.676,-1.421) lprev=(-11.053,3.760,-1.335) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0532,3.6762,-1.4211) mvmt=(0.0000,-0.0837,-0.0866) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,7.824,92.599) lpos=(-11.053,3.676,-1.421) lprev=(-11.053,3.760,-1.335) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.4718,0.2041) mvmt=(0.0000,-0.0837,-0.0866) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-0.7118,0.0991) mvmt=(0.0000,-0.0837,-0.0866) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-2.9231,-1.2509) mvmt=(0.0000,-0.0837,-0.0866) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.6762,-1.4011) mvmt=(0.0000,-0.0837,-0.0866) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.6762,-2.1711) mvmt=(0.0000,-0.0837,-0.8366) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,7.824,91.849) lpos=(-11.053,3.676,-2.171) lprev=(-11.053,3.760,-1.335) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.4718,-0.5459) mvmt=(0.0000,-0.0837,-0.8366) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-0.7118,-0.6509) mvmt=(0.0000,-0.0837,-0.8366) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2532,-0.7118,-0.6509) out=(-0.2532,-0.7118,0.0991) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0532,3.6762,-1.4211) mvmt=(0.0000,-0.0837,-0.0866) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,7.824,92.599) lpos=(-11.053,3.676,-1.421) lprev=(-11.053,3.760,-1.335) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.4718,0.2041) mvmt=(0.0000,-0.0837,-0.0866) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-0.7118,0.0991) mvmt=(0.0000,-0.0837,-0.0866) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-2.9231,-1.2509) mvmt=(0.0000,-0.0837,-0.0866) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.6762,-1.4011) mvmt=(0.0000,-0.0837,-0.0866) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0532,3.5929,-1.5074) mvmt=(0.0000,-0.0833,-0.0862) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,7.907,92.513) lpos=(-11.053,3.593,-1.507) lprev=(-11.053,3.676,-1.421) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.5552,0.1178) mvmt=(0.0000,-0.0833,-0.0862) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-0.7952,0.0128) mvmt=(0.0000,-0.0833,-0.0862) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-3.0065,-1.3372) mvmt=(0.0000,-0.0833,-0.0862) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.5929,-1.4874) mvmt=(0.0000,-0.0833,-0.0862) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.5929,-2.2574) mvmt=(0.0000,-0.0833,-0.8362) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,7.907,91.763) lpos=(-11.053,3.593,-2.257) lprev=(-11.053,3.676,-1.421) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.5552,-0.6322) mvmt=(0.0000,-0.0833,-0.8362) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-0.7952,-0.7372) mvmt=(0.0000,-0.0833,-0.8362) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2532,-0.7952,-0.7372) out=(-0.2532,-0.7952,0.0128) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0532,3.5929,-1.5074) mvmt=(0.0000,-0.0833,-0.0862) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,7.907,92.513) lpos=(-11.053,3.593,-1.507) lprev=(-11.053,3.676,-1.421) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.5552,0.1178) mvmt=(0.0000,-0.0833,-0.0862) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-0.7952,0.0128) mvmt=(0.0000,-0.0833,-0.0862) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-3.0065,-1.3372) mvmt=(0.0000,-0.0833,-0.0862) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.5929,-1.4874) mvmt=(0.0000,-0.0833,-0.0862) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1638,3.5087,-1.5944) mvmt=(-0.1106,-0.0841,-0.0870) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1638,3.5087,-1.5944) mvmt=(-0.1106,-0.0841,-0.0870) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.664,7.991,92.426) lpos=(-11.164,3.509,-1.594) lprev=(-11.053,3.593,-1.507) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3388,-0.6393,0.0308) mvmt=(-0.1106,-0.0841,-0.0870) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3638,-0.8793,-0.0742) mvmt=(-0.1106,-0.0841,-0.0870) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3638,-3.0906,-1.4242) mvmt=(-0.1106,-0.0841,-0.0870) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1638,3.5087,-1.5744) mvmt=(-0.1106,-0.0841,-0.0870) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.664,7.991,92.426) lpos=(-11.164,3.509,-1.594) lprev=(-11.053,3.593,-1.507) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0532,3.5087,-1.5944) mvmt=(0.0000,-0.0841,-0.0870) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,7.991,92.426) lpos=(-11.053,3.509,-1.594) lprev=(-11.053,3.593,-1.507) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.6393,0.0308) mvmt=(0.0000,-0.0841,-0.0870) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-0.8793,-0.0742) mvmt=(0.0000,-0.0841,-0.0870) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-3.0906,-1.4242) mvmt=(0.0000,-0.0841,-0.0870) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.5087,-1.5744) mvmt=(0.0000,-0.0841,-0.0870) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.5087,-2.3444) mvmt=(0.0000,-0.0841,-0.8370) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,7.991,91.676) lpos=(-11.053,3.509,-2.344) lprev=(-11.053,3.593,-1.507) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.6393,-0.7192) mvmt=(0.0000,-0.0841,-0.8370) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-0.8793,-0.8242) mvmt=(0.0000,-0.0841,-0.8370) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2532,-0.8793,-0.8242) out=(-0.2532,-0.8793,-0.0742) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0532,3.5087,-1.5944) mvmt=(0.0000,-0.0841,-0.0870) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,7.991,92.426) lpos=(-11.053,3.509,-1.594) lprev=(-11.053,3.593,-1.507) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.6393,0.0308) mvmt=(0.0000,-0.0841,-0.0870) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-0.8793,-0.0742) mvmt=(0.0000,-0.0841,-0.0870) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-3.0906,-1.4242) mvmt=(0.0000,-0.0841,-0.0870) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.5087,-1.5744) mvmt=(0.0000,-0.0841,-0.0870) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0532,3.4270,-1.6789) mvmt=(0.0000,-0.0817,-0.0845) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.073,92.341) lpos=(-11.053,3.427,-1.679) lprev=(-11.053,3.509,-1.594) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.7211,-0.0537) mvmt=(0.0000,-0.0817,-0.0845) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-0.9611,-0.1587) mvmt=(0.0000,-0.0817,-0.0845) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-3.1723,-1.5087) mvmt=(0.0000,-0.0817,-0.0845) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.4270,-1.6589) mvmt=(0.0000,-0.0817,-0.0845) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.4270,-2.4289) mvmt=(0.0000,-0.0817,-0.8345) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.073,91.591) lpos=(-11.053,3.427,-2.429) lprev=(-11.053,3.509,-1.594) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.7211,-0.8037) mvmt=(0.0000,-0.0817,-0.8345) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-0.9611,-0.9087) mvmt=(0.0000,-0.0817,-0.8345) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2532,-0.9611,-0.9087) out=(-0.2532,-0.9611,-0.1587) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0532,3.4270,-1.6789) mvmt=(0.0000,-0.0817,-0.0845) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.073,92.341) lpos=(-11.053,3.427,-1.679) lprev=(-11.053,3.509,-1.594) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.7211,-0.0537) mvmt=(0.0000,-0.0817,-0.0845) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-0.9611,-0.1587) mvmt=(0.0000,-0.0817,-0.0845) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-3.1723,-1.5087) mvmt=(0.0000,-0.0817,-0.0845) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.4270,-1.6589) mvmt=(0.0000,-0.0817,-0.0845) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1612,3.3448,-1.7639) mvmt=(-0.1080,-0.0822,-0.0850) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1612,3.3448,-1.7639) mvmt=(-0.1080,-0.0822,-0.0850) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.661,8.155,92.256) lpos=(-11.161,3.345,-1.764) lprev=(-11.053,3.427,-1.679) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3362,-0.8032,-0.1387) mvmt=(-0.1080,-0.0822,-0.0850) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3612,-1.0432,-0.2437) mvmt=(-0.1080,-0.0822,-0.0850) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3612,-3.2545,-1.5937) mvmt=(-0.1080,-0.0822,-0.0850) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1612,3.3448,-1.7439) mvmt=(-0.1080,-0.0822,-0.0850) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.661,8.155,92.256) lpos=(-11.161,3.345,-1.764) lprev=(-11.053,3.427,-1.679) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0532,3.3448,-1.7639) mvmt=(0.0000,-0.0822,-0.0850) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.155,92.256) lpos=(-11.053,3.345,-1.764) lprev=(-11.053,3.427,-1.679) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.8032,-0.1387) mvmt=(0.0000,-0.0822,-0.0850) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-1.0432,-0.2437) mvmt=(0.0000,-0.0822,-0.0850) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-3.2545,-1.5937) mvmt=(0.0000,-0.0822,-0.0850) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.3448,-1.7439) mvmt=(0.0000,-0.0822,-0.0850) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.3448,-2.5139) mvmt=(0.0000,-0.0822,-0.8350) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.155,91.506) lpos=(-11.053,3.345,-2.514) lprev=(-11.053,3.427,-1.679) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.8032,-0.8887) mvmt=(0.0000,-0.0822,-0.8350) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-1.0432,-0.9937) mvmt=(0.0000,-0.0822,-0.8350) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2532,-1.0432,-0.9937) out=(-0.2532,-1.0432,-0.2437) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0532,3.3448,-1.7639) mvmt=(0.0000,-0.0822,-0.0850) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.155,92.256) lpos=(-11.053,3.345,-1.764) lprev=(-11.053,3.427,-1.679) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.8032,-0.1387) mvmt=(0.0000,-0.0822,-0.0850) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-1.0432,-0.2437) mvmt=(0.0000,-0.0822,-0.0850) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-3.2545,-1.5937) mvmt=(0.0000,-0.0822,-0.0850) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.3448,-1.7439) mvmt=(0.0000,-0.0822,-0.0850) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0532,3.2518,-1.8602) mvmt=(0.0000,-0.0930,-0.0962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.248,92.160) lpos=(-11.053,3.252,-1.860) lprev=(-11.053,3.345,-1.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.8962,-0.2350) mvmt=(0.0000,-0.0930,-0.0962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-1.1362,-0.3400) mvmt=(0.0000,-0.0930,-0.0962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-3.3475,-1.6900) mvmt=(0.0000,-0.0930,-0.0962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.2518,-1.8402) mvmt=(0.0000,-0.0930,-0.0962) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.2518,-2.6102) mvmt=(0.0000,-0.0930,-0.8462) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0532,3.2518,-2.6102) out=(-11.0532,3.2518,-2.5700) delta=(0.0000,0.0000,0.0402) deltaMag=0.0402 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.9465 dpPos=0.4398 dpMove=-0.7500 iDist=0.0535 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.248,91.410) lpos=(-11.053,3.252,-2.610) lprev=(-11.053,3.345,-1.764) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0532,3.2518,-2.5700) mvmt=(0.0000,-0.0930,-0.8061) collide=False insertType=0 objState=0x303 winterp=0.9465 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.248,91.450) lpos=(-11.053,3.252,-2.570) lprev=(-11.053,3.345,-1.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.8962,-0.9448) mvmt=(0.0000,-0.0930,-0.8061) collide=False insertType=0 objState=0x303 winterp=0.9465 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-1.1362,-1.0498) mvmt=(0.0000,-0.0930,-0.8061) collide=False insertType=0 objState=0x303 winterp=0.9465 return=-1 +[push-back] site=adjust_sphere in=(-0.2532,-1.1362,-1.0498) out=(-0.2532,-1.1362,-0.3399) delta=(0.0000,0.0000,0.7098) deltaMag=0.7098 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.9465->-0.0000 dpPos=-0.0134 dpMove=-0.4934 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0532,3.2518,-1.8602) mvmt=(0.0000,-0.0930,-0.0962) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.248,92.160) lpos=(-11.053,3.252,-1.860) lprev=(-11.053,3.345,-1.764) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.8962,-0.2350) mvmt=(0.0000,-0.0930,-0.0962) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-1.1362,-0.3400) mvmt=(0.0000,-0.0930,-0.0962) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-3.3475,-1.6900) mvmt=(0.0000,-0.0930,-0.0962) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.2518,-1.8402) mvmt=(0.0000,-0.0930,-0.0962) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1623,3.1688,-1.9460) mvmt=(-0.1092,-0.0830,-0.0859) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1623,3.1688,-1.9460) mvmt=(-0.1092,-0.0830,-0.0859) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.662,8.331,92.074) lpos=(-11.162,3.169,-1.946) lprev=(-11.053,3.252,-1.860) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3373,-0.9792,-0.3208) mvmt=(-0.1092,-0.0830,-0.0859) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3623,-1.2192,-0.4258) mvmt=(-0.1092,-0.0830,-0.0859) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3623,-3.4305,-1.7758) mvmt=(-0.1092,-0.0830,-0.0859) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1623,3.1688,-1.9260) mvmt=(-0.1092,-0.0830,-0.0859) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.662,8.331,92.074) lpos=(-11.162,3.169,-1.946) lprev=(-11.053,3.252,-1.860) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0532,3.1688,-1.9460) mvmt=(0.0000,-0.0830,-0.0859) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.331,92.074) lpos=(-11.053,3.169,-1.946) lprev=(-11.053,3.252,-1.860) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.9792,-0.3208) mvmt=(0.0000,-0.0830,-0.0859) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-1.2192,-0.4258) mvmt=(0.0000,-0.0830,-0.0859) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-3.4305,-1.7758) mvmt=(0.0000,-0.0830,-0.0859) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.1688,-1.9260) mvmt=(0.0000,-0.0830,-0.0859) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.1688,-2.6960) mvmt=(0.0000,-0.0830,-0.8359) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0532,3.1688,-2.6960) out=(-11.0532,3.1688,-2.5700) delta=(0.0000,0.0000,0.1260) deltaMag=0.1260 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.8320 dpPos=0.3540 dpMove=-0.7500 iDist=0.1680 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.331,91.324) lpos=(-11.053,3.169,-2.696) lprev=(-11.053,3.252,-1.860) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0532,3.1688,-2.5700) mvmt=(0.0000,-0.0830,-0.7098) collide=False insertType=0 objState=0x303 winterp=0.8320 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.331,91.450) lpos=(-11.053,3.169,-2.570) lprev=(-11.053,3.252,-1.860) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.9792,-0.9448) mvmt=(0.0000,-0.0830,-0.7098) collide=False insertType=0 objState=0x303 winterp=0.8320 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-1.2192,-1.0498) mvmt=(0.0000,-0.0830,-0.7098) collide=False insertType=0 objState=0x303 winterp=0.8320 return=-1 +[push-back] site=adjust_sphere in=(-0.2532,-1.2192,-1.0498) out=(-0.2532,-1.2192,-0.4258) delta=(0.0000,0.0000,0.6240) deltaMag=0.6240 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.8320->-0.0000 dpPos=0.0463 dpMove=-0.4337 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0532,3.1688,-1.9460) mvmt=(0.0000,-0.0830,-0.0859) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.331,92.074) lpos=(-11.053,3.169,-1.946) lprev=(-11.053,3.252,-1.860) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-0.9792,-0.3208) mvmt=(0.0000,-0.0830,-0.0859) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-1.2192,-0.4258) mvmt=(0.0000,-0.0830,-0.0859) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-3.4305,-1.7758) mvmt=(0.0000,-0.0830,-0.0859) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.1688,-1.9260) mvmt=(0.0000,-0.0830,-0.0859) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0532,3.0831,-2.0347) mvmt=(0.0000,-0.0857,-0.0886) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.417,91.985) lpos=(-11.053,3.083,-2.035) lprev=(-11.053,3.169,-1.946) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-1.0649,-0.4095) mvmt=(0.0000,-0.0857,-0.0886) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-1.3049,-0.5145) mvmt=(0.0000,-0.0857,-0.0886) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-3.5162,-1.8645) mvmt=(0.0000,-0.0857,-0.0886) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.0831,-2.0147) mvmt=(0.0000,-0.0857,-0.0886) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.0831,-2.7847) mvmt=(0.0000,-0.0857,-0.8386) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0532,3.0831,-2.7847) out=(-11.0532,3.0831,-2.5700) delta=(0.0000,0.0000,0.2147) deltaMag=0.2147 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.7138 dpPos=0.2653 dpMove=-0.7500 iDist=0.2862 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.417,91.235) lpos=(-11.053,3.083,-2.785) lprev=(-11.053,3.169,-1.946) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0532,3.0831,-2.5700) mvmt=(0.0000,-0.0857,-0.6240) collide=False insertType=0 objState=0x303 winterp=0.7138 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.417,91.450) lpos=(-11.053,3.083,-2.570) lprev=(-11.053,3.169,-1.946) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-1.0649,-0.9448) mvmt=(0.0000,-0.0857,-0.6240) collide=False insertType=0 objState=0x303 winterp=0.7138 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-1.3049,-1.0498) mvmt=(0.0000,-0.0857,-0.6240) collide=False insertType=0 objState=0x303 winterp=0.7138 return=-1 +[push-back] site=adjust_sphere in=(-0.2532,-1.3049,-1.0498) out=(-0.2532,-1.3049,-0.5145) delta=(0.0000,0.0000,0.5353) deltaMag=0.5353 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.7138->0.0000 dpPos=0.1079 dpMove=-0.3721 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0532,3.0831,-2.0347) mvmt=(0.0000,-0.0857,-0.0886) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.417,91.985) lpos=(-11.053,3.083,-2.035) lprev=(-11.053,3.169,-1.946) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-1.0649,-0.4095) mvmt=(0.0000,-0.0857,-0.0886) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-1.3049,-0.5145) mvmt=(0.0000,-0.0857,-0.0886) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-3.5162,-1.8645) mvmt=(0.0000,-0.0857,-0.0886) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,3.0831,-2.0147) mvmt=(0.0000,-0.0857,-0.0886) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1635,2.9992,-2.1215) mvmt=(-0.1104,-0.0839,-0.0868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1635,2.9992,-2.1215) mvmt=(-0.1104,-0.0839,-0.0868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.664,8.501,91.898) lpos=(-11.164,2.999,-2.121) lprev=(-11.053,3.083,-2.035) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3385,-1.1489,-0.4963) mvmt=(-0.1104,-0.0839,-0.0868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3635,-1.3889,-0.6013) mvmt=(-0.1104,-0.0839,-0.0868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3635,-3.6001,-1.9513) mvmt=(-0.1104,-0.0839,-0.0868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1635,2.9992,-2.1015) mvmt=(-0.1104,-0.0839,-0.0868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.664,8.501,91.898) lpos=(-11.164,2.999,-2.121) lprev=(-11.053,3.083,-2.035) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0532,2.9992,-2.1215) mvmt=(0.0000,-0.0839,-0.0868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.501,91.898) lpos=(-11.053,2.999,-2.121) lprev=(-11.053,3.083,-2.035) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-1.1489,-0.4963) mvmt=(0.0000,-0.0839,-0.0868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-1.3889,-0.6013) mvmt=(0.0000,-0.0839,-0.0868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-3.6001,-1.9513) mvmt=(0.0000,-0.0839,-0.0868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,2.9992,-2.1015) mvmt=(0.0000,-0.0839,-0.0868) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,2.9992,-2.8715) mvmt=(0.0000,-0.0839,-0.8368) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0532,2.9992,-2.8715) out=(-11.0532,2.9992,-2.5700) delta=(0.0000,0.0000,0.3015) deltaMag=0.3015 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.5980 dpPos=0.1785 dpMove=-0.7500 iDist=0.4020 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.501,91.148) lpos=(-11.053,2.999,-2.871) lprev=(-11.053,3.083,-2.035) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0532,2.9992,-2.5700) mvmt=(0.0000,-0.0839,-0.5353) collide=False insertType=0 objState=0x303 winterp=0.5980 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.501,91.450) lpos=(-11.053,2.999,-2.570) lprev=(-11.053,3.083,-2.035) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-1.1489,-0.9448) mvmt=(0.0000,-0.0839,-0.5353) collide=False insertType=0 objState=0x303 winterp=0.5980 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-1.3889,-1.0498) mvmt=(0.0000,-0.0839,-0.5353) collide=False insertType=0 objState=0x303 winterp=0.5980 return=-1 +[push-back] site=adjust_sphere in=(-0.2532,-1.3889,-1.0498) out=(-0.2532,-1.3889,-0.6013) delta=(0.0000,0.0000,0.4485) deltaMag=0.4485 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.5980->-0.0000 dpPos=0.1683 dpMove=-0.3117 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0532,2.9992,-2.1215) mvmt=(0.0000,-0.0839,-0.0868) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.501,91.898) lpos=(-11.053,2.999,-2.121) lprev=(-11.053,3.083,-2.035) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-1.1489,-0.4963) mvmt=(0.0000,-0.0839,-0.0868) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-1.3889,-0.6013) mvmt=(0.0000,-0.0839,-0.0868) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-3.6001,-1.9513) mvmt=(0.0000,-0.0839,-0.0868) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,2.9992,-2.1015) mvmt=(0.0000,-0.0839,-0.0868) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementStrafeRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0532,2.8816,-2.2431) mvmt=(0.0000,-0.1176,-0.1216) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.618,91.777) lpos=(-11.053,2.882,-2.243) lprev=(-11.053,2.999,-2.121) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-1.2664,-0.6179) mvmt=(0.0000,-0.1176,-0.1216) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-1.5064,-0.7229) mvmt=(0.0000,-0.1176,-0.1216) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-3.7177,-2.0729) mvmt=(0.0000,-0.1176,-0.1216) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,2.8816,-2.2231) mvmt=(0.0000,-0.1176,-0.1216) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,2.8816,-2.9931) mvmt=(0.0000,-0.1176,-0.8716) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0532,2.8816,-2.9931) out=(-11.0532,2.8816,-2.5700) delta=(0.0000,0.0000,0.4231) deltaMag=0.4231 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.4358 dpPos=0.0569 dpMove=-0.7500 iDist=0.5642 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.618,91.027) lpos=(-11.053,2.882,-2.993) lprev=(-11.053,2.999,-2.121) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0532,2.8816,-2.5700) mvmt=(0.0000,-0.1176,-0.4485) collide=False insertType=0 objState=0x303 winterp=0.4358 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.618,91.450) lpos=(-11.053,2.882,-2.570) lprev=(-11.053,2.999,-2.121) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-1.2664,-0.9448) mvmt=(0.0000,-0.1176,-0.4485) collide=False insertType=0 objState=0x303 winterp=0.4358 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-1.5064,-1.0498) mvmt=(0.0000,-0.1176,-0.4485) collide=False insertType=0 objState=0x303 winterp=0.4358 return=-1 +[push-back] site=adjust_sphere in=(-0.2532,-1.5064,-1.0498) out=(-0.2532,-1.5064,-0.7229) delta=(0.0000,0.0000,0.3269) deltaMag=0.3269 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.4358->0.0000 dpPos=0.2528 dpMove=-0.2272 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0532,2.8816,-2.2431) mvmt=(0.0000,-0.1176,-0.1216) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.553,8.618,91.777) lpos=(-11.053,2.882,-2.243) lprev=(-11.053,2.999,-2.121) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2282,-1.2664,-0.6179) mvmt=(0.0000,-0.1176,-0.1216) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-1.5064,-0.7229) mvmt=(0.0000,-0.1176,-0.1216) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2532,-3.7177,-2.0729) mvmt=(0.0000,-0.1176,-0.1216) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0532,2.8816,-2.2231) mvmt=(0.0000,-0.1176,-0.1216) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0568,2.7522,-2.3770) mvmt=(-0.0036,-0.1294,-0.1338) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.557,8.748,91.643) lpos=(-11.057,2.752,-2.377) lprev=(-11.053,2.882,-2.243) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2318,-1.3958,-0.7518) mvmt=(-0.0036,-0.1294,-0.1338) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2568,-1.6358,-0.8568) mvmt=(-0.0036,-0.1294,-0.1338) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0568,2.7522,-2.3570) mvmt=(-0.0036,-0.1294,-0.1338) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0568,2.7522,-3.1270) mvmt=(-0.0036,-0.1294,-0.8838) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0568,2.7522,-3.1270) out=(-11.0568,2.7522,-2.5700) delta=(0.0000,0.0000,0.5570) deltaMag=0.5570 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.2574 dpPos=-0.0770 dpMove=-0.7500 iDist=0.7426 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.557,8.748,90.893) lpos=(-11.057,2.752,-3.127) lprev=(-11.053,2.882,-2.243) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0568,2.7522,-2.5700) mvmt=(-0.0036,-0.1294,-0.3269) collide=False insertType=0 objState=0x303 winterp=0.2574 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.557,8.748,91.450) lpos=(-11.057,2.752,-2.570) lprev=(-11.053,2.882,-2.243) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2318,-1.3958,-0.9448) mvmt=(-0.0036,-0.1294,-0.3269) collide=False insertType=0 objState=0x303 winterp=0.2574 return=-1 +[push-back-disp] site=dispatch center=(-0.2568,-1.6358,-1.0498) mvmt=(-0.0036,-0.1294,-0.3269) collide=False insertType=0 objState=0x303 winterp=0.2574 return=-1 +[push-back] site=adjust_sphere in=(-0.2568,-1.6358,-1.0498) out=(-0.2568,-1.6358,-0.8568) delta=(0.0000,0.0000,0.1930) deltaMag=0.1930 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.2574->0.0000 dpPos=0.3458 dpMove=-0.1342 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0568,2.7522,-2.3770) mvmt=(-0.0036,-0.1294,-0.1338) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.557,8.748,91.643) lpos=(-11.057,2.752,-2.377) lprev=(-11.053,2.882,-2.243) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2318,-1.3958,-0.7518) mvmt=(-0.0036,-0.1294,-0.1338) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2568,-1.6358,-0.8568) mvmt=(-0.0036,-0.1294,-0.1338) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0568,2.7522,-2.3570) mvmt=(-0.0036,-0.1294,-0.1338) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0601,2.6349,-2.4983) mvmt=(-0.0033,-0.1173,-0.1213) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.560,8.865,91.522) lpos=(-11.060,2.635,-2.498) lprev=(-11.057,2.752,-2.377) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2351,-1.5131,-0.8731) mvmt=(-0.0033,-0.1173,-0.1213) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2601,-1.7531,-0.9781) mvmt=(-0.0033,-0.1173,-0.1213) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0601,2.6349,-2.4783) mvmt=(-0.0033,-0.1173,-0.1213) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0601,2.6349,-3.2483) mvmt=(-0.0033,-0.1173,-0.8713) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0601,2.6349,-3.2483) out=(-11.0601,2.6349,-2.5700) delta=(0.0000,0.0000,0.6783) deltaMag=0.6783 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0956 dpPos=-0.1983 dpMove=-0.7500 iDist=0.9044 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.560,8.865,90.772) lpos=(-11.060,2.635,-3.248) lprev=(-11.057,2.752,-2.377) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0601,2.6349,-2.5700) mvmt=(-0.0033,-0.1173,-0.1930) collide=False insertType=0 objState=0x303 winterp=0.0956 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.560,8.865,91.450) lpos=(-11.060,2.635,-2.570) lprev=(-11.057,2.752,-2.377) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2351,-1.5131,-0.9448) mvmt=(-0.0033,-0.1173,-0.1930) collide=False insertType=0 objState=0x303 winterp=0.0956 return=-1 +[push-back-disp] site=dispatch center=(-0.2601,-1.7531,-1.0498) mvmt=(-0.0033,-0.1173,-0.1930) collide=False insertType=0 objState=0x303 winterp=0.0956 return=-1 +[push-back] site=adjust_sphere in=(-0.2601,-1.7531,-1.0498) out=(-0.2601,-1.7531,-0.9781) delta=(0.0000,0.0000,0.0717) deltaMag=0.0717 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.0956->0.0000 dpPos=0.4302 dpMove=-0.0498 iDist=0.9999 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0601,2.6349,-2.4983) mvmt=(-0.0033,-0.1173,-0.1213) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.560,8.865,91.522) lpos=(-11.060,2.635,-2.498) lprev=(-11.057,2.752,-2.377) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2351,-1.5131,-0.8731) mvmt=(-0.0033,-0.1173,-0.1213) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2601,-1.7531,-0.9781) mvmt=(-0.0033,-0.1173,-0.1213) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0601,2.6349,-2.4783) mvmt=(-0.0033,-0.1173,-0.1213) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0633,2.5181,-2.6192) mvmt=(-0.0033,-0.1168,-0.1209) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0633,2.5181,-2.6192) mvmt=(-0.0033,-0.1168,-0.1209) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0633,2.5181,-2.6192) out=(-11.0633,2.5181,-2.5700) delta=(0.0000,0.0000,0.0492) deltaMag=0.0492 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.9180 dpPos=0.4308 dpMove=-0.6000 iDist=0.0820 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.563,8.982,91.401) lpos=(-11.063,2.518,-2.619) lprev=(-11.060,2.635,-2.498) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0633,2.5181,-2.5700) mvmt=(-0.0033,-0.1168,-0.0717) collide=False insertType=0 objState=0x303 winterp=0.9180 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.563,8.982,91.450) lpos=(-11.063,2.518,-2.570) lprev=(-11.060,2.635,-2.498) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2383,-1.6299,-0.9448) mvmt=(-0.0033,-0.1168,-0.0717) collide=False insertType=0 objState=0x303 winterp=0.9180 return=-1 +[push-back-disp] site=dispatch center=(-0.2633,-1.8699,-1.0498) mvmt=(-0.0033,-0.1168,-0.0717) collide=False insertType=0 objState=0x303 winterp=0.9180 return=-1 +[push-back-disp] site=dispatch center=(-11.0633,2.5181,-2.5500) mvmt=(-0.0033,-0.1168,-0.0717) collide=False insertType=0 objState=0x303 winterp=0.9180 return=-1 +[push-back-disp] site=dispatch center=(-11.0633,2.5181,-2.5700) mvmt=(-0.0033,-0.1168,-0.0717) collide=False insertType=1 objState=0x303 winterp=0.9180 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.563,8.982,91.450) lpos=(-11.063,2.518,-2.570) lprev=(-11.060,2.635,-2.498) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2383,-1.6299,-0.9448) mvmt=(-0.0033,-0.1168,-0.0717) collide=False insertType=1 objState=0x303 winterp=0.9180 return=-1 +[push-back-disp] site=dispatch center=(-0.2633,-1.8699,-1.0498) mvmt=(-0.0033,-0.1168,-0.0717) collide=False insertType=1 objState=0x303 winterp=0.9180 return=-1 +[push-back-disp] site=dispatch center=(-11.0633,2.5181,-2.5500) mvmt=(-0.0033,-0.1168,-0.0717) collide=False insertType=1 objState=0x303 winterp=0.9180 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.563,8.982,91.401) lpos=(-11.063,2.518,-2.619) lprev=(-11.060,2.635,-2.498) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2383,-1.6299,-0.9448) mvmt=(-0.0033,-0.1168,-0.0717) collide=False insertType=0 objState=0x303 winterp=0.9180 return=-1 +[push-back-disp] site=dispatch center=(-0.2633,-1.8699,-1.0498) mvmt=(-0.0033,-0.1168,-0.0717) collide=False insertType=0 objState=0x303 winterp=0.9180 return=-1 +[push-back-disp] site=dispatch center=(-11.0633,2.5181,-2.5500) mvmt=(-0.0033,-0.1168,-0.0717) collide=False insertType=0 objState=0x303 winterp=0.9180 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0665,2.2808,-2.5700) mvmt=(-0.0032,-0.2373,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.567,9.219,91.450) lpos=(-11.067,2.281,-2.570) lprev=(-11.063,2.518,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2415,-1.8672,-0.9448) mvmt=(-0.0032,-0.2373,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2665,-2.1072,-1.0498) mvmt=(-0.0032,-0.2373,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0665,2.2808,-2.5500) mvmt=(-0.0032,-0.2373,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0665,2.2808,-3.3200) mvmt=(-0.0032,-0.2373,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0665,2.2808,-3.3200) out=(-11.0665,2.2808,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.567,9.219,90.700) lpos=(-11.067,2.281,-3.320) lprev=(-11.063,2.518,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0665,2.2808,-2.5700) mvmt=(-0.0032,-0.2373,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.567,9.219,91.450) lpos=(-11.067,2.281,-2.570) lprev=(-11.063,2.518,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2415,-1.8672,-0.9448) mvmt=(-0.0032,-0.2373,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2665,-2.1072,-1.0498) mvmt=(-0.0032,-0.2373,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0665,2.2808,-2.5500) mvmt=(-0.0032,-0.2373,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0702,2.0126,-2.5700) mvmt=(-0.0036,-0.2682,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.570,9.487,91.450) lpos=(-11.070,2.013,-2.570) lprev=(-11.067,2.281,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2452,-2.1354,-0.9448) mvmt=(-0.0036,-0.2682,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2702,-2.3754,-1.0498) mvmt=(-0.0036,-0.2682,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0702,2.0126,-2.5500) mvmt=(-0.0036,-0.2682,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0702,2.0126,-3.3200) mvmt=(-0.0036,-0.2682,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0702,2.0126,-3.3200) out=(-11.0702,2.0126,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.570,9.487,90.700) lpos=(-11.070,2.013,-3.320) lprev=(-11.067,2.281,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0702,2.0126,-2.5700) mvmt=(-0.0036,-0.2682,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.570,9.487,91.450) lpos=(-11.070,2.013,-2.570) lprev=(-11.067,2.281,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2452,-2.1354,-0.9448) mvmt=(-0.0036,-0.2682,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2702,-2.3754,-1.0498) mvmt=(-0.0036,-0.2682,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0702,2.0126,-2.5500) mvmt=(-0.0036,-0.2682,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0733,1.7767,-2.5700) mvmt=(-0.0032,-0.2360,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.573,9.723,91.450) lpos=(-11.073,1.777,-2.570) lprev=(-11.070,2.013,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2484,-2.3714,-0.9448) mvmt=(-0.0032,-0.2360,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2733,-2.6114,-1.0498) mvmt=(-0.0032,-0.2360,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0733,1.7767,-2.5500) mvmt=(-0.0032,-0.2360,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0733,1.7767,-3.3200) mvmt=(-0.0032,-0.2360,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0733,1.7767,-3.3200) out=(-11.0733,1.7767,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.573,9.723,90.700) lpos=(-11.073,1.777,-3.320) lprev=(-11.070,2.013,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0733,1.7767,-2.5700) mvmt=(-0.0032,-0.2360,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.573,9.723,91.450) lpos=(-11.073,1.777,-2.570) lprev=(-11.070,2.013,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2484,-2.3714,-0.9448) mvmt=(-0.0032,-0.2360,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2733,-2.6114,-1.0498) mvmt=(-0.0032,-0.2360,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0733,1.7767,-2.5500) mvmt=(-0.0032,-0.2360,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0766,1.5353,-2.5700) mvmt=(-0.0033,-0.2414,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.577,9.965,91.450) lpos=(-11.077,1.535,-2.570) lprev=(-11.073,1.777,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2516,-2.6128,-0.9448) mvmt=(-0.0033,-0.2414,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2766,-2.8528,-1.0498) mvmt=(-0.0033,-0.2414,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0766,1.5353,-2.5500) mvmt=(-0.0033,-0.2414,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0766,1.5353,-3.3200) mvmt=(-0.0033,-0.2414,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0766,1.5353,-3.3200) out=(-11.0766,1.5353,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.577,9.965,90.700) lpos=(-11.077,1.535,-3.320) lprev=(-11.073,1.777,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0766,1.5353,-2.5700) mvmt=(-0.0033,-0.2414,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.577,9.965,91.450) lpos=(-11.077,1.535,-2.570) lprev=(-11.073,1.777,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2516,-2.6128,-0.9448) mvmt=(-0.0033,-0.2414,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2766,-2.8528,-1.0498) mvmt=(-0.0033,-0.2414,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0766,1.5353,-2.5500) mvmt=(-0.0033,-0.2414,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0798,1.2985,-2.5700) mvmt=(-0.0032,-0.2368,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.580,10.202,91.450) lpos=(-11.080,1.298,-2.570) lprev=(-11.077,1.535,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2548,-2.8496,-0.9448) mvmt=(-0.0032,-0.2368,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2798,-3.0896,-1.0498) mvmt=(-0.0032,-0.2368,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0798,1.2985,-2.5500) mvmt=(-0.0032,-0.2368,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0798,1.2985,-3.3200) mvmt=(-0.0032,-0.2368,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0798,1.2985,-3.3200) out=(-11.0798,1.2985,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.580,10.202,90.700) lpos=(-11.080,1.298,-3.320) lprev=(-11.077,1.535,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0798,1.2985,-2.5700) mvmt=(-0.0032,-0.2368,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.580,10.202,91.450) lpos=(-11.080,1.298,-2.570) lprev=(-11.077,1.535,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2548,-2.8496,-0.9448) mvmt=(-0.0032,-0.2368,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2798,-3.0896,-1.0498) mvmt=(-0.0032,-0.2368,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0798,1.2985,-2.5500) mvmt=(-0.0032,-0.2368,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0830,1.0610,-2.5700) mvmt=(-0.0032,-0.2375,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.583,10.439,91.450) lpos=(-11.083,1.061,-2.570) lprev=(-11.080,1.298,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2580,-3.0871,-0.9448) mvmt=(-0.0032,-0.2375,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2830,-3.3271,-1.0498) mvmt=(-0.0032,-0.2375,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0830,1.0610,-2.5500) mvmt=(-0.0032,-0.2375,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0830,1.0610,-3.3200) mvmt=(-0.0032,-0.2375,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0830,1.0610,-3.3200) out=(-11.0830,1.0610,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.583,10.439,90.700) lpos=(-11.083,1.061,-3.320) lprev=(-11.080,1.298,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0830,1.0610,-2.5700) mvmt=(-0.0032,-0.2375,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.583,10.439,91.450) lpos=(-11.083,1.061,-2.570) lprev=(-11.080,1.298,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2580,-3.0871,-0.9448) mvmt=(-0.0032,-0.2375,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2830,-3.3271,-1.0498) mvmt=(-0.0032,-0.2375,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0830,1.0610,-2.5500) mvmt=(-0.0032,-0.2375,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0863,0.8201,-2.5700) mvmt=(-0.0033,-0.2409,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.586,10.680,91.450) lpos=(-11.086,0.820,-2.570) lprev=(-11.083,1.061,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2613,-3.3279,-0.9448) mvmt=(-0.0033,-0.2409,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2863,-3.5679,-1.0498) mvmt=(-0.0033,-0.2409,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0863,0.8201,-2.5500) mvmt=(-0.0033,-0.2409,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0863,0.8201,-3.3200) mvmt=(-0.0033,-0.2409,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0863,0.8201,-3.3200) out=(-11.0863,0.8201,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.586,10.680,90.700) lpos=(-11.086,0.820,-3.320) lprev=(-11.083,1.061,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0863,0.8201,-2.5700) mvmt=(-0.0033,-0.2409,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.586,10.680,91.450) lpos=(-11.086,0.820,-2.570) lprev=(-11.083,1.061,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2613,-3.3279,-0.9448) mvmt=(-0.0033,-0.2409,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2863,-3.5679,-1.0498) mvmt=(-0.0033,-0.2409,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0863,0.8201,-2.5500) mvmt=(-0.0033,-0.2409,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0896,0.5715,-2.5700) mvmt=(-0.0034,-0.2486,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,10.928,91.450) lpos=(-11.090,0.572,-2.570) lprev=(-11.086,0.820,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2646,-3.5765,-0.9448) mvmt=(-0.0034,-0.2486,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2896,-3.8165,-1.0498) mvmt=(-0.0034,-0.2486,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0896,0.5715,-2.5500) mvmt=(-0.0034,-0.2486,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0896,0.5715,-3.3200) mvmt=(-0.0034,-0.2486,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0896,0.5715,-3.3200) out=(-11.0896,0.5715,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,10.928,90.700) lpos=(-11.090,0.572,-3.320) lprev=(-11.086,0.820,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0896,0.5715,-2.5700) mvmt=(-0.0034,-0.2486,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.590,10.928,91.450) lpos=(-11.090,0.572,-2.570) lprev=(-11.086,0.820,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2646,-3.5765,-0.9448) mvmt=(-0.0034,-0.2486,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2896,-3.8165,-1.0498) mvmt=(-0.0034,-0.2486,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0896,0.5715,-2.5500) mvmt=(-0.0034,-0.2486,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0928,0.3341,-2.5700) mvmt=(-0.0032,-0.2374,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0928,0.3341,-2.5700) mvmt=(-0.0032,-0.2374,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.593,11.166,91.450) lpos=(-11.093,0.334,-2.570) lprev=(-11.090,0.572,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2678,-3.8139,-0.9448) mvmt=(-0.0032,-0.2374,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2928,-4.0539,-1.0498) mvmt=(-0.0032,-0.2374,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0928,0.3341,-2.5500) mvmt=(-0.0032,-0.2374,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.593,11.166,91.450) lpos=(-11.093,0.334,-2.570) lprev=(-11.090,0.572,-2.570) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0928,0.5715,-2.5700) mvmt=(-0.0032,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.593,10.928,91.450) lpos=(-11.093,0.572,-2.570) lprev=(-11.090,0.572,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2678,-3.5765,-0.9448) mvmt=(-0.0032,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2928,-3.8165,-1.0498) mvmt=(-0.0032,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0928,0.5715,-2.5500) mvmt=(-0.0032,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0928,0.5715,-3.3200) mvmt=(-0.0032,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0928,0.5715,-3.3200) out=(-11.0928,0.5715,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.593,10.928,90.700) lpos=(-11.093,0.572,-3.320) lprev=(-11.090,0.572,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0928,0.5715,-2.5700) mvmt=(-0.0032,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.593,10.928,91.450) lpos=(-11.093,0.572,-2.570) lprev=(-11.090,0.572,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2678,-3.5765,-0.9448) mvmt=(-0.0032,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2928,-3.8165,-1.0498) mvmt=(-0.0032,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0928,0.5715,-2.5500) mvmt=(-0.0032,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0961,0.5715,-2.5700) mvmt=(-0.0032,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.596,10.928,91.450) lpos=(-11.096,0.572,-2.570) lprev=(-11.093,0.572,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2711,-3.5765,-0.9448) mvmt=(-0.0032,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2961,-3.8165,-1.0498) mvmt=(-0.0032,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0961,0.5715,-2.5500) mvmt=(-0.0032,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0961,0.5715,-3.3200) mvmt=(-0.0032,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0961,0.5715,-3.3200) out=(-11.0961,0.5715,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.596,10.928,90.700) lpos=(-11.096,0.572,-3.320) lprev=(-11.093,0.572,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0961,0.5715,-2.5700) mvmt=(-0.0032,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.596,10.928,91.450) lpos=(-11.096,0.572,-2.570) lprev=(-11.093,0.572,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2711,-3.5765,-0.9448) mvmt=(-0.0032,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2961,-3.8165,-1.0498) mvmt=(-0.0032,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0961,0.5715,-2.5500) mvmt=(-0.0032,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0993,0.3285,-2.5700) mvmt=(-0.0033,-0.2430,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,0.3285,-2.5700) mvmt=(-0.0033,-0.2430,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,11.171,91.450) lpos=(-11.099,0.329,-2.570) lprev=(-11.096,0.572,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-3.8195,-0.9448) mvmt=(-0.0033,-0.2430,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-4.0595,-1.0498) mvmt=(-0.0033,-0.2430,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,0.3285,-2.5500) mvmt=(-0.0033,-0.2430,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,11.171,91.450) lpos=(-11.099,0.329,-2.570) lprev=(-11.096,0.572,-2.570) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,0.5715,-2.5700) mvmt=(-0.0033,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,10.928,91.450) lpos=(-11.099,0.572,-2.570) lprev=(-11.096,0.572,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-3.5765,-0.9448) mvmt=(-0.0033,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-3.8165,-1.0498) mvmt=(-0.0033,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,0.5715,-2.5500) mvmt=(-0.0033,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,0.5715,-3.3200) mvmt=(-0.0033,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0993,0.5715,-3.3200) out=(-11.0993,0.5715,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,10.928,90.700) lpos=(-11.099,0.572,-3.320) lprev=(-11.096,0.572,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,0.5715,-2.5700) mvmt=(-0.0033,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,10.928,91.450) lpos=(-11.099,0.572,-2.570) lprev=(-11.096,0.572,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-3.5765,-0.9448) mvmt=(-0.0033,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-3.8165,-1.0498) mvmt=(-0.0033,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,0.5715,-2.5500) mvmt=(-0.0033,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2121,0.5715,-2.5700) mvmt=(-0.1128,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2121,0.5715,-2.5700) mvmt=(-0.1128,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.712,10.928,91.450) lpos=(-11.212,0.572,-2.570) lprev=(-11.099,0.572,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3871,-3.5765,-0.9448) mvmt=(-0.1128,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4121,-3.8165,-1.0498) mvmt=(-0.1128,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2121,0.5715,-2.5500) mvmt=(-0.1128,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.712,10.928,91.450) lpos=(-11.212,0.572,-2.570) lprev=(-11.099,0.572,-2.570) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0993,0.3833,-2.5700) mvmt=(0.0000,-0.1882,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,0.3833,-2.5700) mvmt=(0.0000,-0.1882,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,11.117,91.450) lpos=(-11.099,0.383,-2.570) lprev=(-11.099,0.572,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-3.7648,-0.9448) mvmt=(0.0000,-0.1882,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-4.0048,-1.0498) mvmt=(0.0000,-0.1882,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,0.3833,-2.5500) mvmt=(0.0000,-0.1882,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,11.117,91.450) lpos=(-11.099,0.383,-2.570) lprev=(-11.099,0.572,-2.570) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2100,0.5715,-2.5700) mvmt=(-0.1106,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2100,0.5715,-2.5700) mvmt=(-0.1106,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.710,10.928,91.450) lpos=(-11.210,0.572,-2.570) lprev=(-11.099,0.572,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3850,-3.5765,-0.9448) mvmt=(-0.1106,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4100,-3.8165,-1.0498) mvmt=(-0.1106,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2100,0.5715,-2.5500) mvmt=(-0.1106,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.710,10.928,91.450) lpos=(-11.210,0.572,-2.570) lprev=(-11.099,0.572,-2.570) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0993,0.3972,-2.5700) mvmt=(0.0000,-0.1743,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,0.3972,-2.5700) mvmt=(0.0000,-0.1743,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,11.103,91.450) lpos=(-11.099,0.397,-2.570) lprev=(-11.099,0.572,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-3.7508,-0.9448) mvmt=(0.0000,-0.1743,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-3.9908,-1.0498) mvmt=(0.0000,-0.1743,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,0.3972,-2.5500) mvmt=(0.0000,-0.1743,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,11.103,91.450) lpos=(-11.099,0.397,-2.570) lprev=(-11.099,0.572,-2.570) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.2115,0.5715,-2.5700) mvmt=(-0.1122,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2115,0.5715,-2.5700) mvmt=(-0.1122,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.712,10.928,91.450) lpos=(-11.212,0.572,-2.570) lprev=(-11.099,0.572,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3865,-3.5765,-0.9448) mvmt=(-0.1122,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.4115,-3.8165,-1.0498) mvmt=(-0.1122,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.2115,0.5715,-2.5500) mvmt=(-0.1122,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.712,10.928,91.450) lpos=(-11.212,0.572,-2.570) lprev=(-11.099,0.572,-2.570) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementForward Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0993,0.9780,-2.5700) mvmt=(0.0000,0.4065,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,10.522,91.450) lpos=(-11.099,0.978,-2.570) lprev=(-11.099,0.572,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-3.1700,-0.9448) mvmt=(0.0000,0.4065,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-3.4100,-1.0498) mvmt=(-0.0000,0.4065,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,0.9780,-2.5500) mvmt=(0.0000,0.4065,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,0.9780,-3.3200) mvmt=(0.0000,0.4065,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0993,0.9780,-3.3200) out=(-11.0993,0.9780,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,10.522,90.700) lpos=(-11.099,0.978,-3.320) lprev=(-11.099,0.572,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,0.9780,-2.5700) mvmt=(0.0000,0.4065,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,10.522,91.450) lpos=(-11.099,0.978,-2.570) lprev=(-11.099,0.572,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-3.1700,-0.9448) mvmt=(0.0000,0.4065,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-3.4100,-1.0498) mvmt=(-0.0000,0.4065,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,0.9780,-2.5500) mvmt=(0.0000,0.4065,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1733,1.4019,-2.5700) mvmt=(-0.0739,0.4239,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1733,1.4019,-2.5700) mvmt=(-0.0739,0.4239,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.673,10.098,91.450) lpos=(-11.173,1.402,-2.570) lprev=(-11.099,0.978,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3483,-2.7461,-0.9448) mvmt=(-0.0739,0.4239,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3733,-2.9861,-1.0498) mvmt=(-0.0739,0.4239,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1733,1.4019,-2.5500) mvmt=(-0.0739,0.4239,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.673,10.098,91.450) lpos=(-11.173,1.402,-2.570) lprev=(-11.099,0.978,-2.570) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,1.4019,-2.5700) mvmt=(0.0000,0.4239,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,10.098,91.450) lpos=(-11.099,1.402,-2.570) lprev=(-11.099,0.978,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-2.7461,-0.9448) mvmt=(0.0000,0.4239,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.9861,-1.0498) mvmt=(-0.0000,0.4239,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,1.4019,-2.5500) mvmt=(0.0000,0.4239,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,1.4019,-3.3200) mvmt=(0.0000,0.4239,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0993,1.4019,-3.3200) out=(-11.0993,1.4019,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,10.098,90.700) lpos=(-11.099,1.402,-3.320) lprev=(-11.099,0.978,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,1.4019,-2.5700) mvmt=(0.0000,0.4239,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,10.098,91.450) lpos=(-11.099,1.402,-2.570) lprev=(-11.099,0.978,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-2.7461,-0.9448) mvmt=(0.0000,0.4239,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.9861,-1.0498) mvmt=(-0.0000,0.4239,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,1.4019,-2.5500) mvmt=(0.0000,0.4239,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0993,1.8102,-2.5700) mvmt=(0.0000,0.4082,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,9.690,91.450) lpos=(-11.099,1.810,-2.570) lprev=(-11.099,1.402,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-2.3379,-0.9448) mvmt=(0.0000,0.4082,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.5779,-1.0498) mvmt=(0.0000,0.4082,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,1.8102,-2.5500) mvmt=(0.0000,0.4082,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,1.8102,-3.3200) mvmt=(0.0000,0.4082,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0993,1.8102,-3.3200) out=(-11.0993,1.8102,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,9.690,90.700) lpos=(-11.099,1.810,-3.320) lprev=(-11.099,1.402,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,1.8102,-2.5700) mvmt=(0.0000,0.4082,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,9.690,91.450) lpos=(-11.099,1.810,-2.570) lprev=(-11.099,1.402,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-2.3379,-0.9448) mvmt=(0.0000,0.4082,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.5779,-1.0498) mvmt=(0.0000,0.4082,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,1.8102,-2.5500) mvmt=(0.0000,0.4082,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1705,2.2182,-2.5700) mvmt=(-0.0712,0.4080,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1705,2.2182,-2.5700) mvmt=(-0.0712,0.4080,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.671,9.282,91.450) lpos=(-11.171,2.218,-2.570) lprev=(-11.099,1.810,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3455,-1.9298,-0.9448) mvmt=(-0.0712,0.4080,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3705,-2.1698,-1.0498) mvmt=(-0.0712,0.4080,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1705,2.2182,-2.5500) mvmt=(-0.0712,0.4080,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.671,9.282,91.450) lpos=(-11.171,2.218,-2.570) lprev=(-11.099,1.810,-2.570) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,2.2182,-2.5700) mvmt=(0.0000,0.4080,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,9.282,91.450) lpos=(-11.099,2.218,-2.570) lprev=(-11.099,1.810,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-1.9298,-0.9448) mvmt=(0.0000,0.4080,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1698,-1.0498) mvmt=(-0.0000,0.4080,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,2.2182,-2.5500) mvmt=(0.0000,0.4080,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,2.2182,-3.3200) mvmt=(0.0000,0.4080,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0993,2.2182,-3.3200) out=(-11.0993,2.2182,-2.5700) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.2700 dpMove=-0.7500 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,9.282,90.700) lpos=(-11.099,2.218,-3.320) lprev=(-11.099,1.810,-2.570) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,2.2182,-2.5700) mvmt=(0.0000,0.4080,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,9.282,91.450) lpos=(-11.099,2.218,-2.570) lprev=(-11.099,1.810,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-1.9298,-0.9448) mvmt=(0.0000,0.4080,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1698,-1.0498) mvmt=(-0.0000,0.4080,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,2.2182,-2.5500) mvmt=(0.0000,0.4080,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.000,1.000) D=-90.970 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0993,2.6282,-2.5700) mvmt=(0.0000,0.4100,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,8.872,91.450) lpos=(-11.099,2.628,-2.570) lprev=(-11.099,2.218,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-1.5199,-0.9448) mvmt=(0.0000,0.4100,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-1.7599,-1.0498) mvmt=(0.0000,0.4100,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,2.6282,-2.5700) mvmt=(0.0000,0.4100,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,8.872,91.450) lpos=(-11.099,2.628,-2.570) lprev=(-11.099,2.218,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-1.5199,-0.9448) mvmt=(0.0000,0.4100,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-1.7599,-1.0498) mvmt=(0.0000,0.4100,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2993,-1.7599,-1.0498) out=(-0.2993,-1.7599,-0.9851) delta=(0.0000,0.0000,0.0647) deltaMag=0.0647 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.8922 dpPos=0.4350 dpMove=-0.4170 iDist=0.1078 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0993,2.6282,-2.5053) mvmt=(0.0000,0.4100,0.0647) collide=False insertType=0 objState=0x303 winterp=0.8922 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,8.872,91.515) lpos=(-11.099,2.628,-2.505) lprev=(-11.099,2.218,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-1.5199,-0.8801) mvmt=(0.0000,0.4100,0.0647) collide=False insertType=0 objState=0x303 winterp=0.8922 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-1.7599,-0.9851) mvmt=(0.0000,0.4100,0.0647) collide=False insertType=0 objState=0x303 winterp=0.8922 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,2.6282,-2.4853) mvmt=(0.0000,0.4100,0.0647) collide=False insertType=0 objState=0x303 winterp=0.8922 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,2.6282,-2.5053) mvmt=(0.0000,0.4100,0.0647) collide=False insertType=1 objState=0x303 winterp=0.8922 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,8.872,91.515) lpos=(-11.099,2.628,-2.505) lprev=(-11.099,2.218,-2.570) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-1.5199,-0.8801) mvmt=(0.0000,0.4100,0.0647) collide=False insertType=1 objState=0x303 winterp=0.8922 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-1.7599,-0.9851) mvmt=(0.0000,0.4100,0.0647) collide=False insertType=1 objState=0x303 winterp=0.8922 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,2.6282,-2.4853) mvmt=(0.0000,0.4100,0.0647) collide=False insertType=1 objState=0x303 winterp=0.8922 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,2.6282,-2.4853) mvmt=(0.0000,0.4100,0.0647) collide=False insertType=0 objState=0x303 winterp=0.8922 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1724,2.8306,-2.2959) mvmt=(-0.0731,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1724,2.8306,-2.2959) mvmt=(-0.0731,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.672,8.669,91.724) lpos=(-11.172,2.831,-2.296) lprev=(-11.099,2.628,-2.505) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3474,-1.3175,-0.6707) mvmt=(-0.0731,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3724,-1.5575,-0.7757) mvmt=(-0.0731,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1724,2.8306,-2.2759) mvmt=(-0.0731,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.672,8.669,91.724) lpos=(-11.172,2.831,-2.296) lprev=(-11.099,2.628,-2.505) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,2.8306,-2.2959) mvmt=(0.0000,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,8.669,91.724) lpos=(-11.099,2.831,-2.296) lprev=(-11.099,2.628,-2.505) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-1.3175,-0.6707) mvmt=(-0.0000,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-1.5575,-0.7757) mvmt=(-0.0000,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,2.8306,-2.2759) mvmt=(0.0000,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,2.8306,-3.0459) mvmt=(0.0000,0.2024,-0.5406) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0993,2.8306,-3.0459) out=(-11.0993,2.8306,-2.5700) delta=(0.0000,0.0000,0.4759) deltaMag=0.4759 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.3654 dpPos=0.0041 dpMove=-0.7500 iDist=0.6346 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,8.669,90.974) lpos=(-11.099,2.831,-3.046) lprev=(-11.099,2.628,-2.505) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,2.8306,-2.5700) mvmt=(0.0000,0.2024,-0.0647) collide=False insertType=0 objState=0x303 winterp=0.3654 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,8.669,91.450) lpos=(-11.099,2.831,-2.570) lprev=(-11.099,2.628,-2.505) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-1.3175,-0.9448) mvmt=(-0.0000,0.2024,-0.0647) collide=False insertType=0 objState=0x303 winterp=0.3654 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-1.5575,-1.0498) mvmt=(-0.0000,0.2024,-0.0647) collide=False insertType=0 objState=0x303 winterp=0.3654 return=-1 +[push-back] site=adjust_sphere in=(-0.2993,-1.5575,-1.0498) out=(-0.2993,-1.5575,-0.7757) delta=(0.0000,0.0000,0.2741) deltaMag=0.2741 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.3654->-0.0000 dpPos=0.2895 dpMove=-0.1905 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0993,2.8306,-2.2959) mvmt=(0.0000,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,8.669,91.724) lpos=(-11.099,2.831,-2.296) lprev=(-11.099,2.628,-2.505) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-1.3175,-0.6707) mvmt=(-0.0000,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-1.5575,-0.7757) mvmt=(-0.0000,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,2.8306,-2.2759) mvmt=(0.0000,0.2024,0.2094) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0993,3.0376,-2.0817) mvmt=(0.0000,0.2071,0.2142) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,8.462,91.938) lpos=(-11.099,3.038,-2.082) lprev=(-11.099,2.831,-2.296) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-1.1104,-0.4565) mvmt=(0.0000,0.2071,0.2142) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-1.3504,-0.5615) mvmt=(0.0000,0.2071,0.2142) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.0376,-2.0617) mvmt=(0.0000,0.2071,0.2142) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.0376,-2.8317) mvmt=(0.0000,0.2071,-0.5358) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0993,3.0376,-2.8317) out=(-11.0993,3.0376,-2.5700) delta=(0.0000,0.0000,0.2617) deltaMag=0.2617 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.6510 dpPos=0.2183 dpMove=-0.7500 iDist=0.3490 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,8.462,91.188) lpos=(-11.099,3.038,-2.832) lprev=(-11.099,2.831,-2.296) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,3.0376,-2.5700) mvmt=(0.0000,0.2071,-0.2741) collide=False insertType=0 objState=0x303 winterp=0.6510 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,8.462,91.450) lpos=(-11.099,3.038,-2.570) lprev=(-11.099,2.831,-2.296) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-1.1104,-0.9448) mvmt=(0.0000,0.2071,-0.2741) collide=False insertType=0 objState=0x303 winterp=0.6510 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-1.3504,-1.0498) mvmt=(0.0000,0.2071,-0.2741) collide=False insertType=0 objState=0x303 winterp=0.6510 return=-1 +[push-back] site=adjust_sphere in=(-0.2993,-1.3504,-1.0498) out=(-0.2993,-1.3504,-0.5615) delta=(0.0000,0.0000,0.4883) deltaMag=0.4883 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.6510->0.0000 dpPos=0.1407 dpMove=-0.3394 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0993,3.0376,-2.0817) mvmt=(0.0000,0.2071,0.2142) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,8.462,91.938) lpos=(-11.099,3.038,-2.082) lprev=(-11.099,2.831,-2.296) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-1.1104,-0.4565) mvmt=(0.0000,0.2071,0.2142) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-1.3504,-0.5615) mvmt=(0.0000,0.2071,0.2142) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.0376,-2.0617) mvmt=(0.0000,0.2071,0.2142) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1725,3.2403,-1.8721) mvmt=(-0.0732,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1725,3.2403,-1.8721) mvmt=(-0.0732,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.673,8.260,92.148) lpos=(-11.173,3.240,-1.872) lprev=(-11.099,3.038,-2.082) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3475,-0.9078,-0.2469) mvmt=(-0.0732,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3725,-1.1478,-0.3519) mvmt=(-0.0732,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3725,-3.3590,-1.7019) mvmt=(-0.0732,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1725,3.2403,-1.8521) mvmt=(-0.0732,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.673,8.260,92.148) lpos=(-11.173,3.240,-1.872) lprev=(-11.099,3.038,-2.082) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,3.2403,-1.8721) mvmt=(0.0000,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,8.260,92.148) lpos=(-11.099,3.240,-1.872) lprev=(-11.099,3.038,-2.082) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-0.9078,-0.2469) mvmt=(0.0000,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-1.1478,-0.3519) mvmt=(0.0000,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-3.3590,-1.7019) mvmt=(0.0000,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.2403,-1.8521) mvmt=(0.0000,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.2403,-2.6221) mvmt=(0.0000,0.2027,-0.5403) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-11.0993,3.2403,-2.6221) out=(-11.0993,3.2403,-2.5700) delta=(0.0000,0.0000,0.0521) deltaMag=0.0521 n=(0.0000,0.0000,1.0000) d=3.0500 r=0.4800 winterp=1.0000->0.9306 dpPos=0.4279 dpMove=-0.7500 iDist=0.0694 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.000,1.000) D=-90.970 caller=BSPQuery.StepSphereDown:1204 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,8.260,91.398) lpos=(-11.099,3.240,-2.622) lprev=(-11.099,3.038,-2.082) r=0.480 result=Adjusted poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,3.2403,-2.5700) mvmt=(0.0000,0.2027,-0.4883) collide=False insertType=0 objState=0x303 winterp=0.9306 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,8.260,91.450) lpos=(-11.099,3.240,-2.570) lprev=(-11.099,3.038,-2.082) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-0.9078,-0.9448) mvmt=(0.0000,0.2027,-0.4883) collide=False insertType=0 objState=0x303 winterp=0.9306 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-1.1478,-1.0498) mvmt=(0.0000,0.2027,-0.4883) collide=False insertType=0 objState=0x303 winterp=0.9306 return=-1 +[push-back] site=adjust_sphere in=(-0.2993,-1.1478,-1.0498) out=(-0.2993,-1.1478,-0.3519) delta=(0.0000,0.0000,0.6979) deltaMag=0.6979 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=0.9306->0.0000 dpPos=-0.0051 dpMove=-0.4851 iDist=1.0000 applied=True +[cp-write] ContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,1.000) D=-90.970 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0993,3.2403,-1.8721) mvmt=(0.0000,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,8.260,92.148) lpos=(-11.099,3.240,-1.872) lprev=(-11.099,3.038,-2.082) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-0.9078,-0.2469) mvmt=(0.0000,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-1.1478,-0.3519) mvmt=(0.0000,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-3.3590,-1.7019) mvmt=(0.0000,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.2403,-1.8521) mvmt=(0.0000,0.2027,0.2097) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0993,3.4337,-1.6721) mvmt=(0.0000,0.1934,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,8.066,92.348) lpos=(-11.099,3.434,-1.672) lprev=(-11.099,3.240,-1.872) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-0.7144,-0.0469) mvmt=(0.0000,0.1934,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.9544,-0.1518) mvmt=(-0.0000,0.1934,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-3.1657,-1.5019) mvmt=(0.0000,0.1934,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.4337,-1.6521) mvmt=(0.0000,0.1934,0.2000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.4337,-2.4221) mvmt=(0.0000,0.1934,-0.5500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,8.066,91.598) lpos=(-11.099,3.434,-2.422) lprev=(-11.099,3.240,-1.872) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-0.7144,-0.7969) mvmt=(0.0000,0.1934,-0.5500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.9544,-0.9018) mvmt=(-0.0000,0.1934,-0.5500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2993,-0.9544,-0.9018) out=(-0.2993,-0.9544,-0.1518) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->-0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0993,3.4337,-1.6721) mvmt=(0.0000,0.1934,0.2000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,8.066,92.348) lpos=(-11.099,3.434,-1.672) lprev=(-11.099,3.240,-1.872) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-0.7144,-0.0469) mvmt=(0.0000,0.1934,0.2000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.9544,-0.1518) mvmt=(-0.0000,0.1934,0.2000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-3.1657,-1.5019) mvmt=(0.0000,0.1934,0.2000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.4337,-1.6521) mvmt=(0.0000,0.1934,0.2000) collide=False insertType=0 objState=0x303 winterp=-0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1752,3.6437,-1.4548) mvmt=(-0.0758,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1752,3.6437,-1.4548) mvmt=(-0.0758,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.675,7.856,92.565) lpos=(-11.175,3.644,-1.455) lprev=(-11.099,3.434,-1.672) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3502,-0.5044,0.1704) mvmt=(-0.0758,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3752,-0.7444,0.0654) mvmt=(-0.0758,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3752,-2.9556,-1.2846) mvmt=(-0.0758,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1752,3.6437,-1.4348) mvmt=(-0.0758,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.675,7.856,92.565) lpos=(-11.175,3.644,-1.455) lprev=(-11.099,3.434,-1.672) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,3.6437,-1.4548) mvmt=(0.0000,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.856,92.565) lpos=(-11.099,3.644,-1.455) lprev=(-11.099,3.434,-1.672) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-0.5044,0.1704) mvmt=(0.0000,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.7444,0.0654) mvmt=(0.0000,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.9556,-1.2846) mvmt=(-0.0000,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.6437,-1.4348) mvmt=(0.0000,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.6437,-2.2048) mvmt=(0.0000,0.2100,-0.5327) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.856,91.815) lpos=(-11.099,3.644,-2.205) lprev=(-11.099,3.434,-1.672) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-0.5044,-0.5796) mvmt=(0.0000,0.2100,-0.5327) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.7444,-0.6846) mvmt=(0.0000,0.2100,-0.5327) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2993,-0.7444,-0.6846) out=(-0.2993,-0.7444,0.0654) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0993,3.6437,-1.4548) mvmt=(0.0000,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.856,92.565) lpos=(-11.099,3.644,-1.455) lprev=(-11.099,3.434,-1.672) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-0.5044,0.1704) mvmt=(0.0000,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.7444,0.0654) mvmt=(0.0000,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.9556,-1.2846) mvmt=(-0.0000,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.6437,-1.4348) mvmt=(0.0000,0.2100,0.2173) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0993,3.8562,-1.2349) mvmt=(0.0000,0.2125,0.2198) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.644,92.785) lpos=(-11.099,3.856,-1.235) lprev=(-11.099,3.644,-1.455) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-0.2919,0.3903) mvmt=(0.0000,0.2125,0.2198) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.5319,0.2853) mvmt=(0.0000,0.2125,0.2198) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.7431,-1.0648) mvmt=(0.0000,0.2125,0.2198) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.8562,-1.2150) mvmt=(0.0000,0.2125,0.2198) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.8562,-1.9849) mvmt=(0.0000,0.2125,-0.5302) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.644,92.035) lpos=(-11.099,3.856,-1.985) lprev=(-11.099,3.644,-1.455) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-0.2919,-0.3597) mvmt=(0.0000,0.2125,-0.5302) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.5319,-0.4647) mvmt=(0.0000,0.2125,-0.5302) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2993,-0.5319,-0.4647) out=(-0.2993,-0.5319,0.2853) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0993,3.8562,-1.2349) mvmt=(0.0000,0.2125,0.2198) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.644,92.785) lpos=(-11.099,3.856,-1.235) lprev=(-11.099,3.644,-1.455) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-0.2919,0.3903) mvmt=(0.0000,0.2125,0.2198) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.5319,0.2853) mvmt=(0.0000,0.2125,0.2198) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.7431,-1.0648) mvmt=(0.0000,0.2125,0.2198) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,3.8562,-1.2150) mvmt=(0.0000,0.2125,0.2198) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1753,4.0665,-1.0174) mvmt=(-0.0760,0.2103,0.2176) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1753,4.0665,-1.0174) mvmt=(-0.0760,0.2103,0.2176) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.675,7.433,93.003) lpos=(-11.175,4.067,-1.017) lprev=(-11.099,3.856,-1.235) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.3503,-0.0815,0.6078) mvmt=(-0.0760,0.2103,0.2176) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3753,-0.3215,0.5028) mvmt=(-0.0760,0.2103,0.2176) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3753,-2.5328,-0.8472) mvmt=(-0.0760,0.2103,0.2176) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1753,4.0665,-0.9974) mvmt=(-0.0760,0.2103,0.2176) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.675,7.433,93.003) lpos=(-11.175,4.067,-1.017) lprev=(-11.099,3.856,-1.235) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.0665,-1.0174) mvmt=(0.0000,0.2103,0.2176) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.433,93.003) lpos=(-11.099,4.067,-1.017) lprev=(-11.099,3.856,-1.235) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-0.0815,0.6078) mvmt=(0.0000,0.2103,0.2176) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.3215,0.5028) mvmt=(-0.0000,0.2103,0.2176) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.5328,-0.8472) mvmt=(0.0000,0.2103,0.2176) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.0665,-0.9974) mvmt=(0.0000,0.2103,0.2176) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.0665,-1.7674) mvmt=(0.0000,0.2103,-0.5324) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.433,92.253) lpos=(-11.099,4.067,-1.767) lprev=(-11.099,3.856,-1.235) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-0.0815,-0.1422) mvmt=(0.0000,0.2103,-0.5324) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.3215,-0.2472) mvmt=(-0.0000,0.2103,-0.5324) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2993,-0.3215,-0.2472) out=(-0.2993,-0.3215,0.5028) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0993,4.0665,-1.0174) mvmt=(0.0000,0.2103,0.2176) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.433,93.003) lpos=(-11.099,4.067,-1.017) lprev=(-11.099,3.856,-1.235) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,-0.0815,0.6078) mvmt=(0.0000,0.2103,0.2176) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.3215,0.5028) mvmt=(-0.0000,0.2103,0.2176) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.5328,-0.8472) mvmt=(0.0000,0.2103,0.2176) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.0665,-0.9974) mvmt=(0.0000,0.2103,0.2176) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0993,4.2742,-0.8025) mvmt=(0.0000,0.2077,0.2149) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.226,93.218) lpos=(-11.099,4.274,-0.802) lprev=(-11.099,4.067,-1.017) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,0.1262,0.8227) mvmt=(0.0000,0.2077,0.2149) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.1138,0.7177) mvmt=(0.0000,0.2077,0.2149) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.3251,-0.6323) mvmt=(-0.0000,0.2077,0.2149) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.2742,-0.7825) mvmt=(0.0000,0.2077,0.2149) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.2742,-1.5525) mvmt=(0.0000,0.2077,-0.5351) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.226,92.468) lpos=(-11.099,4.274,-1.552) lprev=(-11.099,4.067,-1.017) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,0.1262,0.0727) mvmt=(0.0000,0.2077,-0.5351) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.1138,-0.0323) mvmt=(0.0000,0.2077,-0.5351) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2993,-0.1138,-0.0323) out=(-0.2993,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0993,4.2742,-0.8025) mvmt=(0.0000,0.2077,0.2149) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.226,93.218) lpos=(-11.099,4.274,-0.802) lprev=(-11.099,4.067,-1.017) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2744,0.1262,0.8227) mvmt=(0.0000,0.2077,0.2149) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-0.1138,0.7177) mvmt=(0.0000,0.2077,0.2149) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.3251,-0.6323) mvmt=(-0.0000,0.2077,0.2149) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.2742,-0.7825) mvmt=(0.0000,0.2077,0.2149) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1752,4.4844,-0.5851) mvmt=(-0.0759,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1752,4.4844,-0.5851) mvmt=(-0.0759,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.675,7.016,93.435) lpos=(-11.175,4.484,-0.585) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1752,4.4844,-0.5851) mvmt=(-0.0759,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3502,0.3363,1.0401) mvmt=(-0.0759,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3752,0.0963,0.9351) mvmt=(-0.0759,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3752,-2.1149,-0.4149) mvmt=(-0.0759,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1752,4.4844,-0.5651) mvmt=(-0.0759,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.675,7.016,93.435) lpos=(-11.175,4.484,-0.585) lprev=(-11.099,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4844,-0.5851) mvmt=(0.0000,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.016,93.435) lpos=(-11.099,4.484,-0.585) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4844,-0.5851) mvmt=(0.0000,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3363,1.0401) mvmt=(0.0000,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0963,0.9351) mvmt=(0.0000,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1149,-0.4149) mvmt=(0.0000,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4844,-0.5651) mvmt=(0.0000,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4844,-0.5851) mvmt=(0.0000,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.016,93.435) lpos=(-11.099,4.484,-0.585) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4844,-0.5851) mvmt=(0.0000,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3363,1.0401) mvmt=(0.0000,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0963,0.9351) mvmt=(0.0000,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1149,-0.4149) mvmt=(0.0000,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4844,-0.5651) mvmt=(0.0000,0.2101,0.2174) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1747,4.4829,-0.5866) mvmt=(-0.0753,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1747,4.4829,-0.5866) mvmt=(-0.0753,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.675,7.017,93.433) lpos=(-11.175,4.483,-0.587) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1747,4.4829,-0.5866) mvmt=(-0.0753,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3497,0.3348,1.0386) mvmt=(-0.0753,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3747,0.0948,0.9336) mvmt=(-0.0753,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3747,-2.1164,-0.4164) mvmt=(-0.0753,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1747,4.4829,-0.5666) mvmt=(-0.0753,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.675,7.017,93.433) lpos=(-11.175,4.483,-0.587) lprev=(-11.099,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4829,-0.5866) mvmt=(0.0000,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.017,93.433) lpos=(-11.099,4.483,-0.587) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4829,-0.5866) mvmt=(0.0000,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3348,1.0386) mvmt=(0.0000,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0948,0.9336) mvmt=(0.0000,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1164,-0.4164) mvmt=(0.0000,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4829,-0.5666) mvmt=(0.0000,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4829,-0.5866) mvmt=(0.0000,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.017,93.433) lpos=(-11.099,4.483,-0.587) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4829,-0.5866) mvmt=(0.0000,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3348,1.0386) mvmt=(0.0000,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0948,0.9336) mvmt=(0.0000,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1164,-0.4164) mvmt=(0.0000,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4829,-0.5666) mvmt=(0.0000,0.2087,0.2159) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1757,4.4855,-0.5839) mvmt=(-0.0763,0.2113,0.2186) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1757,4.4855,-0.5839) mvmt=(-0.0763,0.2113,0.2186) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.676,7.014,93.436) lpos=(-11.176,4.486,-0.584) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1757,4.4855,-0.5839) mvmt=(-0.0763,0.2113,0.2186) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3507,0.3375,1.0413) mvmt=(-0.0763,0.2113,0.2186) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3757,0.0975,0.9363) mvmt=(-0.0763,0.2113,0.2186) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3757,-2.1138,-0.4137) mvmt=(-0.0763,0.2113,0.2186) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1757,4.4855,-0.5639) mvmt=(-0.0763,0.2113,0.2186) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.676,7.014,93.436) lpos=(-11.176,4.486,-0.584) lprev=(-11.099,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4855,-0.5839) mvmt=(0.0000,0.2113,0.2186) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.014,93.436) lpos=(-11.099,4.486,-0.584) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4855,-0.5839) mvmt=(0.0000,0.2113,0.2186) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3375,1.0413) mvmt=(0.0000,0.2113,0.2186) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0975,0.9363) mvmt=(0.0000,0.2113,0.2186) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1138,-0.4137) mvmt=(0.0000,0.2113,0.2186) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4855,-0.5639) mvmt=(0.0000,0.2113,0.2186) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4855,-0.5839) mvmt=(0.0000,0.2113,0.2186) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.014,93.436) lpos=(-11.099,4.486,-0.584) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4855,-0.5839) mvmt=(0.0000,0.2113,0.2186) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3375,1.0413) mvmt=(0.0000,0.2113,0.2186) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0975,0.9363) mvmt=(0.0000,0.2113,0.2186) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1138,-0.4137) mvmt=(0.0000,0.2113,0.2186) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4855,-0.5639) mvmt=(0.0000,0.2113,0.2186) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1739,4.4806,-0.5890) mvmt=(-0.0745,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1739,4.4806,-0.5890) mvmt=(-0.0745,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.674,7.019,93.431) lpos=(-11.174,4.481,-0.589) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1739,4.4806,-0.5890) mvmt=(-0.0745,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3489,0.3325,1.0362) mvmt=(-0.0745,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3739,0.0925,0.9312) mvmt=(-0.0745,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3739,-2.1187,-0.4188) mvmt=(-0.0745,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1739,4.4806,-0.5690) mvmt=(-0.0745,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.674,7.019,93.431) lpos=(-11.174,4.481,-0.589) lprev=(-11.099,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4806,-0.5890) mvmt=(0.0000,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.019,93.431) lpos=(-11.099,4.481,-0.589) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4806,-0.5890) mvmt=(0.0000,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3325,1.0362) mvmt=(0.0000,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0925,0.9312) mvmt=(0.0000,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1187,-0.4188) mvmt=(0.0000,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4806,-0.5690) mvmt=(0.0000,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4806,-0.5890) mvmt=(0.0000,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.019,93.431) lpos=(-11.099,4.481,-0.589) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4806,-0.5890) mvmt=(0.0000,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3325,1.0362) mvmt=(0.0000,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0925,0.9312) mvmt=(0.0000,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1187,-0.4188) mvmt=(0.0000,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4806,-0.5690) mvmt=(0.0000,0.2063,0.2134) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1753,4.4846,-0.5848) mvmt=(-0.0760,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1753,4.4846,-0.5848) mvmt=(-0.0760,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.675,7.015,93.435) lpos=(-11.175,4.485,-0.585) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1753,4.4846,-0.5848) mvmt=(-0.0760,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3503,0.3366,1.0404) mvmt=(-0.0760,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3753,0.0966,0.9354) mvmt=(-0.0760,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3753,-2.1147,-0.4146) mvmt=(-0.0760,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1753,4.4846,-0.5648) mvmt=(-0.0760,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.675,7.015,93.435) lpos=(-11.175,4.485,-0.585) lprev=(-11.099,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4846,-0.5848) mvmt=(0.0000,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.015,93.435) lpos=(-11.099,4.485,-0.585) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4846,-0.5848) mvmt=(0.0000,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3366,1.0404) mvmt=(0.0000,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0966,0.9354) mvmt=(0.0000,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1147,-0.4146) mvmt=(0.0000,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4846,-0.5648) mvmt=(0.0000,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4846,-0.5848) mvmt=(0.0000,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.015,93.435) lpos=(-11.099,4.485,-0.585) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4846,-0.5848) mvmt=(0.0000,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3366,1.0404) mvmt=(0.0000,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0966,0.9354) mvmt=(0.0000,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1147,-0.4146) mvmt=(0.0000,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4846,-0.5648) mvmt=(0.0000,0.2104,0.2177) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1748,4.4831,-0.5864) mvmt=(-0.0754,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1748,4.4831,-0.5864) mvmt=(-0.0754,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.675,7.017,93.434) lpos=(-11.175,4.483,-0.586) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1748,4.4831,-0.5864) mvmt=(-0.0754,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3498,0.3351,1.0388) mvmt=(-0.0754,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3748,0.0951,0.9338) mvmt=(-0.0754,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3748,-2.1162,-0.4162) mvmt=(-0.0754,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1748,4.4831,-0.5664) mvmt=(-0.0754,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.675,7.017,93.434) lpos=(-11.175,4.483,-0.586) lprev=(-11.099,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4831,-0.5864) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.017,93.434) lpos=(-11.099,4.483,-0.586) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4831,-0.5864) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3351,1.0388) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0951,0.9338) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1162,-0.4162) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4831,-0.5664) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4831,-0.5864) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.017,93.434) lpos=(-11.099,4.483,-0.586) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4831,-0.5864) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3351,1.0388) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0951,0.9338) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1162,-0.4162) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4831,-0.5664) mvmt=(0.0000,0.2089,0.2161) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1694,4.4681,-0.6019) mvmt=(-0.0700,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1694,4.4681,-0.6019) mvmt=(-0.0700,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.669,7.032,93.418) lpos=(-11.169,4.468,-0.602) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1694,4.4681,-0.6019) mvmt=(-0.0700,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3444,0.3201,1.0233) mvmt=(-0.0700,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3694,0.0801,0.9183) mvmt=(-0.0700,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3694,-2.1312,-0.4317) mvmt=(-0.0700,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1694,4.4681,-0.5819) mvmt=(-0.0700,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.669,7.032,93.418) lpos=(-11.169,4.468,-0.602) lprev=(-11.099,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4681,-0.6019) mvmt=(0.0000,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.032,93.418) lpos=(-11.099,4.468,-0.602) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4681,-0.6019) mvmt=(0.0000,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3201,1.0233) mvmt=(0.0000,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0801,0.9183) mvmt=(0.0000,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1312,-0.4317) mvmt=(0.0000,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4681,-0.5819) mvmt=(0.0000,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4681,-0.6019) mvmt=(0.0000,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.032,93.418) lpos=(-11.099,4.468,-0.602) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4681,-0.6019) mvmt=(0.0000,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3201,1.0233) mvmt=(0.0000,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0801,0.9183) mvmt=(0.0000,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1312,-0.4317) mvmt=(0.0000,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4681,-0.5819) mvmt=(0.0000,0.1939,0.2006) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1742,4.4814,-0.5882) mvmt=(-0.0748,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1742,4.4814,-0.5882) mvmt=(-0.0748,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.674,7.019,93.432) lpos=(-11.174,4.481,-0.588) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1742,4.4814,-0.5882) mvmt=(-0.0748,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3492,0.3333,1.0370) mvmt=(-0.0748,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3742,0.0933,0.9320) mvmt=(-0.0748,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3742,-2.1179,-0.4180) mvmt=(-0.0748,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1742,4.4814,-0.5682) mvmt=(-0.0748,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.674,7.019,93.432) lpos=(-11.174,4.481,-0.588) lprev=(-11.099,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4814,-0.5882) mvmt=(0.0000,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.019,93.432) lpos=(-11.099,4.481,-0.588) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4814,-0.5882) mvmt=(0.0000,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3333,1.0370) mvmt=(0.0000,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0933,0.9320) mvmt=(0.0000,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1179,-0.4180) mvmt=(0.0000,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4814,-0.5682) mvmt=(0.0000,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4814,-0.5882) mvmt=(0.0000,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.019,93.432) lpos=(-11.099,4.481,-0.588) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4814,-0.5882) mvmt=(0.0000,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3333,1.0370) mvmt=(0.0000,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0933,0.9320) mvmt=(0.0000,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1179,-0.4180) mvmt=(0.0000,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4814,-0.5682) mvmt=(0.0000,0.2072,0.2143) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1727,4.4775,-0.5922) mvmt=(-0.0734,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1727,4.4775,-0.5922) mvmt=(-0.0734,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.673,7.023,93.428) lpos=(-11.173,4.477,-0.592) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1727,4.4775,-0.5922) mvmt=(-0.0734,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3477,0.3294,1.0330) mvmt=(-0.0734,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3727,0.0894,0.9280) mvmt=(-0.0734,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3727,-2.1218,-0.4220) mvmt=(-0.0734,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1727,4.4775,-0.5722) mvmt=(-0.0734,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.673,7.023,93.428) lpos=(-11.173,4.477,-0.592) lprev=(-11.099,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4775,-0.5922) mvmt=(0.0000,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.023,93.428) lpos=(-11.099,4.477,-0.592) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4775,-0.5922) mvmt=(0.0000,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3294,1.0330) mvmt=(0.0000,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0894,0.9280) mvmt=(0.0000,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1218,-0.4220) mvmt=(0.0000,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4775,-0.5722) mvmt=(0.0000,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4775,-0.5922) mvmt=(0.0000,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.023,93.428) lpos=(-11.099,4.477,-0.592) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4775,-0.5922) mvmt=(0.0000,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3294,1.0330) mvmt=(0.0000,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0894,0.9280) mvmt=(0.0000,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1218,-0.4220) mvmt=(0.0000,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4775,-0.5722) mvmt=(0.0000,0.2033,0.2103) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1713,4.4735,-0.5964) mvmt=(-0.0720,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1713,4.4735,-0.5964) mvmt=(-0.0720,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.671,7.027,93.424) lpos=(-11.171,4.473,-0.596) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1713,4.4735,-0.5964) mvmt=(-0.0720,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3463,0.3254,1.0288) mvmt=(-0.0720,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3713,0.0854,0.9238) mvmt=(-0.0720,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3713,-2.1258,-0.4262) mvmt=(-0.0720,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1713,4.4735,-0.5764) mvmt=(-0.0720,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.671,7.027,93.424) lpos=(-11.171,4.473,-0.596) lprev=(-11.099,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4735,-0.5964) mvmt=(0.0000,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.027,93.424) lpos=(-11.099,4.473,-0.596) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4735,-0.5964) mvmt=(0.0000,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3254,1.0288) mvmt=(0.0000,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0854,0.9238) mvmt=(0.0000,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1258,-0.4262) mvmt=(0.0000,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4735,-0.5764) mvmt=(0.0000,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4735,-0.5964) mvmt=(0.0000,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.027,93.424) lpos=(-11.099,4.473,-0.596) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4735,-0.5964) mvmt=(0.0000,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3254,1.0288) mvmt=(0.0000,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0854,0.9238) mvmt=(0.0000,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1258,-0.4262) mvmt=(0.0000,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4735,-0.5764) mvmt=(0.0000,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1714,4.4736,-0.5962) mvmt=(-0.0720,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1714,4.4736,-0.5962) mvmt=(-0.0720,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.671,7.026,93.424) lpos=(-11.171,4.474,-0.596) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1714,4.4736,-0.5962) mvmt=(-0.0720,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3464,0.3256,1.0290) mvmt=(-0.0720,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3714,0.0856,0.9240) mvmt=(-0.0720,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3714,-2.1257,-0.4260) mvmt=(-0.0720,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1714,4.4736,-0.5762) mvmt=(-0.0720,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.671,7.026,93.424) lpos=(-11.171,4.474,-0.596) lprev=(-11.099,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4736,-0.5962) mvmt=(0.0000,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.026,93.424) lpos=(-11.099,4.474,-0.596) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4736,-0.5962) mvmt=(0.0000,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3256,1.0290) mvmt=(0.0000,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0856,0.9240) mvmt=(0.0000,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1257,-0.4260) mvmt=(0.0000,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4736,-0.5762) mvmt=(0.0000,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4736,-0.5962) mvmt=(0.0000,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.026,93.424) lpos=(-11.099,4.474,-0.596) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4736,-0.5962) mvmt=(0.0000,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3256,1.0290) mvmt=(0.0000,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0856,0.9240) mvmt=(0.0000,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1257,-0.4260) mvmt=(0.0000,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4736,-0.5762) mvmt=(0.0000,0.1994,0.2063) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1726,4.4770,-0.5927) mvmt=(-0.0732,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1726,4.4770,-0.5927) mvmt=(-0.0732,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.673,7.023,93.427) lpos=(-11.173,4.477,-0.593) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1726,4.4770,-0.5927) mvmt=(-0.0732,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3476,0.3290,1.0325) mvmt=(-0.0732,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3726,0.0890,0.9275) mvmt=(-0.0732,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3726,-2.1223,-0.4225) mvmt=(-0.0732,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1726,4.4770,-0.5727) mvmt=(-0.0732,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.673,7.023,93.427) lpos=(-11.173,4.477,-0.593) lprev=(-11.099,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4770,-0.5927) mvmt=(0.0000,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.023,93.427) lpos=(-11.099,4.477,-0.593) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4770,-0.5927) mvmt=(0.0000,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3290,1.0325) mvmt=(0.0000,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0890,0.9275) mvmt=(0.0000,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1223,-0.4225) mvmt=(0.0000,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4770,-0.5727) mvmt=(0.0000,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4770,-0.5927) mvmt=(0.0000,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.023,93.427) lpos=(-11.099,4.477,-0.593) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4770,-0.5927) mvmt=(0.0000,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3290,1.0325) mvmt=(0.0000,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0890,0.9275) mvmt=(0.0000,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1223,-0.4225) mvmt=(0.0000,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4770,-0.5727) mvmt=(0.0000,0.2028,0.2098) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1721,4.4756,-0.5942) mvmt=(-0.0727,0.2013,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1721,4.4756,-0.5942) mvmt=(-0.0727,0.2013,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.672,7.024,93.426) lpos=(-11.172,4.476,-0.594) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1721,4.4756,-0.5942) mvmt=(-0.0727,0.2013,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3471,0.3275,1.0310) mvmt=(-0.0727,0.2013,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3721,0.0875,0.9260) mvmt=(-0.0727,0.2013,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3721,-2.1237,-0.4240) mvmt=(-0.0727,0.2013,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1721,4.4756,-0.5742) mvmt=(-0.0727,0.2013,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.672,7.024,93.426) lpos=(-11.172,4.476,-0.594) lprev=(-11.099,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4756,-0.5942) mvmt=(0.0000,0.2013,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.024,93.426) lpos=(-11.099,4.476,-0.594) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4756,-0.5942) mvmt=(0.0000,0.2013,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3275,1.0310) mvmt=(0.0000,0.2013,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0875,0.9260) mvmt=(0.0000,0.2013,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1237,-0.4240) mvmt=(0.0000,0.2013,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4756,-0.5742) mvmt=(0.0000,0.2013,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4756,-0.5942) mvmt=(0.0000,0.2013,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.024,93.426) lpos=(-11.099,4.476,-0.594) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4756,-0.5942) mvmt=(0.0000,0.2013,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3275,1.0310) mvmt=(0.0000,0.2013,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0875,0.9260) mvmt=(0.0000,0.2013,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1237,-0.4240) mvmt=(0.0000,0.2013,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4756,-0.5742) mvmt=(0.0000,0.2013,0.2083) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1695,4.4684,-0.6016) mvmt=(-0.0701,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1695,4.4684,-0.6016) mvmt=(-0.0701,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.669,7.032,93.418) lpos=(-11.169,4.468,-0.602) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1695,4.4684,-0.6016) mvmt=(-0.0701,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3445,0.3203,1.0236) mvmt=(-0.0701,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3695,0.0803,0.9186) mvmt=(-0.0701,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3695,-2.1309,-0.4314) mvmt=(-0.0701,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1695,4.4684,-0.5816) mvmt=(-0.0701,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.669,7.032,93.418) lpos=(-11.169,4.468,-0.602) lprev=(-11.099,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4684,-0.6016) mvmt=(0.0000,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.032,93.418) lpos=(-11.099,4.468,-0.602) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4684,-0.6016) mvmt=(0.0000,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3203,1.0236) mvmt=(0.0000,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0803,0.9186) mvmt=(0.0000,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1309,-0.4314) mvmt=(0.0000,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4684,-0.5816) mvmt=(0.0000,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4684,-0.6016) mvmt=(0.0000,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.032,93.418) lpos=(-11.099,4.468,-0.602) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4684,-0.6016) mvmt=(0.0000,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3203,1.0236) mvmt=(0.0000,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0803,0.9186) mvmt=(0.0000,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1309,-0.4314) mvmt=(0.0000,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4684,-0.5816) mvmt=(0.0000,0.1942,0.2009) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1411,4.4743,-0.5955) mvmt=(-0.0417,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1411,4.4743,-0.5955) mvmt=(-0.0417,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.641,7.026,93.424) lpos=(-11.141,4.474,-0.596) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1411,4.4743,-0.5955) mvmt=(-0.0417,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3161,0.3262,1.0297) mvmt=(-0.0417,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3411,0.0862,0.9247) mvmt=(-0.0417,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3411,-2.1250,-0.4253) mvmt=(-0.0417,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1411,4.4743,-0.5755) mvmt=(-0.0417,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.641,7.026,93.424) lpos=(-11.141,4.474,-0.596) lprev=(-11.099,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4743,-0.5955) mvmt=(0.0000,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.026,93.424) lpos=(-11.099,4.474,-0.596) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4743,-0.5955) mvmt=(0.0000,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3262,1.0297) mvmt=(0.0000,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0862,0.9247) mvmt=(0.0000,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1250,-0.4253) mvmt=(0.0000,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4743,-0.5755) mvmt=(0.0000,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4743,-0.5955) mvmt=(0.0000,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.599,7.026,93.424) lpos=(-11.099,4.474,-0.596) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0993,4.4743,-0.5955) mvmt=(0.0000,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2744,0.3262,1.0297) mvmt=(0.0000,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,0.0862,0.9247) mvmt=(0.0000,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2993,-2.1250,-0.4253) mvmt=(0.0000,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0993,4.4743,-0.5755) mvmt=(0.0000,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1056,4.4832,-0.5863) mvmt=(-0.0062,0.2089,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.606,7.017,93.434) lpos=(-11.106,4.483,-0.586) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1056,4.4832,-0.5863) mvmt=(-0.0062,0.2089,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2806,0.3351,1.0389) mvmt=(-0.0062,0.2089,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3056,0.0951,0.9339) mvmt=(-0.0062,0.2089,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3056,-2.1161,-0.4161) mvmt=(-0.0062,0.2089,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1056,4.4832,-0.5663) mvmt=(-0.0062,0.2089,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1056,4.4832,-0.5863) mvmt=(-0.0062,0.2089,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.606,7.017,93.434) lpos=(-11.106,4.483,-0.586) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1056,4.4832,-0.5863) mvmt=(-0.0062,0.2089,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2806,0.3351,1.0389) mvmt=(-0.0062,0.2089,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3056,0.0951,0.9339) mvmt=(-0.0062,0.2089,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3056,-2.1161,-0.4161) mvmt=(-0.0062,0.2089,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1056,4.4832,-0.5663) mvmt=(-0.0062,0.2089,0.2162) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1056,4.2742,-0.8025) mvmt=(-0.0062,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.606,7.226,93.218) lpos=(-11.106,4.274,-0.802) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2806,0.1262,0.8227) mvmt=(-0.0062,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3056,-0.1138,0.7177) mvmt=(-0.0062,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3056,-2.3251,-0.6323) mvmt=(-0.0062,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1056,4.2742,-0.7825) mvmt=(-0.0062,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1056,4.2742,-1.5525) mvmt=(-0.0062,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.606,7.226,92.468) lpos=(-11.106,4.274,-1.552) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2806,0.1262,0.0727) mvmt=(-0.0062,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3056,-0.1138,-0.0323) mvmt=(-0.0062,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3056,-0.1138,-0.0323) out=(-0.3056,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.1056,4.2742,-0.8025) mvmt=(-0.0062,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.606,7.226,93.218) lpos=(-11.106,4.274,-0.802) lprev=(-11.099,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2806,0.1262,0.8227) mvmt=(-0.0062,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3056,-0.1138,0.7177) mvmt=(-0.0062,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3056,-2.3251,-0.6323) mvmt=(-0.0062,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1056,4.2742,-0.7825) mvmt=(-0.0062,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0781,4.4718,-0.5982) mvmt=(0.0275,0.1975,0.2043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.578,7.028,93.422) lpos=(-11.078,4.472,-0.598) lprev=(-11.106,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0781,4.4718,-0.5982) mvmt=(0.0275,0.1975,0.2043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2531,0.3237,1.0270) mvmt=(0.0275,0.1975,0.2043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2781,0.0837,0.9221) mvmt=(0.0275,0.1975,0.2043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2781,-2.1276,-0.4280) mvmt=(0.0275,0.1975,0.2043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0781,4.4718,-0.5782) mvmt=(0.0275,0.1975,0.2043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0781,4.4718,-0.5982) mvmt=(0.0275,0.1975,0.2043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.578,7.028,93.422) lpos=(-11.078,4.472,-0.598) lprev=(-11.106,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0781,4.4718,-0.5982) mvmt=(0.0275,0.1975,0.2043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2531,0.3237,1.0270) mvmt=(0.0275,0.1975,0.2043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2781,0.0837,0.9221) mvmt=(0.0275,0.1975,0.2043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2781,-2.1276,-0.4280) mvmt=(0.0275,0.1975,0.2043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0781,4.4718,-0.5782) mvmt=(0.0275,0.1975,0.2043) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0781,4.2742,-0.8025) mvmt=(0.0275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.578,7.226,93.218) lpos=(-11.078,4.274,-0.802) lprev=(-11.106,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2531,0.1262,0.8227) mvmt=(0.0275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2781,-0.1138,0.7177) mvmt=(0.0275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2781,-2.3251,-0.6323) mvmt=(0.0275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0781,4.2742,-0.7825) mvmt=(0.0275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0781,4.2742,-1.5525) mvmt=(0.0275,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.578,7.226,92.468) lpos=(-11.078,4.274,-1.552) lprev=(-11.106,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2531,0.1262,0.0727) mvmt=(0.0275,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2781,-0.1138,-0.0323) mvmt=(0.0275,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2781,-0.1138,-0.0323) out=(-0.2781,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0781,4.2742,-0.8025) mvmt=(0.0275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.578,7.226,93.218) lpos=(-11.078,4.274,-0.802) lprev=(-11.106,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2531,0.1262,0.8227) mvmt=(0.0275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2781,-0.1138,0.7177) mvmt=(0.0275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2781,-2.3251,-0.6323) mvmt=(0.0275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0781,4.2742,-0.7825) mvmt=(0.0275,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0103,4.4842,-0.5853) mvmt=(0.0677,0.2099,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.510,7.016,93.435) lpos=(-11.010,4.484,-0.585) lprev=(-11.078,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0103,4.4842,-0.5853) mvmt=(0.0677,0.2099,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1853,0.3361,1.0399) mvmt=(0.0677,0.2099,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2103,0.0961,0.9349) mvmt=(0.0677,0.2099,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2103,-2.1151,-0.4151) mvmt=(0.0677,0.2099,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0103,4.4842,-0.5653) mvmt=(0.0677,0.2099,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0103,4.4842,-0.5853) mvmt=(0.0677,0.2099,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.510,7.016,93.435) lpos=(-11.010,4.484,-0.585) lprev=(-11.078,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0103,4.4842,-0.5853) mvmt=(0.0677,0.2099,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1853,0.3361,1.0399) mvmt=(0.0677,0.2099,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2103,0.0961,0.9349) mvmt=(0.0677,0.2099,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2103,-2.1151,-0.4151) mvmt=(0.0677,0.2099,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0103,4.4842,-0.5653) mvmt=(0.0677,0.2099,0.2172) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0103,4.2742,-0.8025) mvmt=(0.0677,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.510,7.226,93.218) lpos=(-11.010,4.274,-0.802) lprev=(-11.078,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1853,0.1262,0.8227) mvmt=(0.0677,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2103,-0.1138,0.7177) mvmt=(0.0677,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2103,-2.3251,-0.6323) mvmt=(0.0677,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0103,4.2742,-0.7825) mvmt=(0.0677,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0103,4.2742,-1.5525) mvmt=(0.0677,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.510,7.226,92.468) lpos=(-11.010,4.274,-1.552) lprev=(-11.078,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1853,0.1262,0.0727) mvmt=(0.0677,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2103,-0.1138,-0.0323) mvmt=(0.0677,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2103,-0.1138,-0.0323) out=(-0.2103,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0103,4.2742,-0.8025) mvmt=(0.0677,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.510,7.226,93.218) lpos=(-11.010,4.274,-0.802) lprev=(-11.078,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1853,0.1262,0.8227) mvmt=(0.0677,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2103,-0.1138,0.7177) mvmt=(0.0677,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2103,-2.3251,-0.6323) mvmt=(0.0677,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0103,4.2742,-0.7825) mvmt=(0.0677,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9090,4.4747,-0.5951) mvmt=(0.1013,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.409,7.025,93.425) lpos=(-10.909,4.475,-0.595) lprev=(-11.010,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9090,4.4747,-0.5951) mvmt=(0.1013,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0840,0.3266,1.0301) mvmt=(0.1013,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1090,0.0866,0.9251) mvmt=(0.1013,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1090,-2.1246,-0.4249) mvmt=(0.1013,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9090,4.4747,-0.5751) mvmt=(0.1013,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9090,4.4747,-0.5951) mvmt=(0.1013,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.409,7.025,93.425) lpos=(-10.909,4.475,-0.595) lprev=(-11.010,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9090,4.4747,-0.5951) mvmt=(0.1013,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0840,0.3266,1.0301) mvmt=(0.1013,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1090,0.0866,0.9251) mvmt=(0.1013,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1090,-2.1246,-0.4249) mvmt=(0.1013,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9090,4.4747,-0.5751) mvmt=(0.1013,0.2005,0.2074) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9090,4.2742,-0.8025) mvmt=(0.1013,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.409,7.226,93.218) lpos=(-10.909,4.274,-0.802) lprev=(-11.010,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0840,0.1262,0.8227) mvmt=(0.1013,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1090,-0.1138,0.7177) mvmt=(0.1013,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1090,-2.3251,-0.6323) mvmt=(0.1013,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9090,4.2742,-0.7825) mvmt=(0.1013,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9090,4.2742,-1.5525) mvmt=(0.1013,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.409,7.226,92.468) lpos=(-10.909,4.274,-1.552) lprev=(-11.010,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0840,0.1262,0.0727) mvmt=(0.1013,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1090,-0.1138,-0.0323) mvmt=(0.1013,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1090,-0.1138,-0.0323) out=(-0.1090,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.9090,4.2742,-0.8025) mvmt=(0.1013,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.409,7.226,93.218) lpos=(-10.909,4.274,-0.802) lprev=(-11.010,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0840,0.1262,0.8227) mvmt=(0.1013,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1090,-0.1138,0.7177) mvmt=(0.1013,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1090,-2.3251,-0.6323) mvmt=(0.1013,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9090,4.2742,-0.7825) mvmt=(0.1013,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7955,4.4743,-0.5955) mvmt=(0.1135,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.295,7.026,93.424) lpos=(-10.795,4.474,-0.595) lprev=(-10.909,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7955,4.4743,-0.5955) mvmt=(0.1135,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9705,0.3263,1.0297) mvmt=(0.1135,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0045,0.0863,0.9247) mvmt=(0.1135,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0045,-2.1250,-0.4253) mvmt=(0.1135,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7955,4.4743,-0.5755) mvmt=(0.1135,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7955,4.4743,-0.5955) mvmt=(0.1135,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.295,7.026,93.424) lpos=(-10.795,4.474,-0.595) lprev=(-10.909,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7955,4.4743,-0.5955) mvmt=(0.1135,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9705,0.3263,1.0297) mvmt=(0.1135,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0045,0.0863,0.9247) mvmt=(0.1135,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0045,-2.1250,-0.4253) mvmt=(0.1135,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7955,4.4743,-0.5755) mvmt=(0.1135,0.2001,0.2070) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7955,4.2742,-0.8025) mvmt=(0.1135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.295,7.226,93.218) lpos=(-10.795,4.274,-0.802) lprev=(-10.909,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9705,0.1262,0.8227) mvmt=(0.1135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0045,-0.1138,0.7177) mvmt=(0.1135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0045,-2.3251,-0.6323) mvmt=(0.1135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7955,4.2742,-0.7825) mvmt=(0.1135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7955,4.2742,-1.5525) mvmt=(0.1135,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.295,7.226,92.468) lpos=(-10.795,4.274,-1.552) lprev=(-10.909,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9705,0.1262,0.0727) mvmt=(0.1135,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0045,-0.1138,-0.0323) mvmt=(0.1135,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0045,-0.1138,-0.0323) out=(0.0045,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.7955,4.2742,-0.8025) mvmt=(0.1135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.295,7.226,93.218) lpos=(-10.795,4.274,-0.802) lprev=(-10.909,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9705,0.1262,0.8227) mvmt=(0.1135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0045,-0.1138,0.7177) mvmt=(0.1135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0045,-2.3251,-0.6323) mvmt=(0.1135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7955,4.2742,-0.7825) mvmt=(0.1135,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6858,4.4675,-0.6026) mvmt=(0.1096,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.186,7.033,93.417) lpos=(-10.686,4.467,-0.603) lprev=(-10.795,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6858,4.4675,-0.6026) mvmt=(0.1096,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8608,0.3194,1.0226) mvmt=(0.1096,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1142,0.0794,0.9176) mvmt=(0.1096,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1142,-2.1318,-0.4324) mvmt=(0.1096,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6858,4.4675,-0.5826) mvmt=(0.1096,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6858,4.4675,-0.6026) mvmt=(0.1096,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.186,7.033,93.417) lpos=(-10.686,4.467,-0.603) lprev=(-10.795,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6858,4.4675,-0.6026) mvmt=(0.1096,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8608,0.3194,1.0226) mvmt=(0.1096,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1142,0.0794,0.9176) mvmt=(0.1096,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1142,-2.1318,-0.4324) mvmt=(0.1096,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6858,4.4675,-0.5826) mvmt=(0.1096,0.1932,0.1999) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6858,4.2742,-0.8025) mvmt=(0.1096,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.186,7.226,93.218) lpos=(-10.686,4.274,-0.802) lprev=(-10.795,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8608,0.1262,0.8227) mvmt=(0.1096,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1142,-0.1138,0.7177) mvmt=(0.1096,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1142,-2.3251,-0.6323) mvmt=(0.1096,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6858,4.2742,-0.7825) mvmt=(0.1096,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6858,4.2742,-1.5525) mvmt=(0.1096,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.186,7.226,92.468) lpos=(-10.686,4.274,-1.552) lprev=(-10.795,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8608,0.1262,0.0727) mvmt=(0.1096,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1142,-0.1138,-0.0323) mvmt=(0.1096,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1142,-0.1138,-0.0323) out=(0.1142,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6858,4.2742,-0.8025) mvmt=(0.1096,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.186,7.226,93.218) lpos=(-10.686,4.274,-0.802) lprev=(-10.795,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8608,0.1262,0.8227) mvmt=(0.1096,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1142,-0.1138,0.7177) mvmt=(0.1096,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1142,-2.3251,-0.6323) mvmt=(0.1096,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6858,4.2742,-0.7825) mvmt=(0.1096,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5783,4.4637,-0.6065) mvmt=(0.1075,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.078,7.036,93.413) lpos=(-10.578,4.464,-0.606) lprev=(-10.686,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5783,4.4637,-0.6065) mvmt=(0.1075,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7533,0.3156,1.0187) mvmt=(0.1075,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2217,0.0756,0.9137) mvmt=(0.1075,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2217,-2.1356,-0.4363) mvmt=(0.1075,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2873,-2.9365,2.4180) mvmt=(-0.1321,0.1732,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5783,4.4637,-0.5865) mvmt=(0.1075,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5783,4.4637,-0.6065) mvmt=(0.1075,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.078,7.036,93.413) lpos=(-10.578,4.464,-0.606) lprev=(-10.686,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5783,4.4637,-0.6065) mvmt=(0.1075,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7533,0.3156,1.0187) mvmt=(0.1075,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2217,0.0756,0.9137) mvmt=(0.1075,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2217,-2.1356,-0.4363) mvmt=(0.1075,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2873,-2.9365,2.4180) mvmt=(-0.1321,0.1732,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5783,4.4637,-0.5865) mvmt=(0.1075,0.1895,0.1960) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5783,4.2742,-0.8025) mvmt=(0.1075,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.078,7.226,93.218) lpos=(-10.578,4.274,-0.802) lprev=(-10.686,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7533,0.1262,0.8227) mvmt=(0.1075,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2217,-0.1138,0.7177) mvmt=(0.1075,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2217,-2.3251,-0.6323) mvmt=(0.1075,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5783,4.2742,-0.7825) mvmt=(0.1075,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5783,4.2742,-1.5525) mvmt=(0.1075,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.078,7.226,92.468) lpos=(-10.578,4.274,-1.552) lprev=(-10.686,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7533,0.1262,0.0727) mvmt=(0.1075,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2217,-0.1138,-0.0323) mvmt=(0.1075,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2217,-0.1138,-0.0323) out=(0.2217,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.5783,4.2742,-0.8025) mvmt=(0.1075,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.078,7.226,93.218) lpos=(-10.578,4.274,-0.802) lprev=(-10.686,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7533,0.1262,0.8227) mvmt=(0.1075,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2217,-0.1138,0.7177) mvmt=(0.1075,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2217,-2.3251,-0.6323) mvmt=(0.1075,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5783,4.2742,-0.7825) mvmt=(0.1075,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4707,4.4640,-0.6061) mvmt=(0.1077,0.1898,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.971,7.036,93.414) lpos=(-10.471,4.464,-0.606) lprev=(-10.578,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4707,4.4640,-0.6061) mvmt=(0.1077,0.1898,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6457,0.3160,1.0191) mvmt=(0.1077,0.1898,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3293,0.0760,0.9141) mvmt=(0.1077,0.1898,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3293,-2.1353,-0.4359) mvmt=(0.1077,0.1898,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3292,-2.8373,2.4184) mvmt=(-0.1323,0.1735,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4707,4.4640,-0.5861) mvmt=(0.1077,0.1898,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4707,4.4640,-0.6061) mvmt=(0.1077,0.1898,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.971,7.036,93.414) lpos=(-10.471,4.464,-0.606) lprev=(-10.578,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4707,4.4640,-0.6061) mvmt=(0.1077,0.1898,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6457,0.3160,1.0191) mvmt=(0.1077,0.1898,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3293,0.0760,0.9141) mvmt=(0.1077,0.1898,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3293,-2.1353,-0.4359) mvmt=(0.1077,0.1898,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3292,-2.8373,2.4184) mvmt=(-0.1323,0.1735,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4707,4.4640,-0.5861) mvmt=(0.1077,0.1898,0.1964) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4707,4.2742,-0.8025) mvmt=(0.1077,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.971,7.226,93.218) lpos=(-10.471,4.274,-0.802) lprev=(-10.578,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6457,0.1262,0.8227) mvmt=(0.1077,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3293,-0.1138,0.7177) mvmt=(0.1077,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3293,-2.3251,-0.6323) mvmt=(0.1077,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4707,4.2742,-0.7825) mvmt=(0.1077,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4707,4.2742,-1.5525) mvmt=(0.1077,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.971,7.226,92.468) lpos=(-10.471,4.274,-1.552) lprev=(-10.578,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6457,0.1262,0.0727) mvmt=(0.1077,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3293,-0.1138,-0.0323) mvmt=(0.1077,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3293,-0.1138,-0.0323) out=(0.3293,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4707,4.2742,-0.8025) mvmt=(0.1077,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.971,7.226,93.218) lpos=(-10.471,4.274,-0.802) lprev=(-10.578,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6457,0.1262,0.8227) mvmt=(0.1077,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3293,-0.1138,0.7177) mvmt=(0.1077,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3293,-2.3251,-0.6323) mvmt=(0.1077,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4707,4.2742,-0.7825) mvmt=(0.1077,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3588,4.4714,-0.5985) mvmt=(0.1119,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3588,4.4714,-0.5985) mvmt=(0.1119,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.859,7.029,93.421) lpos=(-10.359,4.471,-0.599) lprev=(-10.471,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3588,4.4714,-0.5985) mvmt=(0.1119,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5338,0.3234,1.0267) mvmt=(0.1119,0.1972,0.2040) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5338,0.3234,1.0267) out=(-0.5338,0.3234,1.3522) delta=(0.0000,0.0000,0.3255) deltaMag=0.3255 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4575 dpPos=0.2498 dpMove=-0.4243 iDist=0.5425 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3588,4.4714,-0.2730) mvmt=(0.1119,0.1972,0.5295) collide=False insertType=0 objState=0x303 winterp=0.4575 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.859,7.029,93.747) lpos=(-10.359,4.471,-0.273) lprev=(-10.471,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3588,4.4714,-0.2730) mvmt=(0.1119,0.1972,0.5295) collide=False insertType=0 objState=0x303 winterp=0.4575 return=-1 +[push-back] site=adjust_sphere in=(-10.3588,4.4714,-0.2730) out=(-10.3588,4.4714,-0.2730) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=0.4575->0.4575 dpPos=-0.2730 dpMove=-0.2745 iDist=2.7432 applied=False +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.3588,4.4714,-0.2730) mvmt=(0.1119,0.1972,0.5295) collide=False insertType=0 objState=0x303 winterp=0.4575 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5338,0.3234,1.3522) mvmt=(0.1119,0.1972,0.5295) collide=False insertType=0 objState=0x303 winterp=0.4575 return=-1 +[push-back-disp] site=dispatch center=(0.4412,0.0834,1.2472) mvmt=(0.1119,0.1972,0.5295) collide=False insertType=0 objState=0x303 winterp=0.4575 return=-1 +[push-back-disp] site=dispatch center=(0.4412,-2.1279,-0.1028) mvmt=(0.1119,0.1972,0.5295) collide=False insertType=0 objState=0x303 winterp=0.4575 return=-1 +[push-back-disp] site=dispatch center=(0.3663,-2.7315,2.7515) mvmt=(-0.1375,0.1803,0.5295) collide=False insertType=0 objState=0x303 winterp=0.4575 return=-1 +[push-back-disp] site=dispatch center=(-10.3588,4.4714,-0.2530) mvmt=(0.1119,0.1972,0.5295) collide=False insertType=0 objState=0x303 winterp=0.4575 return=-1 +[push-back-disp] site=dispatch center=(-10.3588,4.4714,-0.2730) mvmt=(0.1119,0.1972,0.5295) collide=False insertType=1 objState=0x303 winterp=0.4575 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.859,7.029,93.747) lpos=(-10.359,4.471,-0.273) lprev=(-10.471,4.274,-0.802) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.859,7.029,93.421) lpos=(-10.359,4.471,-0.599) lprev=(-10.471,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3588,4.2742,-0.8025) mvmt=(0.1119,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4575 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.859,7.226,93.218) lpos=(-10.359,4.274,-0.802) lprev=(-10.471,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5338,0.1262,0.8227) mvmt=(0.1119,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4575 return=-1 +[push-back-disp] site=dispatch center=(-10.3588,4.2742,-0.8025) mvmt=(0.1119,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.859,7.226,93.218) lpos=(-10.359,4.274,-0.802) lprev=(-10.471,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5338,0.1262,0.8227) mvmt=(0.1119,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5338,0.1262,0.8227) out=(-0.5338,0.1262,1.1550) delta=(0.0000,0.0000,0.3323) deltaMag=0.3323 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4462 dpPos=0.2450 dpMove=-0.4243 iDist=0.5538 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3588,4.2742,-0.4702) mvmt=(0.1119,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.859,7.226,93.550) lpos=(-10.359,4.274,-0.470) lprev=(-10.471,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3588,4.2742,-0.4702) mvmt=(0.1119,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.3588,4.2742,-0.4702) mvmt=(0.1119,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5338,0.1262,1.1550) mvmt=(0.1119,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(0.4412,-0.1138,1.0500) mvmt=(0.1119,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(0.4412,-2.3251,-0.3000) mvmt=(0.1119,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(0.5477,-2.8089,2.5543) mvmt=(0.0439,0.1029,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(-10.3588,4.2742,-0.4502) mvmt=(0.1119,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(-10.3588,4.2742,-0.4702) mvmt=(0.1119,0.0000,0.3323) collide=False insertType=1 objState=0x303 winterp=0.4462 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.859,7.226,93.550) lpos=(-10.359,4.274,-0.470) lprev=(-10.471,4.274,-0.802) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4707,4.4720,-0.4712) mvmt=(0.0000,0.1978,0.3313) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4707,4.4720,-0.4712) mvmt=(0.0000,0.1978,0.3313) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.971,7.028,93.549) lpos=(-10.471,4.472,-0.471) lprev=(-10.471,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4707,4.4720,-0.4712) mvmt=(0.0000,0.1978,0.3313) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4707,4.4720,-0.4712) mvmt=(0.0000,0.1978,0.3313) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6457,0.3240,1.1540) mvmt=(0.0000,0.1978,0.3313) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3293,0.0840,1.0490) mvmt=(0.0000,0.1978,0.3313) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3293,-2.1273,-0.3010) mvmt=(0.0000,0.1978,0.3313) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3218,-2.8342,2.5533) mvmt=(-0.1819,0.0776,0.3313) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4707,4.4720,-0.4512) mvmt=(0.0000,0.1978,0.3313) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.971,7.028,93.549) lpos=(-10.471,4.472,-0.471) lprev=(-10.471,4.274,-0.802) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3627,4.4711,-0.4721) mvmt=(0.1079,0.1969,0.3304) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3627,4.4711,-0.4721) mvmt=(0.1079,0.1969,0.3304) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.863,7.029,93.548) lpos=(-10.363,4.471,-0.472) lprev=(-10.471,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3627,4.4711,-0.4721) mvmt=(0.1079,0.1969,0.3304) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.3627,4.4711,-0.4721) mvmt=(0.1079,0.1969,0.3304) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5377,0.3231,1.1531) mvmt=(0.1079,0.1969,0.3304) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4373,0.0831,1.0481) mvmt=(0.1079,0.1969,0.3304) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4373,-2.1282,-0.3019) mvmt=(0.1079,0.1969,0.3304) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3650,-2.7352,2.5524) mvmt=(-0.1388,0.1765,0.3304) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3627,4.4711,-0.4521) mvmt=(0.1079,0.1969,0.3304) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.863,7.029,93.548) lpos=(-10.363,4.471,-0.472) lprev=(-10.471,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3627,4.2742,-0.8025) mvmt=(0.1079,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.863,7.226,93.218) lpos=(-10.363,4.274,-0.802) lprev=(-10.471,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5377,0.1262,0.8227) mvmt=(0.1079,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3627,4.2742,-0.8025) mvmt=(0.1079,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.863,7.226,93.218) lpos=(-10.363,4.274,-0.802) lprev=(-10.471,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5377,0.1262,0.8227) mvmt=(0.1079,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5377,0.1262,0.8227) out=(-0.5377,0.1262,1.1550) delta=(0.0000,0.0000,0.3323) deltaMag=0.3323 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4462 dpPos=0.2450 dpMove=-0.4243 iDist=0.5538 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3627,4.2742,-0.4702) mvmt=(0.1079,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.863,7.226,93.550) lpos=(-10.363,4.274,-0.470) lprev=(-10.471,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3627,4.2742,-0.4702) mvmt=(0.1079,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.3627,4.2742,-0.4702) mvmt=(0.1079,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5377,0.1262,1.1550) mvmt=(0.1079,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(0.4373,-0.1138,1.0500) mvmt=(0.1079,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(0.4373,-2.3251,-0.3000) mvmt=(0.1079,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(0.5461,-2.8125,2.5543) mvmt=(0.0423,0.0993,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(-10.3627,4.2742,-0.4502) mvmt=(0.1079,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(-10.3627,4.2742,-0.4702) mvmt=(0.1079,0.0000,0.3323) collide=False insertType=1 objState=0x303 winterp=0.4462 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.863,7.226,93.550) lpos=(-10.363,4.274,-0.470) lprev=(-10.471,4.274,-0.802) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4707,4.4765,-0.4667) mvmt=(0.0000,0.2023,0.3358) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4707,4.4765,-0.4667) mvmt=(0.0000,0.2023,0.3358) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.971,7.023,93.553) lpos=(-10.471,4.477,-0.467) lprev=(-10.471,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4707,4.4765,-0.4667) mvmt=(0.0000,0.2023,0.3358) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4707,4.4765,-0.4667) mvmt=(0.0000,0.2023,0.3358) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6457,0.3285,1.1585) mvmt=(0.0000,0.2023,0.3358) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3293,0.0885,1.0535) mvmt=(0.0000,0.2023,0.3358) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3293,-2.1228,-0.2965) mvmt=(0.0000,0.2023,0.3358) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3177,-2.8324,2.5578) mvmt=(-0.1861,0.0794,0.3358) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4707,4.4765,-0.4467) mvmt=(0.0000,0.2023,0.3358) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.971,7.023,93.553) lpos=(-10.471,4.477,-0.467) lprev=(-10.471,4.274,-0.802) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3554,4.4845,-0.4588) mvmt=(0.1152,0.2102,0.3437) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3554,4.4845,-0.4588) mvmt=(0.1152,0.2102,0.3437) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.855,7.016,93.561) lpos=(-10.355,4.484,-0.459) lprev=(-10.471,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3554,4.4845,-0.4588) mvmt=(0.1152,0.2102,0.3437) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.3554,4.4845,-0.4588) mvmt=(0.1152,0.2102,0.3437) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5304,0.3364,1.1664) mvmt=(0.1152,0.2102,0.3437) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4446,0.0964,1.0614) mvmt=(0.1152,0.2102,0.3437) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.4446,-2.1149,-0.2886) mvmt=(0.1152,0.2102,0.3437) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3556,-2.7233,2.5657) mvmt=(-0.1482,0.1885,0.3437) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3554,4.4845,-0.4388) mvmt=(0.1152,0.2102,0.3437) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.855,7.016,93.561) lpos=(-10.355,4.484,-0.459) lprev=(-10.471,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3554,4.2742,-0.8025) mvmt=(0.1152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.855,7.226,93.218) lpos=(-10.355,4.274,-0.802) lprev=(-10.471,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5304,0.1262,0.8227) mvmt=(0.1152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3554,4.2742,-0.8025) mvmt=(0.1152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.855,7.226,93.218) lpos=(-10.355,4.274,-0.802) lprev=(-10.471,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5304,0.1262,0.8227) mvmt=(0.1152,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5304,0.1262,0.8227) out=(-0.5304,0.1262,1.1550) delta=(0.0000,0.0000,0.3323) deltaMag=0.3323 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4462 dpPos=0.2450 dpMove=-0.4243 iDist=0.5538 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3554,4.2742,-0.4702) mvmt=(0.1152,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.855,7.226,93.550) lpos=(-10.355,4.274,-0.470) lprev=(-10.471,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3554,4.2742,-0.4702) mvmt=(0.1152,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.3554,4.2742,-0.4702) mvmt=(0.1152,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5304,0.1262,1.1550) mvmt=(0.1152,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(0.4446,-0.1138,1.0500) mvmt=(0.1152,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(0.4446,-2.3251,-0.3000) mvmt=(0.1152,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(0.5490,-2.8058,2.5543) mvmt=(0.0452,0.1060,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(-10.3554,4.2742,-0.4502) mvmt=(0.1152,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(-10.3554,4.2742,-0.4702) mvmt=(0.1152,0.0000,0.3323) collide=False insertType=1 objState=0x303 winterp=0.4462 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.855,7.226,93.550) lpos=(-10.355,4.274,-0.470) lprev=(-10.471,4.274,-0.802) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnLeft Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4707,4.4682,-0.4751) mvmt=(0.0000,0.1939,0.3274) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4707,4.4682,-0.4751) mvmt=(0.0000,0.1939,0.3274) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.971,7.032,93.545) lpos=(-10.471,4.468,-0.475) lprev=(-10.471,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4707,4.4682,-0.4751) mvmt=(0.0000,0.1939,0.3274) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4707,4.4682,-0.4751) mvmt=(0.0000,0.1939,0.3274) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6457,0.3201,1.1501) mvmt=(0.0000,0.1939,0.3274) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3293,0.0801,1.0451) mvmt=(0.0000,0.1939,0.3274) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3293,-2.1312,-0.3049) mvmt=(0.0000,0.1939,0.3274) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3254,-2.8357,2.5494) mvmt=(-0.1784,0.0761,0.3274) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4707,4.4682,-0.4551) mvmt=(0.0000,0.1939,0.3274) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.971,7.032,93.545) lpos=(-10.471,4.468,-0.475) lprev=(-10.471,4.274,-0.802) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4139,4.4880,-0.4553) mvmt=(0.0568,0.2137,0.3472) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4139,4.4880,-0.4553) mvmt=(0.0568,0.2137,0.3472) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.012,93.565) lpos=(-10.414,4.488,-0.455) lprev=(-10.471,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4139,4.4880,-0.4553) mvmt=(0.0568,0.2137,0.3472) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4139,4.4880,-0.4553) mvmt=(0.0568,0.2137,0.3472) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5889,0.3399,1.1699) mvmt=(0.0568,0.2137,0.3472) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3861,0.0999,1.0649) mvmt=(0.0568,0.2137,0.3472) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3861,-2.1114,-0.2851) mvmt=(0.0568,0.2137,0.3472) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3295,-2.7757,2.5692) mvmt=(-0.1743,0.1361,0.3472) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4139,4.4880,-0.4353) mvmt=(0.0568,0.2137,0.3472) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.012,93.565) lpos=(-10.414,4.488,-0.455) lprev=(-10.471,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4139,4.2742,-0.8025) mvmt=(0.0568,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.226,93.218) lpos=(-10.414,4.274,-0.802) lprev=(-10.471,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5889,0.1262,0.8227) mvmt=(0.0568,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3861,-0.1138,0.7177) mvmt=(0.0568,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3861,-2.3251,-0.6323) mvmt=(0.0568,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4139,4.2742,-0.7825) mvmt=(0.0568,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4139,4.2742,-1.5525) mvmt=(0.0568,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.226,92.468) lpos=(-10.414,4.274,-1.552) lprev=(-10.471,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5889,0.1262,0.0727) mvmt=(0.0568,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3861,-0.1138,-0.0323) mvmt=(0.0568,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3861,-0.1138,-0.0323) out=(0.3861,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4139,4.2742,-0.8025) mvmt=(0.0568,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.914,7.226,93.218) lpos=(-10.414,4.274,-0.802) lprev=(-10.471,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5889,0.1262,0.8227) mvmt=(0.0568,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3861,-0.1138,0.7177) mvmt=(0.0568,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3861,-2.3251,-0.6323) mvmt=(0.0568,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4139,4.2742,-0.7825) mvmt=(0.0568,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.3937,4.4794,-0.5903) mvmt=(0.0202,0.2052,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.3937,4.4794,-0.5903) mvmt=(0.0202,0.2052,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.894,7.021,93.430) lpos=(-10.394,4.479,-0.590) lprev=(-10.414,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3937,4.4794,-0.5903) mvmt=(0.0202,0.2052,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5687,0.3313,1.0349) mvmt=(0.0202,0.2052,0.2122) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5687,0.3313,1.0349) out=(-0.5687,0.3313,1.3602) delta=(0.0000,0.0000,0.3252) deltaMag=0.3252 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4580 dpPos=0.2500 dpMove=-0.4243 iDist=0.5420 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.719,0.695) D=-69.503 -> n=(0.000,0.707,0.707) D=-70.779 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3937,4.4794,-0.2650) mvmt=(0.0202,0.2052,0.5375) collide=False insertType=0 objState=0x303 winterp=0.4580 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.894,7.021,93.755) lpos=(-10.394,4.479,-0.265) lprev=(-10.414,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3937,4.4794,-0.2650) mvmt=(0.0202,0.2052,0.5375) collide=False insertType=0 objState=0x303 winterp=0.4580 return=-1 +[push-back] site=adjust_sphere in=(-10.3937,4.4794,-0.2650) out=(-10.3937,4.4794,-0.2650) delta=(0.0000,0.0000,0.0000) deltaMag=0.0000 n=(0.0000,0.0000,1.0000) d=-0.0000 r=0.4800 winterp=0.4580->0.4580 dpPos=-0.2650 dpMove=-0.2748 iDist=2.7114 applied=False +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.3937,4.4794,-0.2650) mvmt=(0.0202,0.2052,0.5375) collide=False insertType=0 objState=0x303 winterp=0.4580 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5687,0.3313,1.3602) mvmt=(0.0202,0.2052,0.5375) collide=False insertType=0 objState=0x303 winterp=0.4580 return=-1 +[push-back-disp] site=dispatch center=(0.4063,0.0913,1.2552) mvmt=(0.0202,0.2052,0.5375) collide=False insertType=0 objState=0x303 winterp=0.4580 return=-1 +[push-back-disp] site=dispatch center=(0.4063,-2.1199,-0.0948) mvmt=(0.0202,0.2052,0.5375) collide=False insertType=0 objState=0x303 winterp=0.4580 return=-1 +[push-back-disp] site=dispatch center=(0.3453,-2.7604,2.7595) mvmt=(-0.1808,0.0991,0.5375) collide=False insertType=0 objState=0x303 winterp=0.4580 return=-1 +[push-back-disp] site=dispatch center=(-10.3937,4.4794,-0.2450) mvmt=(0.0202,0.2052,0.5375) collide=False insertType=0 objState=0x303 winterp=0.4580 return=-1 +[push-back-disp] site=dispatch center=(-10.3937,4.4794,-0.2650) mvmt=(0.0202,0.2052,0.5375) collide=False insertType=1 objState=0x303 winterp=0.4580 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.894,7.021,93.755) lpos=(-10.394,4.479,-0.265) lprev=(-10.414,4.274,-0.802) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[indoor-bsp] cell=0xA9B40147 wpos=(140.894,7.021,93.430) lpos=(-10.394,4.479,-0.590) lprev=(-10.414,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.3937,4.2742,-0.8025) mvmt=(0.0202,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4580 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.894,7.226,93.218) lpos=(-10.394,4.274,-0.802) lprev=(-10.414,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5687,0.1262,0.8227) mvmt=(0.0202,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.4580 return=-1 +[push-back-disp] site=dispatch center=(-10.3937,4.2742,-0.8025) mvmt=(0.0202,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.894,7.226,93.218) lpos=(-10.394,4.274,-0.802) lprev=(-10.414,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.5687,0.1262,0.8227) mvmt=(0.0202,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.5687,0.1262,0.8227) out=(-0.5687,0.1262,1.1550) delta=(0.0000,0.0000,0.3323) deltaMag=0.3323 n=(0.0000,-0.7071,0.7071) d=-0.2475 r=0.4800 winterp=1.0000->0.4462 dpPos=0.2450 dpMove=-0.4243 iDist=0.5538 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.3937,4.2742,-0.4702) mvmt=(0.0202,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.894,7.226,93.550) lpos=(-10.394,4.274,-0.470) lprev=(-10.414,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.3937,4.2742,-0.4702) mvmt=(0.0202,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.3937,4.2742,-0.4702) mvmt=(0.0202,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.5687,0.1262,1.1550) mvmt=(0.0202,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(0.4063,-0.1138,1.0500) mvmt=(0.0202,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(0.4063,-2.3251,-0.3000) mvmt=(0.0202,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(0.5340,-2.8409,2.5543) mvmt=(0.0079,0.0186,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(-10.3937,4.2742,-0.4502) mvmt=(0.0202,0.0000,0.3323) collide=False insertType=0 objState=0x303 winterp=0.4462 return=-1 +[push-back-disp] site=dispatch center=(-10.3937,4.2742,-0.4702) mvmt=(0.0202,0.0000,0.3323) collide=False insertType=1 objState=0x303 winterp=0.4462 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.894,7.226,93.550) lpos=(-10.394,4.274,-0.470) lprev=(-10.414,4.274,-0.802) r=0.480 result=Collided poly=n/a +[cp-write] ContactPlaneValid: True -> False caller=SpherePath.StepUpSlide:475 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.707,0.707) D=-70.779 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4304,4.4900,-0.4532) mvmt=(-0.0166,0.2158,0.3493) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4304,4.4900,-0.4532) mvmt=(-0.0166,0.2158,0.3493) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.930,7.010,93.567) lpos=(-10.430,4.490,-0.453) lprev=(-10.414,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4304,4.4900,-0.4532) mvmt=(-0.0166,0.2158,0.3493) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40143 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40143 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-10.4304,4.4900,-0.4532) mvmt=(-0.0166,0.2158,0.3493) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6054,0.3420,1.1720) mvmt=(-0.0166,0.2158,0.3493) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3696,0.1020,1.0670) mvmt=(-0.0166,0.2158,0.3493) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3696,-2.1093,-0.2830) mvmt=(-0.0166,0.2158,0.3493) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3211,-2.7901,2.5713) mvmt=(-0.2050,0.0694,0.3493) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4304,4.4900,-0.4332) mvmt=(-0.0166,0.2158,0.3493) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.930,7.010,93.567) lpos=(-10.430,4.490,-0.453) lprev=(-10.414,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-10.4304,4.2742,-0.8025) mvmt=(-0.0166,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.930,7.226,93.218) lpos=(-10.430,4.274,-0.802) lprev=(-10.414,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6054,0.1262,0.8227) mvmt=(-0.0166,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3696,-0.1138,0.7177) mvmt=(-0.0166,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3696,-2.3251,-0.6323) mvmt=(-0.0166,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4304,4.2742,-0.7825) mvmt=(-0.0166,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4304,4.2742,-1.5525) mvmt=(-0.0166,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.930,7.226,92.468) lpos=(-10.430,4.274,-1.552) lprev=(-10.414,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6054,0.1262,0.0727) mvmt=(-0.0166,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3696,-0.1138,-0.0323) mvmt=(-0.0166,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3696,-0.1138,-0.0323) out=(0.3696,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[cp-write] ContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[cp-write] LastKnownContactPlane: n=(0.000,0.707,0.707) D=-70.779 -> n=(0.000,0.719,0.695) D=-69.503 caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4304,4.2742,-0.8025) mvmt=(-0.0166,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.930,7.226,93.218) lpos=(-10.430,4.274,-0.802) lprev=(-10.414,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6054,0.1262,0.8227) mvmt=(-0.0166,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3696,-0.1138,0.7177) mvmt=(-0.0166,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3696,-2.3251,-0.6323) mvmt=(-0.0166,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4304,4.2742,-0.7825) mvmt=(-0.0166,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.4801,4.4724,-0.5974) mvmt=(-0.0497,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.980,7.028,93.423) lpos=(-10.480,4.472,-0.597) lprev=(-10.430,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4801,4.4724,-0.5974) mvmt=(-0.0497,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6551,0.3244,1.0278) mvmt=(-0.0497,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3199,0.0844,0.9228) mvmt=(-0.0497,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-2.1269,-0.4272) mvmt=(-0.0497,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3177,-2.8427,2.4271) mvmt=(-0.2018,0.0320,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4801,4.4724,-0.5774) mvmt=(-0.0497,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4801,4.4724,-0.5974) mvmt=(-0.0497,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.980,7.028,93.423) lpos=(-10.480,4.472,-0.597) lprev=(-10.430,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.4801,4.4724,-0.5974) mvmt=(-0.0497,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.6551,0.3244,1.0278) mvmt=(-0.0497,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3199,0.0844,0.9228) mvmt=(-0.0497,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-2.1269,-0.4272) mvmt=(-0.0497,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3177,-2.8427,2.4271) mvmt=(-0.2018,0.0320,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4801,4.4724,-0.5774) mvmt=(-0.0497,0.1982,0.2050) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4801,4.2742,-0.8025) mvmt=(-0.0497,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.980,7.226,93.218) lpos=(-10.480,4.274,-0.802) lprev=(-10.430,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6551,0.1262,0.8227) mvmt=(-0.0497,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-0.1138,0.7177) mvmt=(-0.0497,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-2.3251,-0.6323) mvmt=(-0.0497,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4801,4.2742,-0.7825) mvmt=(-0.0497,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4801,4.2742,-1.5525) mvmt=(-0.0497,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.980,7.226,92.468) lpos=(-10.480,4.274,-1.552) lprev=(-10.430,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6551,0.1262,0.0727) mvmt=(-0.0497,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-0.1138,-0.0323) mvmt=(-0.0497,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.3199,-0.1138,-0.0323) out=(0.3199,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.4801,4.2742,-0.8025) mvmt=(-0.0497,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(140.980,7.226,93.218) lpos=(-10.480,4.274,-0.802) lprev=(-10.430,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.6551,0.1262,0.8227) mvmt=(-0.0497,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-0.1138,0.7177) mvmt=(-0.0497,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.3199,-2.3251,-0.6323) mvmt=(-0.0497,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.4801,4.2742,-0.7825) mvmt=(-0.0497,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.5592,4.4788,-0.5909) mvmt=(-0.0790,0.2045,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.059,7.021,93.429) lpos=(-10.559,4.479,-0.591) lprev=(-10.480,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5592,4.4788,-0.5909) mvmt=(-0.0790,0.2045,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7342,0.3307,1.0343) mvmt=(-0.0790,0.2045,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2408,0.0907,0.9293) mvmt=(-0.0790,0.2045,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2408,-2.1205,-0.4207) mvmt=(-0.0790,0.2045,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2809,-2.9129,2.4336) mvmt=(-0.2191,0.0076,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5592,4.4788,-0.5709) mvmt=(-0.0790,0.2045,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5592,4.4788,-0.5909) mvmt=(-0.0790,0.2045,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.059,7.021,93.429) lpos=(-10.559,4.479,-0.591) lprev=(-10.480,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.5592,4.4788,-0.5909) mvmt=(-0.0790,0.2045,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7342,0.3307,1.0343) mvmt=(-0.0790,0.2045,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2408,0.0907,0.9293) mvmt=(-0.0790,0.2045,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2408,-2.1205,-0.4207) mvmt=(-0.0790,0.2045,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2809,-2.9129,2.4336) mvmt=(-0.2191,0.0076,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5592,4.4788,-0.5709) mvmt=(-0.0790,0.2045,0.2116) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5592,4.2742,-0.8025) mvmt=(-0.0790,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.059,7.226,93.218) lpos=(-10.559,4.274,-0.802) lprev=(-10.480,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7342,0.1262,0.8227) mvmt=(-0.0790,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2408,-0.1138,0.7177) mvmt=(-0.0790,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2408,-2.3251,-0.6323) mvmt=(-0.0790,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5592,4.2742,-0.7825) mvmt=(-0.0790,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5592,4.2742,-1.5525) mvmt=(-0.0790,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.059,7.226,92.468) lpos=(-10.559,4.274,-1.552) lprev=(-10.480,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7342,0.1262,0.0727) mvmt=(-0.0790,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2408,-0.1138,-0.0323) mvmt=(-0.0790,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.2408,-0.1138,-0.0323) out=(0.2408,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.5592,4.2742,-0.8025) mvmt=(-0.0790,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.059,7.226,93.218) lpos=(-10.559,4.274,-0.802) lprev=(-10.480,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7342,0.1262,0.8227) mvmt=(-0.0790,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2408,-0.1138,0.7177) mvmt=(-0.0790,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2408,-2.3251,-0.6323) mvmt=(-0.0790,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.5592,4.2742,-0.7825) mvmt=(-0.0790,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6372,4.4762,-0.5935) mvmt=(-0.0780,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.137,7.024,93.426) lpos=(-10.637,4.476,-0.594) lprev=(-10.559,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6372,4.4762,-0.5935) mvmt=(-0.0780,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8122,0.3282,1.0317) mvmt=(-0.0780,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1628,0.0882,0.9267) mvmt=(-0.0780,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1628,-2.1231,-0.4233) mvmt=(-0.0780,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2526,-2.9857,2.4310) mvmt=(-0.2164,0.0075,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6372,4.4762,-0.5735) mvmt=(-0.0780,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6372,4.4762,-0.5935) mvmt=(-0.0780,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.137,7.024,93.426) lpos=(-10.637,4.476,-0.594) lprev=(-10.559,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6372,4.4762,-0.5935) mvmt=(-0.0780,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8122,0.3282,1.0317) mvmt=(-0.0780,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1628,0.0882,0.9267) mvmt=(-0.0780,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1628,-2.1231,-0.4233) mvmt=(-0.0780,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2526,-2.9857,2.4310) mvmt=(-0.2164,0.0075,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6372,4.4762,-0.5735) mvmt=(-0.0780,0.2020,0.2089) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6372,4.2742,-0.8025) mvmt=(-0.0780,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.137,7.226,93.218) lpos=(-10.637,4.274,-0.802) lprev=(-10.559,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8122,0.1262,0.8227) mvmt=(-0.0780,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1628,-0.1138,0.7177) mvmt=(-0.0780,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1628,-2.3251,-0.6323) mvmt=(-0.0780,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6372,4.2742,-0.7825) mvmt=(-0.0780,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6372,4.2742,-1.5525) mvmt=(-0.0780,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.137,7.226,92.468) lpos=(-10.637,4.274,-1.552) lprev=(-10.559,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8122,0.1262,0.0727) mvmt=(-0.0780,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1628,-0.1138,-0.0323) mvmt=(-0.0780,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1628,-0.1138,-0.0323) out=(0.1628,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6372,4.2742,-0.8025) mvmt=(-0.0780,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.137,7.226,93.218) lpos=(-10.637,4.274,-0.802) lprev=(-10.559,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8122,0.1262,0.8227) mvmt=(-0.0780,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1628,-0.1138,0.7177) mvmt=(-0.0780,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1628,-2.3251,-0.6323) mvmt=(-0.0780,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6372,4.2742,-0.7825) mvmt=(-0.0780,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7142,4.4735,-0.5964) mvmt=(-0.0770,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.214,7.027,93.424) lpos=(-10.714,4.473,-0.596) lprev=(-10.637,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7142,4.4735,-0.5964) mvmt=(-0.0770,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8892,0.3254,1.0288) mvmt=(-0.0770,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0858,0.0855,0.9239) mvmt=(-0.0770,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0858,-2.1258,-0.4262) mvmt=(-0.0770,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2249,-3.0576,2.4281) mvmt=(-0.2135,0.0074,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7142,4.4735,-0.5764) mvmt=(-0.0770,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7142,4.4735,-0.5964) mvmt=(-0.0770,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.214,7.027,93.424) lpos=(-10.714,4.473,-0.596) lprev=(-10.637,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7142,4.4735,-0.5964) mvmt=(-0.0770,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8892,0.3254,1.0288) mvmt=(-0.0770,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0858,0.0855,0.9239) mvmt=(-0.0770,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0858,-2.1258,-0.4262) mvmt=(-0.0770,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2249,-3.0576,2.4281) mvmt=(-0.2135,0.0074,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7142,4.4735,-0.5764) mvmt=(-0.0770,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7142,4.2742,-0.8025) mvmt=(-0.0770,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.214,7.226,93.218) lpos=(-10.714,4.274,-0.802) lprev=(-10.637,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8892,0.1262,0.8227) mvmt=(-0.0770,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0858,-0.1138,0.7177) mvmt=(-0.0770,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0858,-2.3251,-0.6323) mvmt=(-0.0770,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7142,4.2742,-0.7825) mvmt=(-0.0770,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7142,4.2742,-1.5525) mvmt=(-0.0770,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.214,7.226,92.468) lpos=(-10.714,4.274,-1.552) lprev=(-10.637,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8892,0.1262,0.0727) mvmt=(-0.0770,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0858,-0.1138,-0.0323) mvmt=(-0.0770,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0858,-0.1138,-0.0323) out=(0.0858,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.7142,4.2742,-0.8025) mvmt=(-0.0770,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.214,7.226,93.218) lpos=(-10.714,4.274,-0.802) lprev=(-10.637,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8892,0.1262,0.8227) mvmt=(-0.0770,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0858,-0.1138,0.7177) mvmt=(-0.0770,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0858,-2.3251,-0.6323) mvmt=(-0.0770,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7142,4.2742,-0.7825) mvmt=(-0.0770,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7887,4.4670,-0.6030) mvmt=(-0.0745,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.289,7.033,93.417) lpos=(-10.789,4.467,-0.603) lprev=(-10.714,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7887,4.4670,-0.6030) mvmt=(-0.0745,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9637,0.3190,1.0222) mvmt=(-0.0745,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0113,0.0790,0.9172) mvmt=(-0.0745,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0113,-2.1323,-0.4328) mvmt=(-0.0745,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7887,4.4670,-0.5830) mvmt=(-0.0745,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7887,4.4670,-0.6030) mvmt=(-0.0745,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.289,7.033,93.417) lpos=(-10.789,4.467,-0.603) lprev=(-10.714,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7887,4.4670,-0.6030) mvmt=(-0.0745,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9637,0.3190,1.0222) mvmt=(-0.0745,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0113,0.0790,0.9172) mvmt=(-0.0745,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0113,-2.1323,-0.4328) mvmt=(-0.0745,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7887,4.4670,-0.5830) mvmt=(-0.0745,0.1928,0.1995) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7887,4.2742,-0.8025) mvmt=(-0.0745,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.289,7.226,93.218) lpos=(-10.789,4.274,-0.802) lprev=(-10.714,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9637,0.1262,0.8227) mvmt=(-0.0745,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0113,-0.1138,0.7177) mvmt=(-0.0745,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0113,-2.3251,-0.6323) mvmt=(-0.0745,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7887,4.2742,-0.7825) mvmt=(-0.0745,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7887,4.2742,-1.5525) mvmt=(-0.0745,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.289,7.226,92.468) lpos=(-10.789,4.274,-1.552) lprev=(-10.714,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9637,0.1262,0.0727) mvmt=(-0.0745,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0113,-0.1138,-0.0323) mvmt=(-0.0745,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0113,-0.1138,-0.0323) out=(0.0113,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.7887,4.2742,-0.8025) mvmt=(-0.0745,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.289,7.226,93.218) lpos=(-10.789,4.274,-0.802) lprev=(-10.714,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9637,0.1262,0.8227) mvmt=(-0.0745,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0113,-0.1138,0.7177) mvmt=(-0.0745,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0113,-2.3251,-0.6323) mvmt=(-0.0745,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7887,4.2742,-0.7825) mvmt=(-0.0745,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8645,4.4704,-0.5996) mvmt=(-0.0758,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.364,7.030,93.420) lpos=(-10.864,4.470,-0.600) lprev=(-10.789,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8645,4.4704,-0.5996) mvmt=(-0.0758,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0395,0.3223,1.0256) mvmt=(-0.0758,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0645,0.0823,0.9206) mvmt=(-0.0758,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0645,-2.1289,-0.4294) mvmt=(-0.0758,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8645,4.4704,-0.5796) mvmt=(-0.0758,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8645,4.4704,-0.5996) mvmt=(-0.0758,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.364,7.030,93.420) lpos=(-10.864,4.470,-0.600) lprev=(-10.789,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8645,4.4704,-0.5996) mvmt=(-0.0758,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0395,0.3223,1.0256) mvmt=(-0.0758,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0645,0.0823,0.9206) mvmt=(-0.0758,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0645,-2.1289,-0.4294) mvmt=(-0.0758,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8645,4.4704,-0.5796) mvmt=(-0.0758,0.1962,0.2029) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8645,4.2742,-0.8025) mvmt=(-0.0758,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.364,7.226,93.218) lpos=(-10.864,4.274,-0.802) lprev=(-10.789,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0395,0.1262,0.8227) mvmt=(-0.0758,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0645,-0.1138,0.7177) mvmt=(-0.0758,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0645,-2.3251,-0.6323) mvmt=(-0.0758,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8645,4.2742,-0.7825) mvmt=(-0.0758,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8645,4.2742,-1.5525) mvmt=(-0.0758,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.364,7.226,92.468) lpos=(-10.864,4.274,-1.552) lprev=(-10.789,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0395,0.1262,0.0727) mvmt=(-0.0758,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0645,-0.1138,-0.0323) mvmt=(-0.0758,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0645,-0.1138,-0.0323) out=(-0.0645,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.8645,4.2742,-0.8025) mvmt=(-0.0758,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.364,7.226,93.218) lpos=(-10.864,4.274,-0.802) lprev=(-10.789,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0395,0.1262,0.8227) mvmt=(-0.0758,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0645,-0.1138,0.7177) mvmt=(-0.0758,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0645,-2.3251,-0.6323) mvmt=(-0.0758,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8645,4.2742,-0.7825) mvmt=(-0.0758,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9415,4.4735,-0.5963) mvmt=(-0.0770,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.441,7.026,93.424) lpos=(-10.941,4.474,-0.596) lprev=(-10.864,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9415,4.4735,-0.5963) mvmt=(-0.0770,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1165,0.3255,1.0289) mvmt=(-0.0770,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1415,0.0855,0.9239) mvmt=(-0.0770,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1415,-2.1258,-0.4261) mvmt=(-0.0770,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9415,4.4735,-0.5763) mvmt=(-0.0770,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9415,4.4735,-0.5963) mvmt=(-0.0770,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.441,7.026,93.424) lpos=(-10.941,4.474,-0.596) lprev=(-10.864,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9415,4.4735,-0.5963) mvmt=(-0.0770,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1165,0.3255,1.0289) mvmt=(-0.0770,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1415,0.0855,0.9239) mvmt=(-0.0770,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1415,-2.1258,-0.4261) mvmt=(-0.0770,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9415,4.4735,-0.5763) mvmt=(-0.0770,0.1993,0.2061) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9415,4.2742,-0.8025) mvmt=(-0.0770,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.441,7.226,93.218) lpos=(-10.941,4.274,-0.802) lprev=(-10.864,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1165,0.1262,0.8227) mvmt=(-0.0770,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1415,-0.1138,0.7177) mvmt=(-0.0770,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1415,-2.3251,-0.6323) mvmt=(-0.0770,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9415,4.2742,-0.7825) mvmt=(-0.0770,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9415,4.2742,-1.5525) mvmt=(-0.0770,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.441,7.226,92.468) lpos=(-10.941,4.274,-1.552) lprev=(-10.864,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1165,0.1262,0.0727) mvmt=(-0.0770,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1415,-0.1138,-0.0323) mvmt=(-0.0770,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1415,-0.1138,-0.0323) out=(-0.1415,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.9415,4.2742,-0.8025) mvmt=(-0.0770,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.441,7.226,93.218) lpos=(-10.941,4.274,-0.802) lprev=(-10.864,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1165,0.1262,0.8227) mvmt=(-0.0770,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1415,-0.1138,0.7177) mvmt=(-0.0770,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1415,-2.3251,-0.6323) mvmt=(-0.0770,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9415,4.2742,-0.7825) mvmt=(-0.0770,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0202,4.4780,-0.5917) mvmt=(-0.0787,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.520,7.022,93.428) lpos=(-11.020,4.478,-0.592) lprev=(-10.941,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0202,4.4780,-0.5917) mvmt=(-0.0787,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1952,0.3300,1.0335) mvmt=(-0.0787,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2202,0.0900,0.9285) mvmt=(-0.0787,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2202,-2.1213,-0.4215) mvmt=(-0.0787,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0202,4.4780,-0.5717) mvmt=(-0.0787,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0202,4.4780,-0.5917) mvmt=(-0.0787,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.520,7.022,93.428) lpos=(-11.020,4.478,-0.592) lprev=(-10.941,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0202,4.4780,-0.5917) mvmt=(-0.0787,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1952,0.3300,1.0335) mvmt=(-0.0787,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2202,0.0900,0.9285) mvmt=(-0.0787,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2202,-2.1213,-0.4215) mvmt=(-0.0787,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0202,4.4780,-0.5717) mvmt=(-0.0787,0.2038,0.2108) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0202,4.2742,-0.8025) mvmt=(-0.0787,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.520,7.226,93.218) lpos=(-11.020,4.274,-0.802) lprev=(-10.941,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1952,0.1262,0.8227) mvmt=(-0.0787,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2202,-0.1138,0.7177) mvmt=(-0.0787,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2202,-2.3251,-0.6323) mvmt=(-0.0787,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0202,4.2742,-0.7825) mvmt=(-0.0787,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0202,4.2742,-1.5525) mvmt=(-0.0787,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.520,7.226,92.468) lpos=(-11.020,4.274,-1.552) lprev=(-10.941,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1952,0.1262,0.0727) mvmt=(-0.0787,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2202,-0.1138,-0.0323) mvmt=(-0.0787,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2202,-0.1138,-0.0323) out=(-0.2202,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0202,4.2742,-0.8025) mvmt=(-0.0787,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.520,7.226,93.218) lpos=(-11.020,4.274,-0.802) lprev=(-10.941,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1952,0.1262,0.8227) mvmt=(-0.0787,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2202,-0.1138,0.7177) mvmt=(-0.0787,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2202,-2.3251,-0.6323) mvmt=(-0.0787,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0202,4.2742,-0.7825) mvmt=(-0.0787,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1001,4.4810,-0.5886) mvmt=(-0.0799,0.2067,0.2139) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.600,7.019,93.431) lpos=(-11.100,4.481,-0.589) lprev=(-11.020,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1001,4.4810,-0.5886) mvmt=(-0.0799,0.2067,0.2139) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2751,0.3329,1.0366) mvmt=(-0.0799,0.2067,0.2139) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3001,0.0929,0.9316) mvmt=(-0.0799,0.2067,0.2139) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3001,-2.1184,-0.4184) mvmt=(-0.0799,0.2067,0.2139) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1001,4.4810,-0.5686) mvmt=(-0.0799,0.2067,0.2139) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1001,4.4810,-0.5886) mvmt=(-0.0799,0.2067,0.2139) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.600,7.019,93.431) lpos=(-11.100,4.481,-0.589) lprev=(-11.020,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1001,4.4810,-0.5886) mvmt=(-0.0799,0.2067,0.2139) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2751,0.3329,1.0366) mvmt=(-0.0799,0.2067,0.2139) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3001,0.0929,0.9316) mvmt=(-0.0799,0.2067,0.2139) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3001,-2.1184,-0.4184) mvmt=(-0.0799,0.2067,0.2139) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1001,4.4810,-0.5686) mvmt=(-0.0799,0.2067,0.2139) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1001,4.2742,-0.8025) mvmt=(-0.0799,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.600,7.226,93.218) lpos=(-11.100,4.274,-0.802) lprev=(-11.020,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2751,0.1262,0.8227) mvmt=(-0.0799,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3001,-0.1138,0.7177) mvmt=(-0.0799,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3001,-2.3251,-0.6323) mvmt=(-0.0799,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1001,4.2742,-0.7825) mvmt=(-0.0799,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1001,4.2742,-1.5525) mvmt=(-0.0799,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.600,7.226,92.468) lpos=(-11.100,4.274,-1.552) lprev=(-11.020,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2751,0.1262,0.0727) mvmt=(-0.0799,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3001,-0.1138,-0.0323) mvmt=(-0.0799,-0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3001,-0.1138,-0.0323) out=(-0.3001,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.1001,4.2742,-0.8025) mvmt=(-0.0799,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.600,7.226,93.218) lpos=(-11.100,4.274,-0.802) lprev=(-11.020,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2751,0.1262,0.8227) mvmt=(-0.0799,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3001,-0.1138,0.7177) mvmt=(-0.0799,-0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3001,-2.3251,-0.6323) mvmt=(-0.0799,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1001,4.2742,-0.7825) mvmt=(-0.0799,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1789,4.4783,-0.5914) mvmt=(-0.0788,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1789,4.4783,-0.5914) mvmt=(-0.0788,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.679,7.022,93.429) lpos=(-11.179,4.478,-0.591) lprev=(-11.100,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1789,4.4783,-0.5914) mvmt=(-0.0788,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3539,0.3302,1.0338) mvmt=(-0.0788,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3789,0.0902,0.9288) mvmt=(-0.0788,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3789,-2.1210,-0.4212) mvmt=(-0.0788,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1789,4.4783,-0.5714) mvmt=(-0.0788,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.679,7.022,93.429) lpos=(-11.179,4.478,-0.591) lprev=(-11.100,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1001,4.4783,-0.5914) mvmt=(0.0000,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.600,7.022,93.429) lpos=(-11.100,4.478,-0.591) lprev=(-11.100,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1001,4.4783,-0.5914) mvmt=(0.0000,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2751,0.3302,1.0338) mvmt=(0.0000,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3001,0.0902,0.9288) mvmt=(0.0000,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3001,-2.1210,-0.4212) mvmt=(0.0000,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1001,4.4783,-0.5714) mvmt=(0.0000,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1001,4.4783,-0.5914) mvmt=(0.0000,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.600,7.022,93.429) lpos=(-11.100,4.478,-0.591) lprev=(-11.100,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1001,4.4783,-0.5914) mvmt=(0.0000,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2751,0.3302,1.0338) mvmt=(0.0000,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3001,0.0902,0.9288) mvmt=(0.0000,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3001,-2.1210,-0.4212) mvmt=(0.0000,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1001,4.4783,-0.5714) mvmt=(0.0000,0.2040,0.2111) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[input] MovementTurnRight Press +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1555,4.4849,-0.5846) mvmt=(-0.0554,0.2107,0.2179) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1555,4.4849,-0.5846) mvmt=(-0.0554,0.2107,0.2179) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.655,7.015,93.435) lpos=(-11.155,4.485,-0.585) lprev=(-11.100,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1555,4.4849,-0.5846) mvmt=(-0.0554,0.2107,0.2179) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.3305,0.3368,1.0406) mvmt=(-0.0554,0.2107,0.2179) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3555,0.0968,0.9356) mvmt=(-0.0554,0.2107,0.2179) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3555,-2.1144,-0.4144) mvmt=(-0.0554,0.2107,0.2179) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1555,4.4849,-0.5646) mvmt=(-0.0554,0.2107,0.2179) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.655,7.015,93.435) lpos=(-11.155,4.485,-0.585) lprev=(-11.100,4.274,-0.802) r=0.480 result=Slid poly=n/a +[push-back-disp] site=dispatch center=(-11.1001,4.4849,-0.5846) mvmt=(0.0000,0.2107,0.2179) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.600,7.015,93.435) lpos=(-11.100,4.485,-0.585) lprev=(-11.100,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1001,4.4849,-0.5846) mvmt=(0.0000,0.2107,0.2179) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2751,0.3368,1.0406) mvmt=(0.0000,0.2107,0.2179) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3001,0.0968,0.9356) mvmt=(0.0000,0.2107,0.2179) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3001,-2.1144,-0.4144) mvmt=(0.0000,0.2107,0.2179) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1001,4.4849,-0.5646) mvmt=(0.0000,0.2107,0.2179) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1001,4.4849,-0.5846) mvmt=(0.0000,0.2107,0.2179) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.600,7.015,93.435) lpos=(-11.100,4.485,-0.585) lprev=(-11.100,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1001,4.4849,-0.5846) mvmt=(0.0000,0.2107,0.2179) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2751,0.3368,1.0406) mvmt=(0.0000,0.2107,0.2179) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3001,0.0968,0.9356) mvmt=(0.0000,0.2107,0.2179) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3001,-2.1144,-0.4144) mvmt=(0.0000,0.2107,0.2179) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1001,4.4849,-0.5646) mvmt=(0.0000,0.2107,0.2179) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=Transition.ValidateTransition:2826 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1190,4.4649,-0.6053) mvmt=(-0.0189,0.1906,0.1972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.619,7.035,93.415) lpos=(-11.119,4.465,-0.605) lprev=(-11.100,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1190,4.4649,-0.6053) mvmt=(-0.0189,0.1906,0.1972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2940,0.3168,1.0199) mvmt=(-0.0189,0.1906,0.1972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3190,0.0768,0.9149) mvmt=(-0.0189,0.1906,0.1972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3190,-2.1344,-0.4351) mvmt=(-0.0189,0.1906,0.1972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1190,4.4649,-0.5853) mvmt=(-0.0189,0.1906,0.1972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1190,4.4649,-0.6053) mvmt=(-0.0189,0.1906,0.1972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.619,7.035,93.415) lpos=(-11.119,4.465,-0.605) lprev=(-11.100,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1190,4.4649,-0.6053) mvmt=(-0.0189,0.1906,0.1972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2940,0.3168,1.0199) mvmt=(-0.0189,0.1906,0.1972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3190,0.0768,0.9149) mvmt=(-0.0189,0.1906,0.1972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3190,-2.1344,-0.4351) mvmt=(-0.0189,0.1906,0.1972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1190,4.4649,-0.5853) mvmt=(-0.0189,0.1906,0.1972) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1190,4.2742,-0.8025) mvmt=(-0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.619,7.226,93.218) lpos=(-11.119,4.274,-0.802) lprev=(-11.100,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2940,0.1262,0.8227) mvmt=(-0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3190,-0.1138,0.7177) mvmt=(-0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3190,-2.3251,-0.6323) mvmt=(-0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1190,4.2742,-0.7825) mvmt=(-0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1190,4.2742,-1.5525) mvmt=(-0.0189,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.619,7.226,92.468) lpos=(-11.119,4.274,-1.552) lprev=(-11.100,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2940,0.1262,0.0727) mvmt=(-0.0189,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3190,-0.1138,-0.0323) mvmt=(-0.0189,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3190,-0.1138,-0.0323) out=(-0.3190,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.1190,4.2742,-0.8025) mvmt=(-0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.619,7.226,93.218) lpos=(-11.119,4.274,-0.802) lprev=(-11.100,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2940,0.1262,0.8227) mvmt=(-0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3190,-0.1138,0.7177) mvmt=(-0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3190,-2.3251,-0.6323) mvmt=(-0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1190,4.2742,-0.7825) mvmt=(-0.0189,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.1015,4.4864,-0.5830) mvmt=(0.0174,0.2121,0.2195) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.602,7.014,93.437) lpos=(-11.102,4.486,-0.583) lprev=(-11.119,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1015,4.4864,-0.5830) mvmt=(0.0174,0.2121,0.2195) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2765,0.3383,1.0422) mvmt=(0.0174,0.2121,0.2195) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3015,0.0983,0.9372) mvmt=(0.0174,0.2121,0.2195) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3015,-2.1129,-0.4128) mvmt=(0.0174,0.2121,0.2195) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1015,4.4864,-0.5630) mvmt=(0.0174,0.2121,0.2195) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1015,4.4864,-0.5830) mvmt=(0.0174,0.2121,0.2195) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.602,7.014,93.437) lpos=(-11.102,4.486,-0.583) lprev=(-11.119,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.1015,4.4864,-0.5830) mvmt=(0.0174,0.2121,0.2195) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2765,0.3383,1.0422) mvmt=(0.0174,0.2121,0.2195) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3015,0.0983,0.9372) mvmt=(0.0174,0.2121,0.2195) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3015,-2.1129,-0.4128) mvmt=(0.0174,0.2121,0.2195) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1015,4.4864,-0.5630) mvmt=(0.0174,0.2121,0.2195) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1015,4.2742,-0.8025) mvmt=(0.0174,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.602,7.226,93.218) lpos=(-11.102,4.274,-0.802) lprev=(-11.119,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2765,0.1262,0.8227) mvmt=(0.0174,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3015,-0.1138,0.7177) mvmt=(0.0174,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3015,-2.3251,-0.6323) mvmt=(0.0174,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1015,4.2742,-0.7825) mvmt=(0.0174,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1015,4.2742,-1.5525) mvmt=(0.0174,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.602,7.226,92.468) lpos=(-11.102,4.274,-1.552) lprev=(-11.119,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2765,0.1262,0.0727) mvmt=(0.0174,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3015,-0.1138,-0.0323) mvmt=(0.0174,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.3015,-0.1138,-0.0323) out=(-0.3015,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.1015,4.2742,-0.8025) mvmt=(0.0174,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.602,7.226,93.218) lpos=(-11.102,4.274,-0.802) lprev=(-11.119,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2765,0.1262,0.8227) mvmt=(0.0174,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3015,-0.1138,0.7177) mvmt=(0.0174,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.3015,-2.3251,-0.6323) mvmt=(0.0174,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.1015,4.2742,-0.7825) mvmt=(0.0174,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-11.0494,4.4767,-0.5930) mvmt=(0.0521,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.549,7.023,93.427) lpos=(-11.049,4.477,-0.593) lprev=(-11.102,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0494,4.4767,-0.5930) mvmt=(0.0521,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2244,0.3287,1.0322) mvmt=(0.0521,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2494,0.0887,0.9272) mvmt=(0.0521,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2494,-2.1226,-0.4228) mvmt=(0.0521,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0494,4.4767,-0.5730) mvmt=(0.0521,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0494,4.4767,-0.5930) mvmt=(0.0521,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.549,7.023,93.427) lpos=(-11.049,4.477,-0.593) lprev=(-11.102,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-11.0494,4.4767,-0.5930) mvmt=(0.0521,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.2244,0.3287,1.0322) mvmt=(0.0521,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2494,0.0887,0.9272) mvmt=(0.0521,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2494,-2.1226,-0.4228) mvmt=(0.0521,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0494,4.4767,-0.5730) mvmt=(0.0521,0.2025,0.2095) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0494,4.2742,-0.8025) mvmt=(0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.549,7.226,93.218) lpos=(-11.049,4.274,-0.802) lprev=(-11.102,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2244,0.1262,0.8227) mvmt=(0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2494,-0.1138,0.7177) mvmt=(0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2494,-2.3251,-0.6323) mvmt=(0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0494,4.2742,-0.7825) mvmt=(0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0494,4.2742,-1.5525) mvmt=(0.0521,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.549,7.226,92.468) lpos=(-11.049,4.274,-1.552) lprev=(-11.102,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2244,0.1262,0.0727) mvmt=(0.0521,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2494,-0.1138,-0.0323) mvmt=(0.0521,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.2494,-0.1138,-0.0323) out=(-0.2494,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-11.0494,4.2742,-0.8025) mvmt=(0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.549,7.226,93.218) lpos=(-11.049,4.274,-0.802) lprev=(-11.102,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.2244,0.1262,0.8227) mvmt=(0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2494,-0.1138,0.7177) mvmt=(0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.2494,-2.3251,-0.6323) mvmt=(0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-11.0494,4.2742,-0.7825) mvmt=(0.0521,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9940,4.4737,-0.5961) mvmt=(0.0554,0.1995,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.494,7.026,93.424) lpos=(-10.994,4.474,-0.596) lprev=(-11.049,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9940,4.4737,-0.5961) mvmt=(0.0554,0.1995,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1690,0.3257,1.0291) mvmt=(0.0554,0.1995,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1940,0.0857,0.9241) mvmt=(0.0554,0.1995,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1940,-2.1256,-0.4259) mvmt=(0.0554,0.1995,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9940,4.4737,-0.5761) mvmt=(0.0554,0.1995,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9940,4.4737,-0.5961) mvmt=(0.0554,0.1995,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.494,7.026,93.424) lpos=(-10.994,4.474,-0.596) lprev=(-11.049,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9940,4.4737,-0.5961) mvmt=(0.0554,0.1995,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1690,0.3257,1.0291) mvmt=(0.0554,0.1995,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1940,0.0857,0.9241) mvmt=(0.0554,0.1995,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1940,-2.1256,-0.4259) mvmt=(0.0554,0.1995,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9940,4.4737,-0.5761) mvmt=(0.0554,0.1995,0.2064) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9940,4.2742,-0.8025) mvmt=(0.0554,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.494,7.226,93.218) lpos=(-10.994,4.274,-0.802) lprev=(-11.049,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1690,0.1262,0.8227) mvmt=(0.0554,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1940,-0.1138,0.7177) mvmt=(0.0554,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1940,-2.3251,-0.6323) mvmt=(0.0554,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9940,4.2742,-0.7825) mvmt=(0.0554,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9940,4.2742,-1.5525) mvmt=(0.0554,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.494,7.226,92.468) lpos=(-10.994,4.274,-1.552) lprev=(-11.049,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1690,0.1262,0.0727) mvmt=(0.0554,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1940,-0.1138,-0.0323) mvmt=(0.0554,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1940,-0.1138,-0.0323) out=(-0.1940,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.9940,4.2742,-0.8025) mvmt=(0.0554,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.494,7.226,93.218) lpos=(-10.994,4.274,-0.802) lprev=(-11.049,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1690,0.1262,0.8227) mvmt=(0.0554,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1940,-0.1138,0.7177) mvmt=(0.0554,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1940,-2.3251,-0.6323) mvmt=(0.0554,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9940,4.2742,-0.7825) mvmt=(0.0554,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.9386,4.4740,-0.5958) mvmt=(0.0555,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.439,7.026,93.424) lpos=(-10.939,4.474,-0.596) lprev=(-10.994,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9386,4.4740,-0.5958) mvmt=(0.0555,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1136,0.3260,1.0294) mvmt=(0.0555,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1385,0.0860,0.9244) mvmt=(0.0555,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1385,-2.1253,-0.4256) mvmt=(0.0555,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9386,4.4740,-0.5758) mvmt=(0.0555,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9386,4.4740,-0.5958) mvmt=(0.0555,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.439,7.026,93.424) lpos=(-10.939,4.474,-0.596) lprev=(-10.994,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.9386,4.4740,-0.5958) mvmt=(0.0555,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.1136,0.3260,1.0294) mvmt=(0.0555,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1385,0.0860,0.9244) mvmt=(0.0555,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1385,-2.1253,-0.4256) mvmt=(0.0555,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9386,4.4740,-0.5758) mvmt=(0.0555,0.1998,0.2067) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9386,4.2742,-0.8025) mvmt=(0.0555,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.439,7.226,93.218) lpos=(-10.939,4.274,-0.802) lprev=(-10.994,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1136,0.1262,0.8227) mvmt=(0.0555,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1385,-0.1138,0.7177) mvmt=(0.0555,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1385,-2.3251,-0.6323) mvmt=(0.0555,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9386,4.2742,-0.7825) mvmt=(0.0555,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9386,4.2742,-1.5525) mvmt=(0.0555,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.439,7.226,92.468) lpos=(-10.939,4.274,-1.552) lprev=(-10.994,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1136,0.1262,0.0727) mvmt=(0.0555,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1385,-0.1138,-0.0323) mvmt=(0.0555,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.1385,-0.1138,-0.0323) out=(-0.1385,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.9386,4.2742,-0.8025) mvmt=(0.0555,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.439,7.226,93.218) lpos=(-10.939,4.274,-0.802) lprev=(-10.994,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.1136,0.1262,0.8227) mvmt=(0.0555,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1385,-0.1138,0.7177) mvmt=(0.0555,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.1385,-2.3251,-0.6323) mvmt=(0.0555,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.9386,4.2742,-0.7825) mvmt=(0.0555,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8854,4.4655,-0.6046) mvmt=(0.0531,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.385,7.034,93.415) lpos=(-10.885,4.466,-0.605) lprev=(-10.939,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8854,4.4655,-0.6046) mvmt=(0.0531,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0604,0.3175,1.0206) mvmt=(0.0531,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0854,0.0775,0.9156) mvmt=(0.0531,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0854,-2.1338,-0.4344) mvmt=(0.0531,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8854,4.4655,-0.5846) mvmt=(0.0531,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8854,4.4655,-0.6046) mvmt=(0.0531,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.385,7.034,93.415) lpos=(-10.885,4.466,-0.605) lprev=(-10.939,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8854,4.4655,-0.6046) mvmt=(0.0531,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0604,0.3175,1.0206) mvmt=(0.0531,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0854,0.0775,0.9156) mvmt=(0.0531,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0854,-2.1338,-0.4344) mvmt=(0.0531,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8854,4.4655,-0.5846) mvmt=(0.0531,0.1913,0.1979) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8854,4.2742,-0.8025) mvmt=(0.0531,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.385,7.226,93.218) lpos=(-10.885,4.274,-0.802) lprev=(-10.939,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0604,0.1262,0.8227) mvmt=(0.0531,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0854,-0.1138,0.7177) mvmt=(0.0531,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0854,-2.3251,-0.6323) mvmt=(0.0531,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8854,4.2742,-0.7825) mvmt=(0.0531,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8854,4.2742,-1.5525) mvmt=(0.0531,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.385,7.226,92.468) lpos=(-10.885,4.274,-1.552) lprev=(-10.939,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0604,0.1262,0.0727) mvmt=(0.0531,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0854,-0.1138,-0.0323) mvmt=(0.0531,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0854,-0.1138,-0.0323) out=(-0.0854,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.8854,4.2742,-0.8025) mvmt=(0.0531,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.385,7.226,93.218) lpos=(-10.885,4.274,-0.802) lprev=(-10.939,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0604,0.1262,0.8227) mvmt=(0.0531,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0854,-0.1138,0.7177) mvmt=(0.0531,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0854,-2.3251,-0.6323) mvmt=(0.0531,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8854,4.2742,-0.7825) mvmt=(0.0531,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.8327,4.4643,-0.6059) mvmt=(0.0528,0.1900,0.1966) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.333,7.036,93.414) lpos=(-10.833,4.464,-0.606) lprev=(-10.885,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8327,4.4643,-0.6059) mvmt=(0.0528,0.1900,0.1966) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0077,0.3162,1.0193) mvmt=(0.0528,0.1900,0.1966) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0327,0.0762,0.9143) mvmt=(0.0528,0.1900,0.1966) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0327,-2.1351,-0.4357) mvmt=(0.0528,0.1900,0.1966) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8327,4.4643,-0.5859) mvmt=(0.0528,0.1900,0.1966) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8327,4.4643,-0.6059) mvmt=(0.0528,0.1900,0.1966) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.333,7.036,93.414) lpos=(-10.833,4.464,-0.606) lprev=(-10.885,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.8327,4.4643,-0.6059) mvmt=(0.0528,0.1900,0.1966) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-1.0077,0.3162,1.0193) mvmt=(0.0528,0.1900,0.1966) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0327,0.0762,0.9143) mvmt=(0.0528,0.1900,0.1966) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0327,-2.1351,-0.4357) mvmt=(0.0528,0.1900,0.1966) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8327,4.4643,-0.5859) mvmt=(0.0528,0.1900,0.1966) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8327,4.2742,-0.8025) mvmt=(0.0528,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.333,7.226,93.218) lpos=(-10.833,4.274,-0.802) lprev=(-10.885,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0077,0.1262,0.8227) mvmt=(0.0528,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0327,-0.1138,0.7177) mvmt=(0.0528,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0327,-2.3251,-0.6323) mvmt=(0.0528,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8327,4.2742,-0.7825) mvmt=(0.0528,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8327,4.2742,-1.5525) mvmt=(0.0528,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.333,7.226,92.468) lpos=(-10.833,4.274,-1.552) lprev=(-10.885,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0077,0.1262,0.0727) mvmt=(0.0528,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0327,-0.1138,-0.0323) mvmt=(0.0528,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(-0.0327,-0.1138,-0.0323) out=(-0.0327,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.8327,4.2742,-0.8025) mvmt=(0.0528,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.333,7.226,93.218) lpos=(-10.833,4.274,-0.802) lprev=(-10.885,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-1.0077,0.1262,0.8227) mvmt=(0.0528,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0327,-0.1138,0.7177) mvmt=(0.0528,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-0.0327,-2.3251,-0.6323) mvmt=(0.0528,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.8327,4.2742,-0.7825) mvmt=(0.0528,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7743,4.4846,-0.5849) mvmt=(0.0584,0.2104,0.2176) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.274,7.015,93.435) lpos=(-10.774,4.485,-0.585) lprev=(-10.833,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7743,4.4846,-0.5849) mvmt=(0.0584,0.2104,0.2176) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9493,0.3366,1.0403) mvmt=(0.0584,0.2104,0.2176) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0257,0.0966,0.9353) mvmt=(0.0584,0.2104,0.2176) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0257,-2.1147,-0.4147) mvmt=(0.0584,0.2104,0.2176) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7743,4.4846,-0.5649) mvmt=(0.0584,0.2104,0.2176) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7743,4.4846,-0.5849) mvmt=(0.0584,0.2104,0.2176) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.274,7.015,93.435) lpos=(-10.774,4.485,-0.585) lprev=(-10.833,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7743,4.4846,-0.5849) mvmt=(0.0584,0.2104,0.2176) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.9493,0.3366,1.0403) mvmt=(0.0584,0.2104,0.2176) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0257,0.0966,0.9353) mvmt=(0.0584,0.2104,0.2176) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0257,-2.1147,-0.4147) mvmt=(0.0584,0.2104,0.2176) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7743,4.4846,-0.5649) mvmt=(0.0584,0.2104,0.2176) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7743,4.2742,-0.8025) mvmt=(0.0584,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.274,7.226,93.218) lpos=(-10.774,4.274,-0.802) lprev=(-10.833,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9493,0.1262,0.8227) mvmt=(0.0584,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0257,-0.1138,0.7177) mvmt=(0.0584,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0257,-2.3251,-0.6323) mvmt=(0.0584,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7743,4.2742,-0.7825) mvmt=(0.0584,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7743,4.2742,-1.5525) mvmt=(0.0584,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.274,7.226,92.468) lpos=(-10.774,4.274,-1.552) lprev=(-10.833,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9493,0.1262,0.0727) mvmt=(0.0584,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0257,-0.1138,-0.0323) mvmt=(0.0584,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0257,-0.1138,-0.0323) out=(0.0257,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.7743,4.2742,-0.8025) mvmt=(0.0584,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.274,7.226,93.218) lpos=(-10.774,4.274,-0.802) lprev=(-10.833,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.9493,0.1262,0.8227) mvmt=(0.0584,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0257,-0.1138,0.7177) mvmt=(0.0584,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0257,-2.3251,-0.6323) mvmt=(0.0584,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7743,4.2742,-0.7825) mvmt=(0.0584,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.7199,4.4700,-0.5999) mvmt=(0.0544,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.220,7.030,93.420) lpos=(-10.720,4.470,-0.600) lprev=(-10.774,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7199,4.4700,-0.5999) mvmt=(0.0544,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8949,0.3220,1.0253) mvmt=(0.0544,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0801,0.0820,0.9203) mvmt=(0.0544,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0801,-2.1293,-0.4297) mvmt=(0.0544,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7199,4.4700,-0.5799) mvmt=(0.0544,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7199,4.4700,-0.5999) mvmt=(0.0544,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.220,7.030,93.420) lpos=(-10.720,4.470,-0.600) lprev=(-10.774,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.7199,4.4700,-0.5999) mvmt=(0.0544,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8949,0.3220,1.0253) mvmt=(0.0544,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0801,0.0820,0.9203) mvmt=(0.0544,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0801,-2.1293,-0.4297) mvmt=(0.0544,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7199,4.4700,-0.5799) mvmt=(0.0544,0.1958,0.2025) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7199,4.2742,-0.8025) mvmt=(0.0544,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.220,7.226,93.218) lpos=(-10.720,4.274,-0.802) lprev=(-10.774,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8949,0.1262,0.8227) mvmt=(0.0544,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0801,-0.1138,0.7177) mvmt=(0.0544,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0801,-2.3251,-0.6323) mvmt=(0.0544,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7199,4.2742,-0.7825) mvmt=(0.0544,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7199,4.2742,-1.5525) mvmt=(0.0544,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.220,7.226,92.468) lpos=(-10.720,4.274,-1.552) lprev=(-10.774,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8949,0.1262,0.0727) mvmt=(0.0544,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0801,-0.1138,-0.0323) mvmt=(0.0544,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.0801,-0.1138,-0.0323) out=(0.0801,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.7199,4.2742,-0.8025) mvmt=(0.0544,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.220,7.226,93.218) lpos=(-10.720,4.274,-0.802) lprev=(-10.774,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8949,0.1262,0.8227) mvmt=(0.0544,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0801,-0.1138,0.7177) mvmt=(0.0544,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.0801,-2.3251,-0.6323) mvmt=(0.0544,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.7199,4.2742,-0.7825) mvmt=(0.0544,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6662,4.4677,-0.6024) mvmt=(0.0537,0.1934,0.2001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.166,7.032,93.418) lpos=(-10.666,4.468,-0.602) lprev=(-10.720,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6662,4.4677,-0.6024) mvmt=(0.0537,0.1934,0.2001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8412,0.3196,1.0228) mvmt=(0.0537,0.1934,0.2001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1338,0.0796,0.9178) mvmt=(0.0537,0.1934,0.2001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1338,-2.1316,-0.4322) mvmt=(0.0537,0.1934,0.2001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6662,4.4677,-0.5824) mvmt=(0.0537,0.1934,0.2001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6662,4.4677,-0.6024) mvmt=(0.0537,0.1934,0.2001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.166,7.032,93.418) lpos=(-10.666,4.468,-0.602) lprev=(-10.720,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6662,4.4677,-0.6024) mvmt=(0.0537,0.1934,0.2001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.8412,0.3196,1.0228) mvmt=(0.0537,0.1934,0.2001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1338,0.0796,0.9178) mvmt=(0.0537,0.1934,0.2001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1338,-2.1316,-0.4322) mvmt=(0.0537,0.1934,0.2001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6662,4.4677,-0.5824) mvmt=(0.0537,0.1934,0.2001) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6662,4.2742,-0.8025) mvmt=(0.0537,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.166,7.226,93.218) lpos=(-10.666,4.274,-0.802) lprev=(-10.720,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8412,0.1262,0.8227) mvmt=(0.0537,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1338,-0.1138,0.7177) mvmt=(0.0537,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1338,-2.3251,-0.6323) mvmt=(0.0537,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6662,4.2742,-0.7825) mvmt=(0.0537,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6662,4.2742,-1.5525) mvmt=(0.0537,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.166,7.226,92.468) lpos=(-10.666,4.274,-1.552) lprev=(-10.720,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8412,0.1262,0.0727) mvmt=(0.0537,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1338,-0.1138,-0.0323) mvmt=(0.0537,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1338,-0.1138,-0.0323) out=(0.1338,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6662,4.2742,-0.8025) mvmt=(0.0537,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.166,7.226,93.218) lpos=(-10.666,4.274,-0.802) lprev=(-10.720,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.8412,0.1262,0.8227) mvmt=(0.0537,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1338,-0.1138,0.7177) mvmt=(0.0537,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1338,-2.3251,-0.6323) mvmt=(0.0537,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6662,4.2742,-0.7825) mvmt=(0.0537,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: True -> False caller=Transition.FindTransitionalPosition:694 +[push-back-disp] site=dispatch center=(-10.6079,4.4843,-0.5852) mvmt=(0.0583,0.2101,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.108,7.016,93.435) lpos=(-10.608,4.484,-0.585) lprev=(-10.666,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6079,4.4843,-0.5852) mvmt=(0.0583,0.2101,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7829,0.3363,1.0400) mvmt=(0.0583,0.2101,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1921,0.0963,0.9350) mvmt=(0.0583,0.2101,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1921,-2.1150,-0.4150) mvmt=(0.0583,0.2101,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2567,-2.9555,2.4393) mvmt=(-0.1704,0.1361,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6079,4.4843,-0.5652) mvmt=(0.0583,0.2101,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6079,4.4843,-0.5852) mvmt=(0.0583,0.2101,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.108,7.016,93.435) lpos=(-10.608,4.484,-0.585) lprev=(-10.666,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-10.6079,4.4843,-0.5852) mvmt=(0.0583,0.2101,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[other-cells] primary=0xA9B40147 iter=0xA9B40146 result=OK +[push-back-cell] site=other_cell primary=0xA9B40147 other=0xA9B40146 bspResult=1 halted=False +[push-back-disp] site=dispatch center=(-0.7829,0.3363,1.0400) mvmt=(0.0583,0.2101,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1921,0.0963,0.9350) mvmt=(0.0583,0.2101,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1921,-2.1150,-0.4150) mvmt=(0.0583,0.2101,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.2567,-2.9555,2.4393) mvmt=(-0.1704,0.1361,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6079,4.4843,-0.5652) mvmt=(0.0583,0.2101,0.2173) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6079,4.2742,-0.8025) mvmt=(0.0583,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.108,7.226,93.218) lpos=(-10.608,4.274,-0.802) lprev=(-10.666,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7829,0.1262,0.8227) mvmt=(0.0583,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1921,-0.1138,0.7177) mvmt=(0.0583,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1921,-2.3251,-0.6323) mvmt=(0.0583,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6079,4.2742,-0.7825) mvmt=(0.0583,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6079,4.2742,-1.5525) mvmt=(0.0583,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.108,7.226,92.468) lpos=(-10.608,4.274,-1.552) lprev=(-10.666,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7829,0.1262,0.0727) mvmt=(0.0583,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1921,-0.1138,-0.0323) mvmt=(0.0583,0.0000,-0.7500) collide=False insertType=0 objState=0x303 winterp=1.0000 return=-1 +[push-back] site=adjust_sphere in=(0.1921,-0.1138,-0.0323) out=(0.1921,-0.1138,0.7177) delta=(0.0000,0.0000,0.7500) deltaMag=0.7500 n=(0.0000,-0.7190,0.6950) d=-0.1007 r=0.4800 winterp=1.0000->0.0000 dpPos=-0.0413 dpMove=-0.5213 iDist=1.0000 applied=True +[cp-write] ContactPlaneValid: False -> True caller=BSPQuery.StepSphereDown:1204 +[push-back-disp] site=dispatch center=(-10.6079,4.2742,-0.8025) mvmt=(0.0583,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[indoor-bsp] cell=0xA9B40147 wpos=(141.108,7.226,93.218) lpos=(-10.608,4.274,-0.802) lprev=(-10.666,4.274,-0.802) r=0.480 result=OK poly=n/a +[push-back-disp] site=dispatch center=(-0.7829,0.1262,0.8227) mvmt=(0.0583,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1921,-0.1138,0.7177) mvmt=(0.0583,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(0.1921,-2.3251,-0.6323) mvmt=(0.0583,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[push-back-disp] site=dispatch center=(-10.6079,4.2742,-0.7825) mvmt=(0.0583,0.0000,0.0000) collide=False insertType=0 objState=0x303 winterp=0.0000 return=-1 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +sky: PY117 day5 ? DayGroup[19] "Rainy" (Chance=5.00, 17 objects, 11 keyframes, weather=Overcast) +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] ContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneValid: False -> True caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlane: n=(0.000,0.000,0.000) D=0.000 -> n=(0.000,0.719,0.695) D=-69.503 caller=PhysicsEngine.ResolveWithTransition:624 +[cp-write] LastKnownContactPlaneCellId: 0x00000000 -> 0xA9B40147 caller=PhysicsEngine.ResolveWithTransition:624 +[10:35:42 INF] smoke plugin disabled (saw 10947 entities total)